Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for AA (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    		},
    		"bd": ["d1", "d2"],
    		"aa": 1
    }`
    
    	var inlinedInlinedErrs = []string{
    		`unknown field "aa"`,
    	}
    
    	// combined tests everything together
    	var combinedData = `
    	{
    		"ia": {
    			"aa": 1,
    			"ab": "ab",
    			"unknownI": "foo"
    		},
    		"ha": {
    			"aa": 2,
    			"ab": "ab2",
    			"unknownH": "foo"
    		},
    		"ca":[
    			{
    				"aa":1,
    				"ab":"11",
    				"ac":true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractFirPluginPrototypeCompilerFacilityTestWithAnalysis.kt

    import org.jetbrains.kotlin.test.services.TestServices
    
    /**
     * The IDE can run analysis before calling CodeGen API. We found some cases that generate different FIR expressions between analysis
     * and CodeGen API. For example, AA generates `FirLiteralExpression` for an initializer of a property, while CodeGen API generates
     * `FirLazyExpression`. The difference can result in crashes. This class helps us test the IDE situation that first calls analysis
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top