Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,613 for resources_ (0.18 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/IncrementalJavaProjectBuildIntegrationTest.groovy

            file('src/main/resources/org/gradle/resource.txt').createFile()
    
            executer.withTasks('classes').run()
            file('build/resources/main').assertHasDescendants('org/gradle/resource.txt')
    
            file('src/main/resources/org/gradle/resource.txt').assertIsFile().delete()
            file('src/main/resources/org/gradle/resource2.txt').createFile()
    
            executer.withTasks('classes').run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResource.java

     * To create a text resource, use one of the factory methods in {@link TextResourceFactory}
     * (e.g. {@code project.resources.text.fromFile(myFile)}).
     *
     * @since 2.2
     */
    @HasInternalProtocol
    public interface TextResource extends Buildable {
        /**
         * Returns a string containing the resource's text
         *
         * @return a string containing the resource's text
         */
        String asString();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      bool IsUnknownAccessIndirectlyTrackedByResource(ResourceId resource,
                                                      bool read_only);
    
      // Returns a set of resource IDs that have potential dependencies to
      // `resource_id` (i.e., there are potential dependencies between the
      // resources corresponding to the IDs).
      llvm::SmallSet<ResourceId, 8> GetDependentIds(ResourceId resource_id,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/file/store.go

    			if err != nil {
    				return resources, fmt.Errorf("failed parsing resource chunk: %v", err)
    			}
    			resources = append(resources, lr...)
    		}
    		return resources, nil
    	}
    
    	if groupVersionKind.Empty() {
    		return resources, fmt.Errorf("unable to parse resource with no group, version and kind")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         * Not all resources are available as a file.
         * Note that this method may return null when {@link ResourceLocation#getFile()} returns non-null, when the contents are different.
         *
         * @return A file containing this resource. Returns null if this resource is not available as a file.
         */
        @Nullable
        File getFile();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/ops/xla_ops.cc

    REGISTER_OP("XlaLaunch")
        .Input("constants: Tconstants")
        .Attr("Tconstants: list(type) >= 0")
        .Input("args: Targs")
        .Attr("Targs: list(type) >= 0")
        .Input("resources: Nresources * resource")
        .Attr("Nresources: int >= 0")
        .Output("results: Tresults")
        .Attr("Tresults: list(type) >= 0")
        .Attr("function: func")
        // XLA random-number generation ops are stateful.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java/basic/groovy/src/test/resources/org/gradle/test-resource.xml

    <some-resource/>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17 bytes
    - Viewed (0)
  8. cmd/metrics-resource.go

    	lastDriveStatsRefresh time.Time
    )
    
    // PeerResourceMetrics represents the resource metrics
    // retrieved from a peer, along with errors if any
    type PeerResourceMetrics struct {
    	Metrics map[MetricSubsystem]ResourceMetrics
    	Errors  []string
    }
    
    // ResourceMetrics is a map of unique key identifying
    // a resource metric (e.g. reads_per_sec_{node}_{drive})
    // to its data
    type ResourceMetrics map[string]ResourceMetric
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/multiproject/dependencies-java/kotlin/shared/src/test/resources/org/gradle/test-resource.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/pod_devices.go

    	pdev.RLock()
    	defer pdev.RUnlock()
    	for _, containerDevices := range pdev.devs {
    		for _, resources := range containerDevices {
    			for resource, devices := range resources {
    				if _, exists := ret[resource]; !exists {
    					ret[resource] = sets.New[string]()
    				}
    				if devices.allocResp != nil {
    					ret[resource] = ret[resource].Union(devices.deviceIds.Devices())
    				}
    			}
    		}
    	}
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top