Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,304 for _objects (0.19 sec)

  1. src/cmd/compile/internal/types2/decl.go

    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. pkg/registry/rbac/validation/rule.go

    			if !applies {
    				continue
    			}
    			rules, err := r.GetRoleReferenceRules(clusterRoleBinding.RoleRef, "")
    			if err != nil {
    				if !visitor(nil, nil, err) {
    					return
    				}
    				continue
    			}
    			sourceDescriber.binding = clusterRoleBinding
    			sourceDescriber.subject = &clusterRoleBinding.Subjects[subjectIndex]
    			for i := range rules {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 11.6K bytes
    - Viewed (0)
  3. src/go/types/decl.go

    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/generated.proto

    // Kubernetes attach detach controller uses this object to determine whether attach is required.
    // Kubelet uses this object to determine whether pod information needs to be passed on mount.
    // CSIDriver objects are non-namespaced.
    message CSIDriver {
      // Standard object metadata.
      // metadata.Name indicates the name of the CSI driver that this object
      // refers to; it MUST be the same name returned by the CSI GetPluginName()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    }
    
    // Object interface must be supported by all API types registered with Scheme. Since objects in a scheme are
    // expected to be serialized to the wire, the interface an Object must provide to the Scheme allows
    // serializers to set the kind, version, and group the object is represented as. An Object may choose
    // to return a no-op ObjectKindAccessor in cases where it is not expected to be serialized.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    // runtime.Object. It does not perform conversion. It does not perform defaulting.
    func (f CodecFactory) UniversalDeserializer() runtime.Decoder {
    	return f.universal
    }
    
    // UniversalDecoder returns a runtime.Decoder capable of decoding all known API objects in all known formats. Used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"metadata":   "Standard object metadata",
    	"nodeName":   "NodeName identifies the node which provides the resources if they are local to a node.\n\nA field selector can be used to list only ResourceSlice objects with a certain node name.",
    	"driverName": "DriverName identifies the DRA driver providing the capacity information. A field selector can be used to list only ResourceSlice objects with a certain driver name.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1/generated.proto

    // Kubernetes attach detach controller uses this object to determine whether attach is required.
    // Kubelet uses this object to determine whether pod information needs to be passed on mount.
    // CSIDriver objects are non-namespaced.
    message CSIDriver {
      // Standard object metadata.
      // metadata.Name indicates the name of the CSI driver that this object
      // refers to; it MUST be the same name returned by the CSI GetPluginName()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. cmd/erasure-sets.go

    	delErrs := make([]error, len(objects))
    
    	// The result of delete objects
    	delObjects := make([]DeletedObject, len(objects))
    
    	// A map between a set and its associated objects
    	objSetMap := make(map[int][]delObj)
    
    	// Group objects by set index
    	for i, object := range objects {
    		index := s.getHashedSetIndex(object.ObjectName)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. pkg/apis/resource/types.go

    // node lists that are stored in PodSchedulingContext objects. This limit is part
    // of the API.
    const PodSchedulingNodeListMaxSize = 128
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PodSchedulingContextList is a collection of Pod scheduling objects.
    type PodSchedulingContextList struct {
    	metav1.TypeMeta
    	// Standard list metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top