Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 840 for describeTo (0.32 sec)

  1. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

            Describer describer = new Describer();
            S service = Cast.uncheckedNonnullCast(factory.createBuildCacheService(configuration, describer));
            ImmutableSortedMap<String, String> config = ImmutableSortedMap.copyOf(describer.configParams);
            BuildCacheDescription description = new BuildCacheDescription(configuration, describer.type, config);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     * </ul>
     *
     * @since 8.3
     */
    public interface FilePermissions {
    
        /**
         * Describes what actions the owner of the file can perform on the file/directory.
         * <p>
         * For further details about possible actions see {@link UserClassFilePermissions}.
         */
        UserClassFilePermissions getUser();
    
        /**
         * Describes what actions a user, who is a member of the group that the file/directory belongs to,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

     *
     * @since 8.3
     */
    public interface UserClassFilePermissions {
    
        /**
         * Describes if a certain class of users has read access to a file or directory.
         * <p>
         * Read access is the capability to view the contents of a file, or to list the contents of a directory.
         */
        boolean getRead();
    
        /**
         * Describes if a certain class of users has write access to a file or directory.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    //
    // The handling of facts in the analysis system parallels the handling
    // of type information in the compiler: during compilation of package P,
    // the compiler emits an export data file that describes the type of
    // every object (named thing) defined in package P, plus every object
    // indirectly reachable from one of those objects. Thus the downstream
    // compiler of package Q need only load one export data file per direct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. 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)
  6. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

      repeated IPAddress items = 2;
    }
    
    // IPAddressSpec describe the attributes in an IP Address.
    message IPAddressSpec {
      // ParentRef references the resource that an IPAddress is attached to.
      // An IPAddress must reference a parent object.
      // +required
      optional ParentReference parentRef = 1;
    }
    
    // ParentReference describes a reference to a parent object.
    message ParentReference {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/types.go

    	// +optional
    	EndPort *int32 `json:"endPort,omitempty" protobuf:"bytes,3,opt,name=endPort"`
    }
    
    // IPBlock describes a particular CIDR (Ex. "192.168.1.0/24","2001:db8::/64") that is allowed
    // to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs
    // that should not be included within this rule.
    type IPBlock struct {
    	// cidr is a string representing the IPBlock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/diagnostics/DaemonDiagnosticsTest.groovy

            def diagnostics = new DaemonDiagnostics(new File("does not exist"), 123)
    
            when:
            def description = diagnostics.describe()
    
            then:
            noExceptionThrown()
            description.contains("Unable to read from the daemon log file")
        }
    
        def "can describe itself"() {
            given:
            def log = temp.file("foo.log")
            log << "hey joe!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/package-info.java

    /**
     * This package contains {@link org.gradle.internal.component.resolution.failure.describer.ResolutionFailureDescriber ResolutionFailureDescriber}s
     * used for describing resolution failures in human-readable terms for use in displaying error messages on the console.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 15:07:22 UTC 2024
    - 987 bytes
    - Viewed (0)
  10. 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)
Back to top