Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 444 for small8 (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/BUILD

            "@local_xla//xla/hlo/ir:hlo",
            "@local_xla//xla/service:hlo_parser",
        ],
    )
    
    tf_cc_test(
        name = "tf_mlir_translate_registration_test",
        size = "small",
        srcs = ["tf_mlir_translate_registration_test.cc"],
        deps = [
            ":translate_registration",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "@com_google_absl//absl/strings",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/runtime/HACKING.md

    use `getg() == getg().m.curg`.
    
    Stacks
    ======
    
    Every non-dead G has a *user stack* associated with it, which is what
    user Go code executes on. User stacks start small (e.g., 2K) and grow
    or shrink dynamically.
    
    Every M has a *system stack* associated with it (also known as the M's
    "g0" stack because it's implemented as a stub G) and, on Unix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/op.go

    	nilCheck          bool      // this op is a nil check on arg0
    	faultOnNilArg0    bool      // this op will fault if arg0 is nil (and aux encodes a small offset)
    	faultOnNilArg1    bool      // this op will fault if arg1 is nil (and aux encodes a small offset)
    	usesScratch       bool      // this op requires scratch memory space
    	hasSideEffects    bool      // for "reasons", not to be eliminated.  E.g., atomic store, #19182.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

        // ===================================================================================
        //                                                                        Small Helper
        //                                                                        ============
        protected void verifyCrudMode(final int crudMode, final int expectedMode) {
            if (crudMode != expectedMode) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/encoding/json/bench_test.go

    		}
    	}
    }
    
    func BenchmarkMarshalBytes(b *testing.B) {
    	b.ReportAllocs()
    	// 32 fits within encodeState.scratch.
    	b.Run("32", benchMarshalBytes(32))
    	// 256 doesn't fit in encodeState.scratch, but is small enough to
    	// allocate and avoid the slower base64.NewEncoder.
    	b.Run("256", benchMarshalBytes(256))
    	// 4096 is large enough that we want to avoid allocating for it.
    	b.Run("4096", benchMarshalBytes(4096))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       SHORT is always discriminable from zero time, and always allows enough time for the small
     *       amounts of computation (creating a thread, calling a few methods, etc) needed to reach a
     *       timeout point. Similarly, a SMALL is always discriminable as larger than SHORT and smaller
     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. src/go/token/position.go

    // to the respective file set before the file implied by q.
    type Pos int
    
    // The zero value for [Pos] is NoPos; there is no file and line information
    // associated with it, and NoPos.IsValid() is false. NoPos is always
    // smaller than any other [Pos] value. The corresponding [Position] value
    // for NoPos is the zero value for [Position].
    const NoPos Pos = 0
    
    // IsValid reports whether the position is valid.
    func (p Pos) IsValid() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/LongMath.java

       * href="http://mathworld.wolfram.com/PrimeNumber.html">prime number</a>: an integer <i>greater
       * than one</i> that cannot be factored into a product of <i>smaller</i> positive integers.
       * Returns {@code false} if {@code n} is zero, one, or a composite number (one which <i>can</i> be
       * factored into smaller positive integers).
       *
       * <p>To test larger numbers, use {@link BigInteger#isProbablePrime}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  9. src/runtime/syscall_windows.go

    		p.parts = oldParts
    
    		// The Go ABI aligns arguments.
    		p.dstStackSize = alignUp(p.dstStackSize, uintptr(t.Align_))
    
    		// Copy just the size of the argument. Note that this
    		// could be a small by-value struct, but C and Go
    		// struct layouts are compatible, so we can copy these
    		// directly, too.
    		part := abiPart{
    			kind:           abiPartStack,
    			srcStackOffset: p.srcStackSize,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. cluster/gce/config-test.sh

    # Useful for scheduling heapster in large clusters with nodes of small size.
    HEAPSTER_MACHINE_TYPE=${HEAPSTER_MACHINE_TYPE:-}
    
    # Optional: Additional nodes would be created if their type and number is specified.
    # NUM_NODES would be lowered respectively.
    # Useful for running cluster-level addons that needs more resources than would fit
    # on small nodes, like network plugins.
    NUM_ADDITIONAL_NODES=${NUM_ADDITIONAL_NODES:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top