Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 812 for describeTo (0.35 sec)

  1. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    }
    
    func (DaemonSet) SwaggerDoc() map[string]string {
    	return map_DaemonSet
    }
    
    var map_DaemonSetCondition = map[string]string{
    	"":                   "DaemonSetCondition describes the state of a DaemonSet at a certain point.",
    	"type":               "Type of DaemonSet condition.",
    	"status":             "Status of the condition, one of True, False, Unknown.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    // ConversionReview describes a conversion request/response.
    type ConversionReview struct {
    	metav1.TypeMeta `json:",inline"`
    	// request describes the attributes for the conversion request.
    	// +optional
    	Request *ConversionRequest `json:"request,omitempty" protobuf:"bytes,1,opt,name=request"`
    	// response describes the attributes for the conversion response.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

    message Affinity {
      // Describes node affinity scheduling rules for the pod.
      // +optional
      optional NodeAffinity nodeAffinity = 1;
    
      // Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).
      // +optional
      optional PodAffinity podAffinity = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableMultiset.java

       * described in the class documentation.
       *
       * @throws NullPointerException if any of {@code elements} is null
       * @since 6.0
       */
      public static <E> ImmutableMultiset<E> copyOf(E[] elements) {
        return copyFromElements(elements);
      }
    
      /**
       * Returns an immutable multiset containing the given elements, in the "grouped iteration order"
       * described in the class documentation.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// TemplateRef is a reference to an object that describes the pod that will be created if
    	// insufficient replicas are detected.
    	// Reference to an object that describes the pod that will be created if insufficient replicas are detected.
    	// +optional
    	// TemplateRef *ObjectReference `json:"templateRef,omitempty"`
    
    	// Template is the object that describes the pod that will be created if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. src/os/file_unix.go

    // non-blocking mode, NewFile will attempt to return a pollable File
    // (one for which the SetDeadline methods work).
    //
    // After passing it to NewFile, fd may become invalid under the same
    // conditions described in the comments of the Fd method, and the same
    // constraints apply.
    func NewFile(fd uintptr, name string) *File {
    	fdi := int(fd)
    	if fdi < 0 {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/internal/attributes/AttributesSchemaWithDescribers.java

    import java.util.List;
    
    public interface AttributesSchemaWithDescribers extends AttributesSchema {
    
        List<AttributeDescriber> getConsumerDescribers();
    
        void addConsumerDescriber(AttributeDescriber describer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 931 bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/authorization/v1/generated.proto

    // and NonResourceAuthorizationAttributes must be set
    message SelfSubjectAccessReviewSpec {
      // ResourceAuthorizationAttributes describes information for a resource access request
      // +optional
      optional ResourceAttributes resourceAttributes = 1;
    
      // NonResourceAttributes describes information for a non-resource access request
      // +optional
      optional NonResourceAttributes nonResourceAttributes = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

    // and NonResourceAuthorizationAttributes must be set
    message SelfSubjectAccessReviewSpec {
      // ResourceAuthorizationAttributes describes information for a resource access request
      // +optional
      optional ResourceAttributes resourceAttributes = 1;
    
      // NonResourceAttributes describes information for a non-resource access request
      // +optional
      optional NonResourceAttributes nonResourceAttributes = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    An opposite option is only created if no option with the same name already exists for the task.
    
    `Double`, `Property<Double>`::
    Describes an option with a double value. +
    Passing the option on the command line also requires a value, e.g., `--factor=2.2` or `--factor 2.2`.
    
    `Integer`, `Property<Integer>`::
    Describes an option with an integer value. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top