Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 455 for a$b (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/net/http/pattern_test.go

    		{"/{a}/a/", "/a/{z}/", "/ax/a/"},
    		{"/a/{z}/{x...}", "/{z}/b/{y...}", "/a/z/"},
    		{"/{z}/b/{y...}", "/a/{z}/{x...}", "/z/b/"},
    		{"/a/b/", "/a/b/c", "/a/b/"},
    		{"/a/b/{x...}", "/a/b/c", "/a/b/"},
    		{"/a/b/{x...}", "/a/b/c/d", "/a/b/"},
    		{"/a/b/{x...}", "/a/b/c/d/", "/a/b/"},
    		{"/a/{z}/{m...}", "/{z}/a/", "/a/z/"},
    		{"/{z}/a/", "/a/{z}/{m...}", "/z/a/"},
    		{"/{z}/{$}", "/a/", "/z/"},
    		{"/a/", "/{z}/{$}", "/a/x"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

            "HashSet<String>"                    | "['a', 'b', 'c'] as HashSet"              | "[a, b, c]"
            "LinkedHashSet<String>"              | "['a', 'b', 'c'] as LinkedHashSet"        | "[a, b, c]"
            "CopyOnWriteArraySet<String>"        | "['a', 'b', 'c'] as CopyOnWriteArraySet"  | "[a, b, c]"
            "TreeSet<String>"                    | "['a', 'b', 'c'] as TreeSet"              | "[a, b, c]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. src/path/filepath/path_test.go

    	{"a/b/c/d", "a/b/", "../.."},
    	{"a/b/c/d/", "a/b", "../.."},
    	{"a/b/c/d/", "a/b/", "../.."},
    	{"../../a/b", "../../a/b/c/d", "c/d"},
    	{"/a/b", "/a/b", "."},
    	{"/a/b/.", "/a/b", "."},
    	{"/a/b", "/a/b/.", "."},
    	{"/ab/cd", "/ab/cde", "../cde"},
    	{"/ab/cd", "/ab/c", "../c"},
    	{"/a/b", "/a/b/c/d", "c/d"},
    	{"/a/b", "/a/b/../c", "../c"},
    	{"/a/b/../c", "/a/b", "../b"},
    	{"/a/b/c", "/a/c/d", "../../c/d"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. test/codegen/comparisons.go

    	return a == b
    }
    
    func CompareArray3(a, b [3]int16) bool {
    	// amd64:`CMPL\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:`CMPW\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    func CompareArray4(a, b [12]int8) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:`CMPL\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. 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
    - 22.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            "HashSet<String>"                    | "['a', 'b', 'c'] as HashSet"              | "[a, b, c]"
            "LinkedHashSet<String>"              | "['a', 'b', 'c'] as LinkedHashSet"        | "[a, b, c]"
            "CopyOnWriteArraySet<String>"        | "['a', 'b', 'c'] as CopyOnWriteArraySet"  | "[a, b, c]"
            "TreeSet<String>"                    | "['a', 'b', 'c'] as TreeSet"              | "[a, b, c]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top