Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 977 for _objects (0.19 sec)

  1. staging/src/k8s.io/api/storage/v1/types.go

    //
    // 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/api__v1_openapi.json

              }
            },
            "required": [
              "driver"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.FlexVolumeSource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

    }
    
    // PodSchedulingContextList is a collection of Pod scheduling objects.
    message PodSchedulingContextList {
      // Standard list metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is the list of PodSchedulingContext objects.
      repeated PodSchedulingContext items = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// desiredAPIVersion is the version to convert given objects to. e.g. "myapi.example.com/v1"
    	DesiredAPIVersion string `json:"desiredAPIVersion" protobuf:"bytes,2,name=desiredAPIVersion"`
    	// objects is the list of custom resource objects to be converted.
    	// +listType=atomic
    	Objects []runtime.RawExtension `json:"objects" protobuf:"bytes,3,rep,name=objects"`
    }
    
    // ConversionResponse describes a conversion response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/events/v1/types.go

    	Reason string `json:"reason,omitempty" protobuf:"bytes,7,name=reason"`
    
    	// regarding contains the object this Event is about. In most cases it's an Object reporting controller
    	// implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because
    	// it acts on some changes in a ReplicaSet object.
    	// +optional
    	Regarding corev1.ObjectReference `json:"regarding,omitempty" protobuf:"bytes,8,opt,name=regarding"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. 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)
  7. build-logic/jvm/src/main/kotlin/gradlebuild/ConfigurationExtensions.kt

    fun ConsumableConfiguration.configureAsRuntimeElements(objects: ObjectFactory) {
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.JAR))
            attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL))
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. 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)
  9. api/openapi-spec/v3/apis__apps__v1_openapi.json

    dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef\n  allows any non-core object, as well as PersistentVolumeClaim objects.\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\n  preserves all values, and generates an error if a disallowed value is\n  specified.\n* While dataSource only allows local objects, dataSourceRef allows objects\n  in any namespaces.\n(Beta) Using this field requires the AnyVolumeDataSource feature...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    These types are commonly used in Gradle plugins and build scripts to manage collections of objects, such as tasks, configurations, or custom domain objects.
    
    [[domainobjectset]]
    == 1. `DomainObjectSet`
    
    A link:{javadocPath}/org/gradle/api/DomainObjectSet.html[`DomainObjectSet`] simply holds a set of configurable objects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top