Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 322 for maddld (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/net/netip/fuzz_test.go

    	"fd7a:115c:a1e0:ab12:4843:cd96:626b:430b",
    	// IPv6 with elided fields in the middle.
    	"fd7a:115c::626b:430b",
    	// IPv6 with elided fields at the end.
    	"fd7a:115c:a1e0:ab12:4843:cd96::",
    	// IPv6 with single elided field at the end.
    	"fd7a:115c:a1e0:ab12:4843:cd96:626b::",
    	"fd7a:115c:a1e0:ab12:4843:cd96:626b:0",
    	// IPv6 with single elided field in the middle.
    	"fd7a:115c:a1e0::4843:cd96:626b:430b",
    	"fd7a:115c:a1e0:0:4843:cd96:626b:430b",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  5. 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)
  6. android/guava-tests/test/com/google/common/primitives/IntArrayAsListTest.java

                    .named("Ints.asList, tail subList"),
                ListTestSuiteBuilder.using(new IntsAsListMiddleSubListGenerator())
                    .named("Ints.asList, middle subList"));
    
        TestSuite suite = new TestSuite();
        for (ListTestSuiteBuilder<Integer> builder : builders) {
          suite.addTest(
              builder
                  .withFeatures(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/image/draw/clip_test.go

    		image.Rect(20, 20, 80, 80),
    		image.Rectangle{},
    		image.Pt(15, 8),
    		image.Point{},
    		true,
    		image.Rect(5, 12, 50, 72),
    		image.Pt(20, 20),
    		image.Point{},
    	},
    	{
    		"clip dr and sr, sp outside sr (middle-left)",
    		image.Rect(0, 0, 100, 100),
    		image.Rect(0, 0, 50, 100),
    		image.Rect(20, 20, 80, 80),
    		image.Rectangle{},
    		image.Pt(15, 66),
    		image.Point{},
    		true,
    		image.Rect(5, 0, 50, 14),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K 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. src/runtime/testdata/testprogcgo/eintr.go

    		// in the other goroutine will likely be interrupted
    		// by a signal.
    		sendSomeSignals()
    		// This Write will likely be interrupted by a signal
    		// as the other goroutine spins in the middle of reading.
    		// We write enough data that we should always fill the
    		// pipe buffer and need multiple write system calls.
    		if _, err := w.Write(bytes.Repeat([]byte{0}, 2<<20)); err != nil {
    			log.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/matcher_test.go

    					ExpressionAccessor: &MatchCondition{
    						Name: "test1",
    					},
    				},
    			},
    			shouldMatch:  false,
    			returnedName: "test1",
    		},
    		{
    			name: "test mixed with no match middle",
    			evaluations: []cel.EvaluationResult{
    				{
    					EvalResult: celtypes.True,
    					ExpressionAccessor: &MatchCondition{
    						Name: "test2",
    					},
    				},
    				{
    					EvalResult: celtypes.False,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top