Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,120 for a$b (0.06 sec)

  1. src/syscall/fs_wasip1_test.go

    	19: {"/", "/../a/b/c", "/a/b/c"},
    	20: {"/", "./hello/world", "/hello/world"},
    	21: {"/a", "../", "/"},
    	22: {"/a/b/c", "..", "/a/b"},
    	23: {"/a/b/c", "..///..///", "/a/"},
    	24: {"/a/b/c", "..///..///..", "/"},
    	25: {"/a/b/c", "..///..///..///..", "/"},
    	26: {"/a/b/c", "..///..///..///..///..", "/"},
    	27: {"/a/b/c/", "/d/e/f/", "/a/b/c/d/e/f/"},
    	28: {"a/b/c/", ".", "a/b/c"},
    	29: {"a/b/c/", "./d", "a/b/c/d"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelPathTest.groovy

            !ModelPath.ROOT.isDirectChild(ModelPath.path("a.b"))
    
            ModelPath.path("a.b").isDirectChild(ModelPath.path("a.b.c"))
            !ModelPath.path("a.b").isDirectChild(ModelPath.path("a.b.c.d"))
            !ModelPath.path("a.b").isDirectChild(ModelPath.path("a.a.b"))
            !ModelPath.path("a.b").isDirectChild(ModelPath.path("a.b"))
            !ModelPath.path("a.b").isDirectChild(ModelPath.path("a"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/src/test/kotlin/org/gradle/kotlin/dsl/tooling/builders/CommonListPrefixTest.kt

            val a = listOf("a", "b", "c")
            val b = listOf("a", "b", "c")
    
            assertThat(
                commonPrefixOf(listOf(a, b)),
                equalTo(listOf("a", "b", "c"))
            )
        }
    
        @Test
        fun `common is empty for different prefix`() {
    
            val a = listOf("0", "a", "b", "c")
            val b = listOf("1", "a", "b", "c")
    
            assertThat(
                commonPrefixOf(listOf(a, b)),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/pgo/devirtualize/mult.pkg/mult.go

    package mult
    
    var sink int
    
    type Multiplier interface {
    	Multiply(a, b int) int
    }
    
    type Mult struct{}
    
    func (Mult) Multiply(a, b int) int {
    	for i := 0; i < 1000; i++ {
    		sink++
    	}
    	return a * b
    }
    
    type NegMult struct{}
    
    func (NegMult) Multiply(a, b int) int {
    	for i := 0; i < 1000; i++ {
    		sink++
    	}
    	return -1 * a * b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue62157.go

    	// channel lead to the correct (named) directional
    	// channel.
    	B = f(a, b)
    	B = f(a, B)
    	B = f(b, a)
    	B = f(B, a)
    
    	B = f(a, b, B)
    	B = f(a, B, b)
    	B = f(b, B, a)
    	B = f(b, a, B)
    	B = f(B, a, b)
    	B = f(B, b, a)
    
    	// verify type error
    	A = f /* ERROR "cannot use f(B, b, a) (value of type namedB) as namedA value in assignment" */ (B, b, a)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 23:22:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/testdata/testbranch/branch_test.go

    func testGoBGE(a, b int64) bool  { return a >= b }
    func testGoBGEU(a, b int64) bool { return uint64(a) >= uint64(b) }
    func testGoBGT(a, b int64) bool  { return a > b }
    func testGoBGTU(a, b int64) bool { return uint64(a) > uint64(b) }
    func testGoBLE(a, b int64) bool  { return a <= b }
    func testGoBLEU(a, b int64) bool { return uint64(a) <= uint64(b) }
    func testGoBLT(a, b int64) bool  { return a < b }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 21:56:43 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtDiagnosticConverter.kt

            conversions[diagnostic] = creator
        }
    
        fun <A, B> add(diagnostic: KtDiagnosticFactory2<A, B>, creator: KaFirDiagnostic2Creator<A, B>) {
            conversions[diagnostic] = creator
        }
    
        fun <A, B, C> add(diagnostic: KtDiagnosticFactory3<A, B, C>, creator: KaFirDiagnostic3Creator<A, B, C>) {
            conversions[diagnostic] = creator
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcherTest.groovy

            where:
            expectedLines           | actualLines
            ["a", "b", "c"]         | ["a", "b", "c"]
            ["a"]                   | ["a", "b"]
            ["a"]                   | ["b", "a"]
            ["a"]                   | ["b", "a", "c"]
            ["b", "c"]              | ["a", "b", "c", "d"]
            ["b", "c"]              | ["a", "b", "c", "d", "b", "c", "e"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/runtime/hash32.go

    	a, b := mix32(uint32(seed), uint32(4^hashkey[0]))
    	t := readUnaligned32(p)
    	a ^= t
    	b ^= t
    	a, b = mix32(a, b)
    	a, b = mix32(a, b)
    	return uintptr(a ^ b)
    }
    
    func memhash64Fallback(p unsafe.Pointer, seed uintptr) uintptr {
    	a, b := mix32(uint32(seed), uint32(8^hashkey[0]))
    	a ^= readUnaligned32(p)
    	b ^= readUnaligned32(add(p, 4))
    	a, b = mix32(a, b)
    	a, b = mix32(a, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. src/crypto/md5/md5block.go

    		d = a + bits.RotateLeft32((a^b^c)+d+x4+0x4bdecfa9, 11)
    		c = d + bits.RotateLeft32((d^a^b)+c+x7+0xf6bb4b60, 16)
    		b = c + bits.RotateLeft32((c^d^a)+b+xa+0xbebfbc70, 23)
    		a = b + bits.RotateLeft32((b^c^d)+a+xd+0x289b7ec6, 4)
    		d = a + bits.RotateLeft32((a^b^c)+d+x0+0xeaa127fa, 11)
    		c = d + bits.RotateLeft32((d^a^b)+c+x3+0xd4ef3085, 16)
    		b = c + bits.RotateLeft32((c^d^a)+b+x6+0x04881d05, 23)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top