Search Options

Results per page
Sort
Preferred Languages
Advance

Results 551 - 558 of 558 for getNamer (0.07 sec)

  1. android/guava/src/com/google/common/cache/CacheBuilder.java

          };
    
      // We use a holder class to delay initialization: https://github.com/google/guava/issues/6566
      private static final class LoggerHolder {
        static final Logger logger = Logger.getLogger(CacheBuilder.class.getName());
      }
    
      static final int UNSET_INT = -1;
    
      boolean strictParsing = true;
    
      int initialCapacity = UNSET_INT;
      int concurrencyLevel = UNSET_INT;
      long maximumSize = UNSET_INT;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

        // present interfaces)
        NetworkInterface scopedInterface = ip.getScopedInterface();
        if (scopedInterface != null) {
          return "%" + scopedInterface.getName();
        }
        int scope = ip.getScopeId();
        if (scope != 0) {
          return "%" + scope;
        }
        return "";
      }
    
      /**
       * Identify and mark the longest run of zeroes in an IPv6 address.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                if (aliasConfigDir.isDirectory()) {
                    stream(aliasConfigDir.listFiles((dir, name) -> name.endsWith(".json"))).of(stream -> stream.forEach(f -> {
                        String aliasName = f.getName().replaceFirst(".json$", "");
                        if (index.equals(DOC_INDEX)) {
                            if ("fess.search".equals(aliasName)) {
                                aliasName = fessConfig.getIndexDocumentSearchIndex();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            .testEquals();
      }
    
      // T is used inside to test type variable
      public <T> void testToString() {
        assertEquals(String.class.getName(), new TypeToken<String>() {}.toString());
        assertEquals("T", TypeToken.of(new TypeCapture<T>() {}.capture()).toString());
        assertEquals("java.lang.String", new Entry<String, Integer>() {}.keyType().toString());
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 21:13:09 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

          };
    
      // We use a holder class to delay initialization: https://github.com/google/guava/issues/6566
      private static final class LoggerHolder {
        static final Logger logger = Logger.getLogger(CacheBuilder.class.getName());
      }
    
      static final int UNSET_INT = -1;
    
      boolean strictParsing = true;
    
      int initialCapacity = UNSET_INT;
      int concurrencyLevel = UNSET_INT;
      long maximumSize = UNSET_INT;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            .testEquals();
      }
    
      // T is used inside to test type variable
      public <T> void testToString() {
        assertEquals(String.class.getName(), new TypeToken<String>() {}.toString());
        assertEquals("T", TypeToken.of(new TypeCapture<T>() {}.capture()).toString());
        assertEquals("java.lang.String", new Entry<String, Integer>() {}.keyType().toString());
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 21:13:09 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  7. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/internal/http2/Hpack$Reader;-><init>(Lokio/Source;III)V
    HSPLokhttp3/internal/http2/Hpack$Reader;->evictToRecoverBytes(I)I
    HSPLokhttp3/internal/http2/Hpack$Reader;->getName(I)Lokio/ByteString;
    HSPLokhttp3/internal/http2/Hpack$Reader;->insertIntoDynamicTable(ILokhttp3/internal/http2/Header;)V
    HSPLokhttp3/internal/http2/Hpack$Reader;->readByteString()Lokio/ByteString;
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
      static final Logger logger = Logger.getLogger(LocalCache.class.getName());
    
      /**
       * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
       * the segment.
       */
      final int segmentMask;
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top