Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for n1 (0.01 sec)

  1. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

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

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

            String content = "word\\n1\n" + // word + n + 1
                    "word\\\n"; // word + (nothing after backslash)
    
            InputStream is = new ByteArrayInputStream(content.getBytes(StandardCharsets.UTF_8));
            stopwordsFile.reload(null, is);
    
            assertEquals(2, stopwordsFile.stopwordsItemList.size());
            // The content creates two lines: "word\n1" and "word\"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                    } catch (final IOException e) {
                        logger.warn("Failed to access groups/roles in AzureAD.", e);
                    }
                    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);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
Back to top