Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,335 for look (0.07 sec)

  1. tensorflow/cc/experimental/libexport/load.h

      // and restoring the variable(s)' values.  Variable values are indexed in the
      // checkpoint files by "checkpoint keys".  These keys along with dtype and
      // shape / slice information allow RestoreV2 to look up a variable's value in
      // the SavedModel and restore it into a tensor.
      tensorflow::StatusOr<std::string> GetVariableCheckpointKey(int index);
    
      // Retrieves the object graph from the SavedModel.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/runtime_metadata.fbs

    // op2 = .... {tac.device = "GPU"} {"CPU": 20, "GPU": 5.0}
    // op3 = .... {tac.device = "GPU"} {"CPU": 30, "GPU": 10.0}
    // op4 = .... {tac.device = "CPU"} {"CPU": 40, "GPU": -1.0}
    //
    // The exported runtime metadata will look like below:
    // ======== Runtime Metadata ========
    //
    // RuntimeMetadata: {
    //   hardwares: {
    //    ["CPU", "GPU"]
    //   }
    //
    //  subgraph_metadata: {
    //    [
    //      op1:
    //       hardware: 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginRegistry.java

        PluginRegistry createChild(ClassLoaderScope lookupScope);
    
        /**
         * Finds the plugin id which corresponds to the supplied class name.
         * @param clazz the class to look for
         * @return the plugin id for this class.
         */
        Optional<PluginId> findPluginForClass(Class<?> clazz);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 25 08:50:30 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizer.groovy

    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    /**
     * This normalizer converts native component paths and environment
     * information to look like macOS because samples output currently shows
     * the output for macOS and is not yet capable of adapting dynamically
     * to different toolchains.
     */
    class NativeComponentReportOutputNormalizer implements OutputNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/html/template/error.go

    	// Discussion:
    	//   A recursive template does not end in the same context in which it
    	//   starts, and a reliable output context cannot be computed.
    	//   Look for typos in the named template.
    	//   If the template should not be called in the named start context,
    	//   look for calls to that template in unexpected contexts.
    	//   Maybe refactor recursive templates to not be recursive.
    	ErrOutputContext
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  6. src/runtime/signal_arm64.go

    func (c *sigctxt) setsigpc(x uint64) { c.set_pc(x) }
    func (c *sigctxt) sigsp() uintptr    { return uintptr(c.sp()) }
    func (c *sigctxt) siglr() uintptr    { return uintptr(c.lr()) }
    
    // preparePanic sets up the stack to look like a call to sigpanic.
    func (c *sigctxt) preparePanic(sig uint32, gp *g) {
    	// We arrange lr, and pc to pretend the panicking
    	// function calls sigpanic directly.
    	// Always save LR to stack so that panics in leaf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 18:16:00 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/ops/xla_ops.cc

        .SetIsStateful()
        .Doc(R"(XLA Compile Op. For use by the XLA JIT only.
    
    Compiles a TensorFlow function into an XLA LocalExecutable and returns a key
    that _XlaRun can use to look up the LocalExecutable and execute it.
    
    key: A key that can be used to look up the local executable compiled by the
       node and associated metadata.
    
    compilation_successful: If the `must_compile` attr is false the _XlaCompile op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_prefer_incompatible.txt

    # Verifies golang.org/issue/37574.
    
    # If we are already using an +incompatible version, we shouldn't look up
    # a lower compatible version when upgrading.
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    grep '^example.com/incompatiblewithsub v2\.0\.0\+incompatible' go.sum
    ! grep '^example.com/incompatiblewithsub v1.0.0' go.sum
    
    go get example.com/incompatiblewithsub/sub
    cmp go.mod.orig go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 895 bytes
    - Viewed (0)
  9. pkg/apis/abac/latest/latest.go

    import (
    	//Init the abac api package
    	_ "k8s.io/kubernetes/pkg/apis/abac"
    	_ "k8s.io/kubernetes/pkg/apis/abac/v0"
    	_ "k8s.io/kubernetes/pkg/apis/abac/v1beta1"
    )
    
    // TODO: this file is totally wrong, it should look like other latest files.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 26 08:30:35 UTC 2019
    - 919 bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/ts_test.go

    	}
    }
    
    const hellogo = `
    package main
    
    func main() {
      println("hello")
    }
    `
    
    // Returns a pair F,T where F is a meta-data file generated from
    // "hello.go" above, and T is a token to look for that should be
    // present in the coverage report from F.
    func genAuxMeta(t *testing.T, dstdir string) (string, string) {
    	// Do a GOCOVERDIR=<tmp> go run hello.go
    	src := filepath.Join(dstdir, "hello.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top