Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 596 for describes (0.2 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"":                 "DriverRequests describes all resources that are needed from one particular driver.",
    	"driverName":       "DriverName is the name used by the DRA driver kubelet plugin.",
    	"vendorParameters": "VendorParameters are arbitrary setup parameters for all requests of the claim. They are ignored while allocating the claim.",
    	"requests":         "Requests describes all resources that are needed from the driver.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. pkg/apis/resource/types.go

    	metav1.TypeMeta
    	// Standard object metadata
    	// +optional
    	metav1.ObjectMeta
    
    	// Spec describes where resources for the Pod are needed.
    	Spec PodSchedulingContextSpec
    
    	// Status describes where resources for the Pod can be allocated.
    	Status PodSchedulingContextStatus
    }
    
    // PodSchedulingContextSpec describes where resources for the Pod are needed.
    type PodSchedulingContextSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

    message PodSchedulingContext {
      // Standard object metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec describes where resources for the Pod are needed.
      optional PodSchedulingContextSpec spec = 2;
    
      // Status describes where resources for the Pod can be allocated.
      // +optional
      optional PodSchedulingContextStatus status = 3;
    }
    
    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/api/resource/v1alpha2/types.go

    	// Spec describes where resources for the Pod are needed.
    	Spec PodSchedulingContextSpec `json:"spec" protobuf:"bytes,2,name=spec"`
    
    	// Status describes where resources for the Pod can be allocated.
    	// +optional
    	Status PodSchedulingContextStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // PodSchedulingContextSpec describes where resources for the Pod are needed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    - `formatVersion`: must be present and the first value of the JSON object. Its value must be `"1.0"`
    - `component`: optional. Describes the identity of the component contained in the module.
    - `createdBy`: optional. Describes the producer of this metadata file and the contents of the module.
    - `variants`: optional. Describes the variants of the component packaged in the module, if any.
    
    ### `component` value
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

    message PodSchedulingContext {
      // Standard object metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec describes where resources for the Pod are needed.
      optional PodSchedulingContextSpec spec = 2;
    
      // Status describes where resources for the Pod can be allocated.
      // +optional
      optional PodSchedulingContextStatus status = 3;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. pkg/kube/adapter.go

    	Connect string = "CONNECT"
    )
    
    // AdmissionReview describes an admission review request/response.
    type AdmissionReview struct {
    	// TypeMeta describes an individual object in an API response or request
    	// with strings representing the type of the object and its API schema version.
    	// Structures that are versioned or persisted should inline TypeMeta.
    	metav1.TypeMeta
    
    	// Request describes the attributes for the admission request.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. pkg/apis/networking/types.go

    // NetworkPolicy describes what network traffic is allowed for a set of pods
    type NetworkPolicy struct {
    	metav1.TypeMeta
    
    	// +optional
    	metav1.ObjectMeta
    
    	// spec represents the specification of the desired behavior for this NetworkPolicy.
    	// +optional
    	Spec NetworkPolicySpec
    }
    
    // PolicyType describes the NetworkPolicy type
    // This type is beta-level in 1.8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    - `formatVersion`: must be present and the first value of the JSON object. Its value must be `"1.1"`
    - `component`: optional. Describes the identity of the component contained in the module.
    - `createdBy`: optional. Describes the producer of this metadata file and the contents of the module.
    - `variants`: optional. Describes the variants of the component packaged in the module, if any.
    
    ### `component` value
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Deprecated: Please use `Versions`.
    	Version string
    	// Names are the names used to describe this custom resource
    	Names CustomResourceDefinitionNames
    	// Scope indicates whether this resource is cluster or namespace scoped.  Default is namespaced
    	Scope ResourceScope
    	// Validation describes the validation methods for CustomResources
    	// Optional, the global validation schema for all versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top