Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,597 for resources_ (0.26 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. 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)
  7. 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)
  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. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/MultiParentClassLoaderTest.groovy

            URL resource1 = new File('res1').toURI().toURL()
            URL resource2 = new File('res2').toURI().toURL()
    
            given:
            _ * parent1.getResource('resource1') >> resource1
            _ * parent1.getResource('resource2') >> null
            _ * parent2.getResource('resource2') >> resource2
    
            expect:
            loader.getResource('resource1') == resource1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top