This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter_riverpod/flutter_riverpod.dart'; | |
| class MutationProvider { | |
| static AutoDisposeNotifierProvider<MutationNotifier<Arg, ReturnType>, | |
| AsyncValue<ReturnType?>> autoDispose<Arg, ReturnType>({ | |
| required Future<ReturnType> Function(Ref, Arg) mutationFn, | |
| }) { | |
| return NotifierProvider.autoDispose( | |
| () => MutationNotifier( | |
| mutationFn: mutationFn, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Nfs_core_param { | |
| Enable_NFS_Stats = false; | |
| Enable_NLM = false; | |
| Protocols = "4"; | |
| } | |
| Nfs_krb5 { | |
| Active_krb5 = false; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Int64 } from './compat/long'; | |
| export type Double = number; | |
| export type Float = number; | |
| export type Int32 = number; | |
| export type Int64 = Long; | |
| export type Uint32 = number; | |
| export type Uint64 = Long; | |
| export type Sint32 = number; | |
| export type Sint64 = Long; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as Benchmark from 'benchmark'; | |
| import { protobufSchema, int32Field, booleanField, stringField, repeated, uint32Field } from './protobus'; | |
| const InnerInner = protobufSchema({ | |
| int64: int32Field(1), | |
| enum: uint32Field(2), | |
| sint32: int32Field(3), | |
| }); | |
| const Outer = protobufSchema({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type double = number; | |
| type float = number; | |
| type int32 = number; | |
| type int64 = number; | |
| type uint32 = number; | |
| type uint64 = number; | |
| type sint32 = number; | |
| type sint64 = number; | |
| type fixed32 = number; | |
| type fixed64 = number; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const DIGITS = [ | |
| '0', '1', '2', '3', '4', '5', '6', '7', | |
| '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' | |
| ]; | |
| const TWO_TO_32 = 0x100000000; | |
| const MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; | |
| export class UInt64 { | |
| readonly low: number; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function provideToExport(file, api, options) { | |
| const j = api.jscodeshift; | |
| const root = j(file.source); | |
| return root | |
| .find(j.ExpressionStatement, { | |
| expression: { | |
| type: "CallExpression", | |
| callee: { | |
| object: { | |
| name: "goog" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var l = l || {}, m = this; | |
| function n(a) { | |
| return "string" == typeof a; | |
| } | |
| function p(a, b) { | |
| a = a.split("."); | |
| b = b || m; | |
| for (var c = 0; c < a.length; c++) { | |
| if (b = b[a[c]], null == b) { | |
| return null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public struct Key<T> { | |
| let id: String | |
| private let type: T.Type = T.self | |
| } | |
| extension Key: Hashable { | |
| public var hashValue: Int { | |
| get { | |
| return self.id.hashValue ^ "\(self.type)".hashValue | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #cloud-config | |
| coreos: | |
| etcd2: | |
| discovery: https://discovery.etcd.io/<token> | |
| advertise-client-urls: http://$private_ipv4:2379, http://$private_ipv4:4001 | |
| initial-advertise-peer-urls: http://$private_ipv4:2380 | |
| listen-client-urls: http://0.0.0.0:2379, http://0.0.0.0:4001 | |
| listen-peer-urls: http://$private_ipv4:2380, http://$private_ipv4:7001 | |
| fleet: |
NewerOlder