Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,304 for _objects (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// This object must be a pointer type for use with Codec.DecodeInto([]byte, runtime.Object)
    	New() runtime.Object
    
    	// Create creates a new version of a resource.
    	Create(ctx context.Context, obj runtime.Object, createValidation ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error)
    }
    
    // NamedCreater is an object that can create an instance of a RESTful object using a name parameter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1beta1/generated.proto

    //
    // The following three cases all imply that no capacity is available for
    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    // They are consumed by the kube-scheduler when a CSI driver opts into
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                    ObjectFactory objects
    
                    @javax.inject.Inject
                    CustomPlugin(ObjectFactory objects) {
                        this.objects = objects
                    }
    
                    void apply(Project project) {
                        project.tasks.create('thing1', CustomTask) {
                            thing = objects.newInstance(Thing, 'thing1')
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "ownerReferences": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  5. pkg/apis/networking/types.go

    	// An IPAddress must reference a parent object.
    	// +required
    	ParentRef *ParentReference
    }
    type ParentReference struct {
    	// Group is the group of the object being referenced.
    	Group string
    	// Resource is the resource of the object being referenced.
    	Resource string
    	// Namespace is the namespace of the object being referenced.
    	Namespace string
    	// Name is the name of the object being referenced.
    	Name string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/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
    // +k8s:prerelease-lifecycle-gen:introduced=1.26
    
    // PodSchedulingContextList is a collection of Pod scheduling objects.
    type PodSchedulingContextList struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "ownerReferences": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ExclusiveVariantsIntegrationTest.groovy

                            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, "custom"))
                        }
                    }
    
                    sample2 {
                        assert canBeResolved
    
                        attributes {
                            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. pkg/apis/storage/types.go

    // Kubelet uses this object to determine whether pod information needs to be passed on mount.
    // CSIDriver objects are non-namespaced.
    type CSIDriver struct {
    	metav1.TypeMeta
    
    	// 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()
    	// call for that driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  10. operator/pkg/compare/compare.go

    	for _, ko := range slrs {
    		yl, err := ko.YAML()
    		if err != nil {
    			return "", err
    		}
    		sb.WriteString(string(yl) + object.YAMLSeparator)
    	}
    	k8sObjects, err := object.ParseK8sObjectsFromYAMLManifest(sb.String())
    	if err != nil {
    		return "", err
    	}
    	k8sObjects.Sort(object.DefaultObjectOrder())
    	sortdManifests, err := k8sObjects.YAMLManifest()
    	if err != nil {
    		return "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top