Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,413 for describes (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/runtime/debug/mod.go

    	Path string
    
    	// Main describes the module that contains the main package for the binary.
    	Main Module
    
    	// Deps describes all the dependency modules, both direct and indirect,
    	// that contributed packages to the build of this binary.
    	Deps []*Module
    
    	// Settings describes the build settings used to build the binary.
    	Settings []BuildSetting
    }
    
    // A Module describes a single module included in a build.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top