Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,938 for a$b (0.04 sec)

  1. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/ExternalResourceNameTest.groovy

            "/a/b/c"                 | "/z"           | "/z"
            "a/b/c"                  | "/z"           | "/z"
            "a/b/c"                  | "/"            | "/"
            "/"                      | "/a/b/c"       | "/a/b/c"
            ""                       | "/a/b/c"       | "/a/b/c"
            "//host"                 | "/a/b//c"      | "//host/a/b/c"
            "//host/a/b/c"           | "/z"           | "//host/z"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternMatcherFactoryTest.java

            assertThat(matcher, matchesDir());
            assertThat(matcher, matchesDir("a", "b"));
            assertThat(matcher, matchesDir("c", "a", "b"));
            assertThat(matcher, matchesDir("a", "b", "c"));
            assertThat(matcher, matchesDir("c", "a", "b", "d"));
            assertThat(matcher, matchesDir("a", "b", "a", "b"));
            assertThat(matcher, matchesDir("a"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            declaredReplacements 'a->b'
            expect:
            resolvedModules 'b'
        }
    
        def "uses highest when it is last"() {
            declaredDependencies 'b', 'a', 'b:2'
            declaredReplacements 'a->b'
            expect:
            resolvedModules 'b:2'
        }
    
        def "uses highest when it is last following replacedBy"() {
            declaredDependencies 'a', 'b', 'b:2'
            declaredReplacements 'a->b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java

        assertEquals(c, ImmutableMultiset.of("a", "b", "a"));
        assertEquals(c, ImmutableMultiset.of("a", "a", "b"));
        assertThat(c).isNotEqualTo(ImmutableMultiset.of("a", "b"));
        assertThat(c).isNotEqualTo(ImmutableMultiset.of("a", "b", "c", "d"));
      }
    
      public void testIterationOrder() {
        Collection<String> c = ImmutableMultiset.of("a", "b", "a");
        assertThat(c).containsExactly("a", "a", "b").inOrder();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 25K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CookieTest.kt

      }
    
      @Test fun emptySameSite() {
        assertThat(parse(url, "a=b; SameSite=")!!.sameSite).isEqualTo("")
        assertThat(parse(url, "a=b; SameSite= ")!!.sameSite).isEqualTo("")
        assertThat(parse(url, "a=b; SameSite=\r\t \n")!!.sameSite).isEqualTo("")
      }
    
      @Test fun spaceInSameSite() {
        assertThat(parse(url, "a=b; SameSite=a b")!!.sameSite).isEqualTo("a b")
      }
    
      @Test fun trimLeadingAndTrailingWhitespaceFromSameSite() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top