Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,487 for describes (0.16 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/TransformOperationDescriptor.java

        Set<? extends OperationDescriptor> getDependencies();
    
        /**
         * Describes the transformer of a transform operation.
         *
         * @since 5.1
         */
        interface TransformerDescriptor {
    
            /**
             * Returns the display name of this transformer.
             */
            String getDisplayName();
    
        }
    
        /**
         * Describes the subject (artifact or file) of a transform operation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K 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. releasenotes/notes/49700.yaml

    apiVersion: release-notes/v2
    
    # This YAML file describes the format for specifying a release notes entry for Istio.
    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/os/stat.go

    // If the file is a symbolic link, the returned FileInfo
    // describes the symbolic link. Lstat makes no attempt to follow the link.
    // If there is an error, it will be of type [*PathError].
    //
    // On Windows, if the file is a reparse point that is a surrogate for another
    // named entity (such as a symbolic link or mounted folder), the returned
    // FileInfo describes the reparse point, and makes no attempt to resolve it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 973 bytes
    - Viewed (0)
  5. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/aot/embedded_protocol_buffers.h

    namespace tensorflow {
    namespace tfcompile {
    using absl::StatusOr;
    
    // Represents a set of protocol buffers embedded into an object file and
    // describes how to access them at runtime.
    struct EmbeddedProtocolBuffers {
      // Each instance CPPShim describes how to generate C++ code to instantiate a
      // protobuf instance from the corresponding static data emitted into the
      // object file.
      struct CPPShim {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestOutputDescriptor.java

     */
    
    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.OperationDescriptor;
    
    /**
     * Describes a test output operation.
     *
     * @since 6.0
     */
    public interface TestOutputDescriptor extends OperationDescriptor {
    
        /**
         * Describes whether the content was printed to the standard output or the standard error.
         */
        Destination getDestination();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. 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)
Back to top