Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 243 for AA (0.03 sec)

  1. test/typeparam/issue51836.dir/aa.go

    Robert Findley <******@****.***> 1647893318 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 21:38:10 UTC 2022
    - 225 bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

          assertFalse(aa.compareAndSet(i, -0.0, 7.0));
          assertFalse(aa.weakCompareAndSet(i, -0.0, 7.0));
          assertBitEquals(+0.0, aa.get(i));
          assertTrue(aa.compareAndSet(i, +0.0, -0.0));
          assertBitEquals(-0.0, aa.get(i));
          assertFalse(aa.compareAndSet(i, +0.0, 7.0));
          assertFalse(aa.weakCompareAndSet(i, +0.0, 7.0));
          assertBitEquals(-0.0, aa.get(i));
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

          assertFalse(aa.compareAndSet(i, -0.0, 7.0));
          assertFalse(aa.weakCompareAndSet(i, -0.0, 7.0));
          assertBitEquals(+0.0, aa.get(i));
          assertTrue(aa.compareAndSet(i, +0.0, -0.0));
          assertBitEquals(-0.0, aa.get(i));
          assertFalse(aa.compareAndSet(i, +0.0, 7.0));
          assertFalse(aa.weakCompareAndSet(i, +0.0, 7.0));
          assertBitEquals(-0.0, aa.get(i));
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/net/interface_windows.go

    		}
    		if l <= uint32(len(b)) {
    			return nil, os.NewSyscallError("getadaptersaddresses", err)
    		}
    	}
    	var aas []*windows.IpAdapterAddresses
    	for aa := (*windows.IpAdapterAddresses)(unsafe.Pointer(&b[0])); aa != nil; aa = aa.Next {
    		aas = append(aas, aa)
    	}
    	return aas, nil
    }
    
    // If the ifindex is zero, interfaceTable returns mappings of all
    // network interfaces. Otherwise it returns a mapping of a specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/SingleDepthFilesFinderTest.groovy

            result as Set == expectedPaths.collect { tmpDir.file(it) } as Set
    
            where:
            depth | expectedPaths
            1     | ["a", "b"]
            2     | ["a/aa", "b/bb"]
            3     | ["a/aa/aaa", "b/bb/bbb"]
            4     | ["a/aa/aaa/1", "a/aa/aaa/2", "b/bb/bbb/3", "b/bb/bbb/4"]
            5     | []
        }
    
        def "applies filter"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_coverprofile_multipkg.txt

    func TestA(t *testing.T) {
    	if AFunc() != 42 {
    		t.Fatalf("bad!")
    	}
    }
    -- aa/aa.go --
    package aa
    
    import "M/it"
    
    func AA(y int) int {
    	c := it.Conc{}
    	x := it.Callee(&c)
    	println(x, y)
    	return 0
    }
    -- aa/aa_test.go --
    package aa
    
    import "testing"
    
    func TestMumble(t *testing.T) {
    	AA(3)
    }
    -- b/b.go --
    package b
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 17:02:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/regexp/syntax/simplify_test.go

    	{`a{0,2}`, `(?:aa?)?`},                             //       (aa?)?
    	{`a{0,4}`, `(?:a(?:a(?:aa?)?)?)?`},                 //   (a(a(aa?)?)?)?
    	{`a{2,6}`, `aa(?:a(?:a(?:aa?)?)?)?`},               // aa(a(a(aa?)?)?)?
    	{`a{0,}`, `a*`},
    	{`a{1,}`, `a+`},
    	{`a{2,}`, `aa+`},
    	{`a{5,}`, `aaaaa+`},
    
    	// Test that operators simplify their arguments.
    	{`(?:a{1,}){1,}`, `a+`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    	f.Fuzz(func(t *testing.T, b []byte) {
    		if string(b) != "aa" {
    			runtime.Goexit()
    		}
    	})
    }
    
    func FuzzWithFail(f *testing.F) {
    	f.Add([]byte("aa"))
    	f.Fuzz(func(t *testing.T, b []byte) {
    		if string(b) != "aa" {
    			t.Fail()
    		}
    	})
    }
    
    func FuzzWithLogFail(f *testing.F) {
    	f.Add([]byte("aa"))
    	f.Fuzz(func(t *testing.T, b []byte) {
    		if string(b) != "aa" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/SingleDepthFileAccessTrackerTest.groovy

                1 * journal.setLastAccessTime(it, _)
            }
            0 * _
    
            where:
            depth | touchedPaths
            1     | ["a", "b"]
            2     | ["a/aa", "b/bb"]
            3     | ["a/aa/aaa", "b/bb/bbb"]
            4     | ["a/aa/aaa/1", "b/bb/bbb/2"]
            5     | []
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/net/dnsconfig_windows.go

    	if err != nil {
    		return
    	}
    
    	for _, aa := range aas {
    		// Only take interfaces whose OperStatus is IfOperStatusUp(0x01) into DNS configs.
    		if aa.OperStatus != windows.IfOperStatusUp {
    			continue
    		}
    
    		// Only take interfaces which have at least one gateway
    		if aa.FirstGatewayAddress == nil {
    			continue
    		}
    
    		for dns := aa.FirstDnsServerAddress; dns != nil; dns = dns.Next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top