Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for varintAt (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    // TODO: Rename to Int32OrString
    //
    // +protobuf=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:openapi-gen=true
    type IntOrString struct {
    	Type   Type   `protobuf:"varint,1,opt,name=type,casttype=Type"`
    	IntVal int32  `protobuf:"varint,2,opt,name=intVal"`
    	StrVal string `protobuf:"bytes,3,opt,name=strVal"`
    }
    
    // Type represents the stored type of IntOrString.
    type Type int64
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/internal/abi/type.go

    //	1<<2 pkgPath nameOff follows the name and tag
    //	1<<3 the name is of an embedded (a.k.a. anonymous) field
    //
    // Following that, there is a varint-encoded length of the name,
    // followed by the name itself.
    //
    // If tag data is present, it also has a varint-encoded length
    // followed by the tag itself.
    //
    // If the import path follows, then 4 bytes at the end of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/imagepolicy/v1alpha1/types.go

    }
    
    // ImageReviewStatus is the result of the review for the pod creation request.
    type ImageReviewStatus struct {
    	// Allowed indicates that all images were allowed to be run.
    	Allowed bool `json:"allowed" protobuf:"varint,1,opt,name=allowed"`
    	// Reason should be empty unless Allowed is false in which case it
    	// may contain a short description of what is wrong.  Kubernetes
    	// may truncate excessively long errors when displaying to the user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admission/v1/types.go

    	// DryRun indicates that modifications will definitely not be persisted for this request.
    	// Defaults to false.
    	// +optional
    	DryRun *bool `json:"dryRun,omitempty" protobuf:"varint,11,opt,name=dryRun"`
    	// Options is the operation option structure of the operation being performed.
    	// e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/runtime/traceevent.go

    		ts = w.traceBuf.lastTime + 1
    	}
    	tsDiff := uint64(ts - w.traceBuf.lastTime)
    	w.traceBuf.lastTime = ts
    
    	// Write out event.
    	w.byte(byte(ev))
    	w.varint(tsDiff)
    	for _, arg := range args {
    		w.varint(uint64(arg))
    	}
    	return w
    }
    
    // stack takes a stack trace skipping the provided number of frames.
    // It then returns a traceArg representing that stack which may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/runtime/tracetime.go

    	w := unsafeTraceWriter(gen, nil)
    
    	// Ensure we have a place to write to.
    	w, _ = w.ensure(1 + traceBytesPerNumber /* traceEvFrequency + frequency */)
    
    	// Write out the string.
    	w.byte(byte(traceEvFrequency))
    	w.varint(traceClockUnitsPerSecond())
    
    	// Immediately flush the buffer.
    	systemstack(func() {
    		lock(&trace.lock)
    		traceBufFlush(w.traceBuf, gen)
    		unlock(&trace.lock)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. pkg/workloadapi/security/authorization.pb.go

    	// If set to NAMESPACE, the 'namespace' field value will be used.
    	Scope Scope `protobuf:"varint,3,opt,name=scope,proto3,enum=istio.security.Scope" json:"scope,omitempty"`
    	// The action to take if the request is matched with the rules.
    	// Default is ALLOW if not specified.
    	Action Action `protobuf:"varint,4,opt,name=action,proto3,enum=istio.security.Action" json:"action,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1/types.go

    type TokenReviewStatus struct {
    	// Authenticated indicates that the token was associated with a known user.
    	// +optional
    	Authenticated bool `json:"authenticated,omitempty" protobuf:"varint,1,opt,name=authenticated"`
    	// User is the UserInfo associated with the provided token.
    	// +optional
    	User UserInfo `json:"user,omitempty" protobuf:"bytes,2,opt,name=user"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admission/v1beta1/types.go

    	// DryRun indicates that modifications will definitely not be persisted for this request.
    	// Defaults to false.
    	// +optional
    	DryRun *bool `json:"dryRun,omitempty" protobuf:"varint,11,opt,name=dryRun"`
    	// Options is the operation option structure of the operation being performed.
    	// e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.pb.go

    	RoutingPreference []LoadBalancing_Scope `protobuf:"varint,1,rep,packed,name=routing_preference,json=routingPreference,proto3,enum=istio.workload.LoadBalancing_Scope" json:"routing_preference,omitempty"`
    	// mode defines how we should handle the routing preferences.
    	Mode LoadBalancing_Mode `protobuf:"varint,2,opt,name=mode,proto3,enum=istio.workload.LoadBalancing_Mode" json:"mode,omitempty"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top