Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for hashed (0.11 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

      struct HashSignatureForAndOr {
        size_t operator()(const SignatureForAndOr& signature) const {
          size_t hash = ::tensorflow::hash<Predicate::Kind>()(signature.first);
          for (Predicate* p : signature.second) {
            hash = Hash64Combine(hash, ::tensorflow::hash<Predicate*>()(p));
          }
          return hash;
        }
      };
    
      struct HashSignatureForSymbol {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	t.Log("\n\nREPEAT\n\n")
    
    	tg.run("test", "-x", "-v", "-short", "t/...")
    	tg.grepStdout(`ok  \tt/t1\t\(cached\)`, "did not cache t1")
    	tg.grepStdout(`ok  \tt/t2\t\(cached\)`, "did not cache t2")
    	tg.grepStdout(`ok  \tt/t3\t\(cached\)`, "did not cache t3")
    	tg.grepStdout(`ok  \tt/t4\t\(cached\)`, "did not cache t4")
    	tg.grepStderrNot(`[\\/](compile|gccgo) `, "incorrectly ran compiler")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    and those results are then passed (through the variant tensor result) to
    MakeIterator / IteratorGetNext. Note that the actual TF implementation differs: It
    generates the next element just in time, during IteratorGetNext.
    
    init_extra_args: Additional arguments to pass to 'init'.
    next_extra_args: Additional arguments to pass to 'next'. (Passed after the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      public void testNewHashSetEmpty() {
        HashSet<Integer> set = Sets.newHashSet();
        verifySetContents(set, EMPTY_COLLECTION);
      }
    
      public void testNewHashSetVarArgs() {
        HashSet<Integer> set = Sets.newHashSet(0, 1, 1);
        verifySetContents(set, Arrays.asList(0, 1));
      }
    
      public void testNewHashSetFromCollection() {
        HashSet<Integer> set = Sets.newHashSet(SOME_COLLECTION);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_3x.md

    
    ## Version 3.14.4
    
    _2019-09-29_
    
     *  Fix: Cancel calls that fail due to unexpected exceptions. We had a bug where an enqueued call
        would never call back if it crashed with an unchecked throwable, such as a
        `NullPointerException` or `OutOfMemoryError`. We now call `Callback.onFailure()` with an
        `IOException` that reports the call as canceled. The triggering exception is still delivered to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // be used:
    //
    //	// Assume hashfd is already configured using the setup process.
    //	hash := os.NewFile(hashfd, "sha1")
    //	// Hash an input string and read the results. Each Write discards
    //	// previous hash state. Read always reads the current state.
    //	b := make([]byte, 20)
    //	for i := 0; i < 2; i++ {
    //	    io.WriteString(hash, "Hello, world.")
    //	    hash.Read(b)
    //	    fmt.Println(hex.EncodeToString(b))
    //	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            failure.assertHasFailures(1)
            failure.assertHasFileName("Build file '${buildFile.absolutePath}'")
            failure.assertHasLineNumber(4)
            failure.assertHasDescription("Configuration cache state could not be cached: field `prop` of task `:broken` of type `BrokenTaskType`: error writing value of type 'BrokenSerializable'")
            failure.assertHasCause("BOOM")
            problems.assertResultHasProblems(failure)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    you may provide Gradle with the exact encryption key to use when
    reading or writing the cached configuration data via the `GRADLE_ENCRYPTION_KEY` environment variable.
    
    [IMPORTANT]
    ====
    You must ensure that the same encryption key is consistently provided across multiple Gradle runs,
    or else Gradle will not be able to reuse existing cached configurations.
    ====
    
    [[config_cache:secrets:generating_encryption_key]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    	restoreMin        int32   // minimum of all restores' blocks' sdom.entry
    	restoreMax        int32   // maximum of all restores' blocks' sdom.exit
    	needReg           bool    // cached value of !v.Type.IsMemory() && !v.Type.IsVoid() && !.v.Type.IsFlags()
    	rematerializeable bool    // cached value of v.rematerializeable()
    }
    
    type regState struct {
    	v *Value // Original (preregalloc) Value stored in this register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    	rs.graphOnce.Do(func() {
    		mg, mgErr := readModGraph(ctx, rs.pruning, rs.rootModules, nil)
    		rs.graph.Store(&cachedGraph{mg, mgErr})
    	})
    	cached := rs.graph.Load()
    	return cached.mg, cached.err
    }
    
    // IsDirect returns whether the given module provides a package directly
    // imported by a package or test in the main module.
    func (rs *Requirements) IsDirect(path string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top