Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for N2 (0.02 sec)

  1. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

        assertThat(network.adjacentNodes(N2)).isEmpty();
        assertThat(network.predecessors(N2)).isEmpty();
        assertThat(network.successors(N2)).isEmpty();
        assertThat(network.incidentEdges(N2)).isEmpty();
        assertThat(network.inEdges(N2)).isEmpty();
        assertThat(network.outEdges(N2)).isEmpty();
        assertThat(network.adjacentNodes(N4)).isEmpty();
        assertThat(network.predecessors(N4)).isEmpty();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/MoreObjectsTest.java

      public void testFirstNonNull_withNonNull() {
        String s1 = "foo";
        String s2 = MoreObjects.firstNonNull(s1, "bar");
        assertSame(s1, s2);
    
        Long n1 = 42L;
        Long n2 = MoreObjects.firstNonNull(null, n1);
        assertSame(n1, n2);
    
        Boolean b1 = true;
        Boolean b2 = MoreObjects.firstNonNull(b1, null);
        assertSame(b1, b2);
      }
    
      public void testFirstNonNull_throwsNullPointerException() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

        }
    
        public void test_unescape() throws Exception {
            // Test with escaped characters (backslash sequences)
            String content = "test\\t1\n" + // escaped tab sequence
                    "test\\n2\n" + // escaped newline sequence
                    "test3\n"; // no escape
    
            // Write content to test file
            writeTestFile(content);
    
            // Reload the file
            protwordsFile.reload(null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            TypeToken.of(new TypeCapture<N1>() {}.capture()));
        assertNotAssignable(
            TypeToken.of(new TypeCapture<N2>() {}.capture()),
            TypeToken.of(new TypeCapture<N1>() {}.capture()));
      }
    
      public <N1 extends Number, N2 extends Number, N11 extends N1>
          void testisSupertypeOf_equalWildcardTypes() {
        assertAssignable(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            TypeToken.of(new TypeCapture<N1>() {}.capture()));
        assertNotAssignable(
            TypeToken.of(new TypeCapture<N2>() {}.capture()),
            TypeToken.of(new TypeCapture<N1>() {}.capture()));
      }
    
      public <N1 extends Number, N2 extends Number, N11 extends N1>
          void testisSupertypeOf_equalWildcardTypes() {
        assertAssignable(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                    }
                    return new Pair<>(groupList.stream().distinct().toArray(n1 -> new String[n1]),
                            roleList.stream().distinct().toArray(n2 -> new String[n2]));
                });
            } catch (final ExecutionException e) {
                logger.warn("Failed to process a group cache.", e);
                return new Pair<>(StringUtil.EMPTY_STRINGS, StringUtil.EMPTY_STRINGS);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  7. src/bytes/bytes_test.go

    	{" ", nil},
    	{"\u3000 ", nil},
    	{" \u3000", nil},
    	{" \t\r\n \t\t\r\r\n\n ", nil},
    	{" \t\r\n x\t\t\r\r\n\n ", []byte("x")},
    	{" \u2000\t\r\n x\t\t\r\r\ny\n \u3000", []byte("x\t\t\r\r\ny")},
    	{"1 \t\r\n2", []byte("1 \t\r\n2")},
    	{" x\x80", []byte("x\x80")},
    	{" x\xc0", []byte("x\xc0")},
    	{"x \xc0\xc0 ", []byte("x \xc0\xc0")},
    	{"x \xc0", []byte("x \xc0")},
    	{"x \xc0 ", []byte("x \xc0")},
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Jul 28 18:13:58 UTC 2025
    - 62.9K bytes
    - Viewed (0)
  8. doc/go_spec.html

    Examples:
    </p>
    
    <pre>
    var a = [...]int{0, 1, 2, 3, 4, 5, 6, 7}
    var s = make([]int, 6)
    var b = make([]byte, 5)
    n1 := copy(s, a[0:])            // n1 == 6, s is []int{0, 1, 2, 3, 4, 5}
    n2 := copy(s, s[2:])            // n2 == 4, s is []int{2, 3, 4, 5, 4, 5}
    n3 := copy(b, "Hello, World!")  // n3 == 5, b is []byte("Hello")
    </pre>
    
    
    <h3 id="Clear">Clear</h3>
    
    <p>
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 06 19:12:15 UTC 2025
    - 286.2K bytes
    - Viewed (0)
Back to top