- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 515 for fuint64 (0.07 sec)
-
cmd/storage-datatypes_gen.go
return } if z.APICalls == nil { z.APICalls = make(map[string]uint64, zb0003) } else if len(z.APICalls) > 0 { for key := range z.APICalls { delete(z.APICalls, key) } } for zb0003 > 0 { zb0003-- var za0003 string var za0004 uint64 za0003, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "APICalls")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 150.2K bytes - Viewed (0) -
common-protos/k8s.io/api/storage/v1beta1/generated.proto
// expirationSeconds is the duration of validity of the token in "TokenRequestSpec". // It has the same default value of "ExpirationSeconds" in "TokenRequestSpec" // // +optional optional int64 expirationSeconds = 2; } // VolumeAttachment captures the intent to attach or detach the specified volume // to/from the specified node. // // VolumeAttachment objects are non-namespaced.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 24.9K bytes - Viewed (0) -
istioctl/pkg/workload/workload.go
netutil "istio.io/istio/pkg/util/net" "istio.io/istio/pkg/util/protomarshal" "istio.io/istio/pkg/util/shellescape" ) var ( // TODO refactor away from package vars and add more UTs tokenDuration int64 name string serviceAccount string filename string outputDir string clusterID string ingressIP string internalIP string externalIP string ingressSvc string
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 25.3K bytes - Viewed (0) -
common-protos/k8s.io/api/autoscaling/v1/generated.proto
} // current status of a horizontal pod autoscaler message HorizontalPodAutoscalerStatus { // observedGeneration is the most recent generation observed by this autoscaler. // +optional optional int64 observedGeneration = 1; // lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods; // used by the autoscaler to control how often the number of pods is changed. // +optional
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 22K bytes - Viewed (0) -
cmd/notification.go
if len(sys.peerClients) == 0 { return nil } peerClients := sys.allPeerClients if len(peerClients) == 0 { return nil } idx := xxhash.Sum64String(s) % uint64(len(peerClients)) return peerClients[idx] } // GetPeerOnlineCount gets the count of online and offline nodes. func (sys *NotificationSys) GetPeerOnlineCount() (nodesOnline, nodesOffline int) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 09 16:58:30 UTC 2024 - 46.2K bytes - Viewed (0) -
cmd/peer-rest-server.go
connectTime := time.Now() ctx := newContext(r, w, "DevNull") for { n, err := io.CopyN(xioutil.Discard, r.Body, 128*humanize.KiByte) atomic.AddUint64(&globalNetPerfRX.RX, uint64(n)) if err != nil && err != io.EOF { // If there is a disconnection before globalNetPerfMinDuration (we give a margin of error of 1 sec)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 53.2K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
} // TODO QueryParams, maybe Gateways return strings.TrimSpace(retval) } func printPod(writer io.Writer, pod *corev1.Pod, revision string) { ports := []string{} UserID := int64(1337) for _, container := range pod.Spec.Containers { for _, port := range container.Ports { var protocol string // Suppress /<protocol> for TCP, print it for everything else if port.Protocol != "TCP" {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto
} // ValidatingAdmissionPolicyStatus represents the status of a ValidatingAdmissionPolicy. message ValidatingAdmissionPolicyStatus { // The generation observed by the controller. // +optional optional int64 observedGeneration = 1; // The results of type checking for each expression. // Presence of this field indicates the completion of the type checking. // +optional optional TypeChecking typeChecking = 2;
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 25.7K bytes - Viewed (0) -
common-protos/k8s.io/api/storage/v1/generated.proto
// expirationSeconds is the duration of validity of the token in "TokenRequestSpec". // It has the same default value of "ExpirationSeconds" in "TokenRequestSpec". // // +optional optional int64 expirationSeconds = 2; } // VolumeAttachment captures the intent to attach or detach the specified volume // to/from the specified node. // // VolumeAttachment objects are non-namespaced.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 24.7K bytes - Viewed (0) -
cmd/iam-store.go
if err2 != nil { // Just return the first error. return err } d.Policy = doc.Policy return nil } *d = doc return nil } // key options type options struct { ttl int64 // expiry in seconds } type iamWatchEvent struct { isCreated bool // !isCreated implies a delete event. keyPath string } // iamCache contains in-memory cache of IAM data. type iamCache struct {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 14 16:35:37 UTC 2024 - 83.2K bytes - Viewed (0)