Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 219 for maddld (0.58 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/AbstractTestDirectoryProvider.java

                prefix = String.format("%s/%s", className, safeMethodName);
            }
        }
    
        /*
         Shorten a long name to at most {expectedMaxLength}, replace middle characters with ".".
         */
        private String shortenPath(String longName, int expectedMaxLength) {
            if (longName.length() <= expectedMaxLength) {
                return longName;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. docs/en/overrides/main.html

            </span> Subscribe to the <strong>FastAPI and friends</strong> newsletter 🎉
          </a>
        </div>
        <div class="item">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Striped64.java

       * Nearly all declarations in this class are package-private,
       * accessed directly by subclasses.
       *
       * Table entries are of class Cell; a variant of AtomicLong padded
       * to reduce cache contention on most processors. Padding is
       * overkill for most Atomics because they are usually irregularly
       * scattered in memory and thus don't interfere much with each
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/util/concurrent/testing/AbstractListenableFutureTest.java

        int listenerCount = 20;
        CountDownLatch listenerLatch = new CountDownLatch(listenerCount);
    
        // Test that listeners added both before and after the value is available
        // get called correctly.
        for (int i = 0; i < 20; i++) {
    
          // Right in the middle start up a thread to close the latch.
          if (i == 10) {
            new Thread(() -> latch.countDown()).start();
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 18:30:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    		// It's not okay to do:
    		//	var x SliceHeader
    		//	x.Data = uintptr(unsafe.Pointer(...))
    		//	... use x ...
    		//	p := unsafe.Pointer(x.Data)
    		// because in the middle the garbage collector doesn't
    		// see x.Data as a pointer and so x.Data may be dangling
    		// by the time we get to the conversion at the end.
    		// For now approximate by saying that *Header is okay
    		// but Header is not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/image/gif/writer_test.go

    	local[trIdx] = color.RGBA{}
    
    	const testLen = 3 * 256
    	const padded = 7
    	e := new(encoder)
    	if l, err := encodeColorTable(e.globalColorTable[:], global, padded); err != nil || l != testLen {
    		t.Fatalf("Failed to encode global color table: got %d, %v; want nil, %d", l, err, testLen)
    	}
    	if l, err := encodeColorTable(e.localColorTable[:], local, padded); err != nil || l != testLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/runtime/race_s390x.s

    	// void __tsan_read_range(ThreadState *thr, void *addr, uintptr size, void *pc);
    	MOVD	$__tsan_read_range(SB), R1
    	LMG	addr+0(FP), R3, R5
    	// pc is an interceptor address, but TSan expects it to point to the
    	// middle of an interceptor (see LLVM's SCOPED_INTERCEPTOR_RAW).
    	ADD	$2, R5
    	JMP	racecalladdr<>(SB)
    
    // func runtime·racewriterange(addr, size uintptr)
    // Called from instrumented code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashCodeTest.groovy

            Hashing.md5().hashString("a").toCompactString() == "r6p51cluyxfm1x21kf967yw1"
            Hashing.md5().hashString("i").toCompactString() == "7ycx034q3zbhupl01mv32dx6p"
        }
    
        def "can create zero-padded hex representation"() {
            expect:
            HashCode.fromString("12345678").toZeroPaddedString(8) == "12345678"
            HashCode.fromString("12345678").toZeroPaddedString(7) == "12345678"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/mark_input_output_aliases.cc

    // ```
    // where `%value` and `%output#b` have only one use. (a, b) would be added as
    // input-output alias pair for `%resource_var`.
    //
    // This pass also handles the case where instead
    // ```
    // %output:N = tf_device.parallel_execute(...)
    // ```
    // with a `cluster_func` nested within the `parallel_execute`. This occurs when
    // there are outside-compiled ops are in the middle of an XLA cluster, which are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/util/concurrent/testing/AbstractListenableFutureTest.java

        int listenerCount = 20;
        CountDownLatch listenerLatch = new CountDownLatch(listenerCount);
    
        // Test that listeners added both before and after the value is available
        // get called correctly.
        for (int i = 0; i < 20; i++) {
    
          // Right in the middle start up a thread to close the latch.
          if (i == 10) {
            new Thread(() -> latch.countDown()).start();
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 18:30:30 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top