Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 337 for valueOf (0.12 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            value = "ja-JP";
            assertEquals("ja", systemHelper.normalizeLang(value));
    
            value = "ja_JP";
            assertEquals("ja", systemHelper.normalizeLang(value));
    
            value = "ja_JP_AAA";
            assertEquals("ja", systemHelper.normalizeLang(value));
    
            value = "zh";
            assertEquals("zh", systemHelper.normalizeLang(value));
    
            value = "zh-cn";
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            CommonPoolUtil.execute(this::load);
        }
    
        protected void load() {
            final String value = System.getProperty("rank.fusion.searchers");
            if (StringUtil.isBlank(value)) {
                availableSearcherNameSet = Collections.emptySet();
            } else {
                availableSearcherNameSet = StreamUtil.split(value, ",")
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

          assertEquals(WARMUP_SIZE, values.size());
          for (int i = WARMUP_MIN; i < WARMUP_MAX; i++) {
            Object value = warmed.get(i - WARMUP_MIN).getValue();
            assertTrue(values.contains(value));
            assertTrue(values.remove(value));
            assertFalse(values.remove(value));
            assertFalse(values.contains(value));
          }
          checkEmpty(values);
          checkEmpty(cache);
        }
      }
    
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 02 18:21:29 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            joiner.setEmptyValue("");
            for (Path p : paths) {
                joiner.add(p.toString());
            }
            String value = joiner.toString();
            if (value.isEmpty()) {
                return new String[0];
            }
            return new String[] {option, value};
        }
    
        /**
         * {@return a string representation of this path type for debugging purposes}.
         */
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

                The values are taken from the {@code properties} element and from the
                properties in the files listed in the {@code filters} element. Note: While the type
                of this field is {@code String} for technical reasons, the semantic type is actually
                {@code Boolean}. Default value is {@code false}.
              </description>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                final String key = e.getKey();
                Object value = e.getValue();
                if (value == null) {
                    value = StringUtil.EMPTY;
                }
                if (value instanceof String || value == null) {
                    return new Pair<>(key, value);
                }
                if (arrayFieldSet.contains(key)) {
                    if (value instanceof String[]) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        tasksFinished.await();
    
        // Check all of the removal notifications we received: they should have had correctly-associated
        // keys and values. (An earlier bug saw removal notifications for in-progress computations,
        // which had real keys with null values.)
        Map<String, String> removalNotifications = Maps.newHashMap();
        for (RemovalNotification<String, String> notification : listener) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 15:00:32 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. okhttp/api/okhttp.api

    	public static final field IPV6 Lokhttp3/AsyncDns$DnsClass;
    	public static fun getEntries ()Lkotlin/enums/EnumEntries;
    	public final fun getType ()I
    	public static fun valueOf (Ljava/lang/String;)Lokhttp3/AsyncDns$DnsClass;
    	public static fun values ()[Lokhttp3/AsyncDns$DnsClass;
    }
    
    public abstract interface class okhttp3/Authenticator {
    	public static final field Companion Lokhttp3/Authenticator$Companion;
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

        assertEquals(24, mmHeap.size());
        assertTrue("Heap is not intact after remove()", mmHeap.isIntact());
        values.removeAll(Lists.newArrayList(2));
        assertEquals(values.size(), mmHeap.size());
        assertTrue(values.containsAll(mmHeap));
        assertTrue(mmHeap.containsAll(values));
      }
    
      public void testIteratorInvalidatingIteratorRemove() {
        MinMaxPriorityQueue<Integer> mmHeap = MinMaxPriorityQueue.create();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        public String normalizeHtmlLang(final String value) {
            final String defaultLang = ComponentUtil.getFessConfig().getCrawlerDocumentHtmlDefaultLang();
            if (StringUtil.isNotBlank(defaultLang)) {
                return defaultLang;
            }
    
            return normalizeLang(value);
        }
    
        public String normalizeLang(final String value) {
            if (StringUtil.isBlank(value)) {
                return null;
            }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top