Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 581 for a$b (0.16 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. 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)
  5. 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)
  6. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

            where:
            elements << [["a"], ["a", "b"]]
        }
    
        def "has a nice toString method"() {
            expect:
            PersistentList.of().toString() == "Nil"
            PersistentList.of("a").toString() == "a"
            PersistentList.of("a", "b").toString() == "a : b"
            PersistentList.of("a", "b", "c").toString() == "a : b : c"
            PersistentList.of("a", "b", "c", "d").toString() == "a : b : c : d"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/net/http/routing_tree_test.go

    	}
    
    	test(getTestTree(), []testCase{
    		{"GET", "", "/a", "/a", nil},
    		{"Get", "", "/b", "", nil},
    		{"Get", "", "/a/b", "/a/b", nil},
    		{"Get", "", "/a/c", "/a/{x}", []string{"c"}},
    		{"Get", "", "/a/b/", "/a/b/{$}", nil},
    		{"Get", "", "/a/b/c", "/a/b/{y}", []string{"c"}},
    		{"Get", "", "/a/b/c/d", "/a/b/{x...}", []string{"c/d"}},
    		{"Get", "", "/g/h/i", "/g/h/i", nil},
    		{"Get", "", "/g/h/j", "/g/{x}/j", []string{"h"}},
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K 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. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

        @Rule
        public final BlockingHttpServer blockingServer = new BlockingHttpServer()
    
        def setup() {
            blockingServer.start()
    
            createDirs("a", "b", "c")
            settingsFile << """
                include 'a', 'b', 'c'
            """
            buildFile << """
                allprojects {
                    task ping {
                        def projectName = project.name
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. 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)
Back to top