Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,613 for resources_ (0.21 sec)

  1. tensorflow/compiler/jit/kernels/xla_ops.h

      void ComputeAsync(OpKernelContext* ctx, DoneCallback done) override;
    
     protected:
      // Indexes of compile-time constant inputs
      const std::vector<int> constants_;
      // Indexes of resource inputs
      const std::vector<int> resources_;
    
      const NameAttrList function_;
      const XlaPlatformInfo platform_info_;
    
      bool has_ref_vars_;
    };
    
    // XlaLocalLaunchOp is used to replace a region of the TensorFlow graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      bool Contains(Value resource) const {
        return resources_.find(resource) != resources_.end();
      }
    
      // Drops the given resource from lifting.
      void DropResource(Value resource) {
        resources_.erase(resource);
        written_resources_.remove(resource);
      }
    
      // Replaces all resource loads in all regions attached to the op.
      void ReplaceResourceLoads(bool read_only) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/kernels/xla_ops.cc

      int num_resources;
      OP_REQUIRES_OK_RETURN(ctx, std::vector<int>(),
                            ctx->GetAttr("Nresources", &num_resources));
    
      std::vector<int> resources(num_resources);
      std::iota(resources.begin(), resources.end(),
                constant_types.size() + arg_types.size());
      return resources;
    }
    
    NameAttrList FunctionAttr(OpKernelConstruction* ctx) {
      const NameAttrList* func;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * A `compileTestJava` task for source files under _src/test/java_
     * A `test` task that runs the tests from _src/test/java_
     * A `jar` task that packages the `main` compiled classes and resources from _src/main/resources_ into a single JAR named _<project>-<version>.jar_
     * A `javadoc` task that generates Javadoc for the `main` classes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top