Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 702 for a$b (0.05 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. guava-tests/test/com/google/common/collect/ImmutableListTest.java

        List<String> list = ImmutableList.of("a", "b");
        assertEquals(Lists.newArrayList("a", "b"), list);
      }
    
      public void testCreation_threeElements() {
        List<String> list = ImmutableList.of("a", "b", "c");
        assertEquals(Lists.newArrayList("a", "b", "c"), list);
      }
    
      public void testCreation_fourElements() {
        List<String> list = ImmutableList.of("a", "b", "c", "d");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

        assertThat(c).isNotEqualTo(ImmutableSortedMultiset.of("a", "b"));
        assertThat(c).isNotEqualTo(ImmutableSortedMultiset.of("a", "b", "c", "d"));
      }
    
      public void testIterationOrder() {
        Collection<String> c = ImmutableSortedMultiset.of("a", "b", "a");
        assertThat(c).containsExactly("a", "a", "b").inOrder();
      }
    
      public void testMultisetWrites() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/MultisetsTest.java

      }
    
      public void testSumEmptyNonempty() {
        Multiset<String> ms1 = HashMultiset.create();
        Multiset<String> ms2 = HashMultiset.create(Arrays.asList("a", "b", "a"));
        assertThat(Multisets.sum(ms1, ms2)).containsExactly("a", "b", "a");
      }
    
      public void testSumNonemptyEmpty() {
        Multiset<String> ms1 = HashMultiset.create(Arrays.asList("a", "b", "a"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

                }
            """
            resolve.expectDefaultConfiguration("compile")
            resolve.prepare()
        }
    
        def "artifact file may have no extension"() {
            createDirs("a", "b")
            settingsFile << "include 'a', 'b'"
            buildFile << """
                project(':a') {
                    artifacts {
                        compile file("foo")
                        compile file("foo.txt")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/arith_test.go

    	return a - b>>3
    }
    
    //go:noinline
    func rsbshiftRL_ssa(a, b uint32) uint32 {
    	return a>>3 - b
    }
    
    //go:noinline
    func andshiftRL_ssa(a, b uint32) uint32 {
    	return a & (b >> 3)
    }
    
    //go:noinline
    func orshiftRL_ssa(a, b uint32) uint32 {
    	return a | b>>3
    }
    
    //go:noinline
    func xorshiftRL_ssa(a, b uint32) uint32 {
    	return a ^ b>>3
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
Back to top