Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,487 for describes (0.5 sec)

  1. maven-repository-metadata/src/site/apt/index.apt

     the Maven Repository Metadata file contains 3 different sets of metadata:
    
     [[1]] in a "groupId" directory: a "groupId" directory may contain Maven plugins artifacts, which are described in metadata's <<<plugins>>> element,
    
     [[2]] in a "groupId/artifactId" directory: metadata describes <<<groupId>>>, <<<artifactId>>> and <<<versioning>>> element that
           gives data about available versions (<<<latest>>>, <<<release>>>, <<<versions>>> list and <<<lastUpdated>>>),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 07 10:05:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1/types_swagger_doc_generated.go

    	return map_AdmissionResponse
    }
    
    var map_AdmissionReview = map[string]string{
    	"":         "AdmissionReview describes an admission review request/response.",
    	"request":  "Request describes the attributes for the admission request.",
    	"response": "Response describes the attributes for the admission response.",
    }
    
    func (AdmissionReview) SwaggerDoc() map[string]string {
    	return map_AdmissionReview
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/ResolutionFailureDescriber.java

     *
     * @param <FAILURE> the type of failure that this describer can describe
     */
    public interface ResolutionFailureDescriber<FAILURE extends ResolutionFailure> {
        /**
         * Tests whether this describer can be applied to a given failure.
         *
         * This defaults to {@code true} as many describers are applicable to all instances of a single failure type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/kube/apimirror/probe.go

    	URISchemeHTTPS URIScheme = "HTTPS"
    )
    
    // HTTPHeader describes a custom header to be used in HTTP probes
    type HTTPHeader struct {
    	// The header field name
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// The header field value
    	Value string `json:"value" protobuf:"bytes,2,opt,name=value"`
    }
    
    // TCPSocketAction describes an action based on opening a socket
    type TCPSocketAction struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1/generated.proto

      // +optional
      optional AdmissionRequest request = 1;
    
      // Response describes the attributes for the admission response.
      // +optional
      optional AdmissionResponse response = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admission/v1beta1/generated.proto

      // +optional
      optional AdmissionRequest request = 1;
    
      // Response describes the attributes for the admission response.
      // +optional
      optional AdmissionResponse response = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admission/v1beta1/types_swagger_doc_generated.go

    	return map_AdmissionResponse
    }
    
    var map_AdmissionReview = map[string]string{
    	"":         "AdmissionReview describes an admission review request/response.",
    	"request":  "Request describes the attributes for the admission request.",
    	"response": "Response describes the attributes for the admission response.",
    }
    
    func (AdmissionReview) SwaggerDoc() map[string]string {
    	return map_AdmissionReview
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admission/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // AdmissionReview describes an admission review request/response.
    type AdmissionReview struct {
    	metav1.TypeMeta `json:",inline"`
    	// Request describes the attributes for the admission request.
    	// +optional
    	Request *AdmissionRequest `json:"request,omitempty" protobuf:"bytes,1,opt,name=request"`
    	// Response describes the attributes for the admission response.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top