Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,613 for resources2 (0.22 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13155")
        def "plugin can bundle multiple resources with the same name"() {
            file("buildSrc/build.gradle") << """
                jar.from('resources1')
                jar.from('resources2')
                jar.duplicatesStrategy = DuplicatesStrategy.INCLUDE
            """
            file("buildSrc/src/main/groovy/SomePlugin.groovy") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  2. src/internal/trace/resources.go

    	}
    	return "Bad"
    }
    
    // ResourceID represents a generic resource ID.
    type ResourceID struct {
    	// Kind is the kind of resource this ID is for.
    	Kind ResourceKind
    	id   int64
    }
    
    // MakeResourceID creates a general resource ID from a specific resource's ID.
    func MakeResourceID[T interface{ GoID | ProcID | ThreadID }](id T) ResourceID {
    	var rd ResourceID
    	var a any = id
    	switch a.(type) {
    	case GoID:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/resources/Resource.java

     * limitations under the License.
     */
    
    package org.gradle.api.resources;
    
    import java.net.URI;
    
    /**
     * A generic resource of some kind. Only describes the resource.
     * There are more specific interface that extend this one and specify ways of accessing the resource's content.
     */
    public interface Resource {
    
        /**
         * Human readable name of this resource
         *
         * @return human readable name, should not be null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

    import static org.junit.Assert.assertNotNull;
    
    /**
     * A JUnit rule which helps locate test resources.
     */
    public class Resources implements MethodRule {
        private static final String EXTRACTED_RESOURCES_DIR = "tmp-extracted-resources";
    
        /**
         * Set of keys in the form {@code <running test class name>:<jar file resource path>}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/admission/exclusion/resources.go

    	// BEGIN interception of these non-persisted resources may break the cluster
    	{Group: "authentication.k8s.io", Resource: "selfsubjectreviews"},
    	{Group: "authentication.k8s.io", Resource: "tokenreviews"},
    	{Group: "authorization.k8s.io", Resource: "localsubjectaccessreviews"},
    	{Group: "authorization.k8s.io", Resource: "selfsubjectaccessreviews"},
    	{Group: "authorization.k8s.io", Resource: "selfsubjectrulesreviews"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    // If an error is returned, usage only contains the resources which encountered no calculation errors.
    func CalculateUsage(namespaceName string, scopes []corev1.ResourceQuotaScope, hardLimits corev1.ResourceList, registry Registry, scopeSelector *corev1.ScopeSelector) (corev1.ResourceList, error) {
    	// find the intersection between the hard resources on the quota
    	// and the resources this controller can track to know what we can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/Resources.java

       * this class ({@code Resources}) will be used instead.
       *
       * @throws IllegalArgumentException if the resource is not found
       */
      @CanIgnoreReturnValue // being used to check if a resource exists
      // TODO(cgdecker): maybe add a better way to check if a resource exists
      // e.g. Optional<URL> tryGetResource or boolean resourceExists
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/Resources.java

       * this class ({@code Resources}) will be used instead.
       *
       * @throws IllegalArgumentException if the resource is not found
       */
      @CanIgnoreReturnValue // being used to check if a resource exists
      // TODO(cgdecker): maybe add a better way to check if a resource exists
      // e.g. Optional<URL> tryGetResource or boolean resourceExists
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. pkg/scheduler/metrics/resources/resources.go

    	requests: resourceLifecycleDescriptors{
    		total: metrics.NewDesc("kube_pod_resource_request",
    			"Resources requested by workloads on the cluster, broken down by pod. This shows the resource usage the scheduler and kubelet expect per pod for resources along with the unit for the resource if any.",
    			[]string{"namespace", "pod", "node", "scheduler", "priority", "resource", "unit"},
    			nil,
    			metrics.STABLE,
    			""),
    	},
    	limits: resourceLifecycleDescriptors{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/src/hello/rc/resources.rc

    #include "resources.h"
    
    STRINGTABLE
    {
        IDS_HELLO,   "Hello world!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 73 bytes
    - Viewed (0)
Back to top