Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,043 for resources2 (0.28 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/src/main/mdo/remote-resources.mdo

    -->
    
    <model>
      <id>remoteResourcesBundle</id>
      <name>RemoteResourcesBundle</name>
      <description>
        A bundle of remote resources.
        This is the model specification for remote-resources.xml.
      </description>
      <defaults>
        <default>
          <key>package</key>
          <value>org.apache.maven.plugin.resources.remote</value>
        </default>
      </defaults>
      <classes>
        <class rootElement="true" xml.tagName="remoteResourcesBundle">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. cluster/gce/list-resources.sh

    fi
    
    # Usage: gcloud-list <group> <resource> <additional parameters to gcloud...>
    # GREP_REGEX is applied to the output of gcloud if set
    GREP_REGEX=""
    function gcloud-list() {
      local -r group=$1
      local -r resource=$2
      local -r filter=${3:-}
      echo -e "\n\n[ ${group} ${resource} ]"
      local attempt=1
      local result=""
      while true; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top