Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for defaults (0.21 sec)

  1. guava-tests/test/com/google/common/collect/MapsTest.java

        // Test loading system properties
        result = Maps.fromProperties(System.getProperties());
        assertTrue(result.containsKey("java.version"));
    
        // Test that defaults work, too.
        testProp = new Properties(System.getProperties());
        String override = "test\njava.version : hidden";
    
        testProp.load(new StringReader(override));
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:06:01 GMT 2024
    - 67.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/MapsTest.java

        // Test loading system properties
        result = Maps.fromProperties(System.getProperties());
        assertTrue(result.containsKey("java.version"));
    
        // Test that defaults work, too.
        testProp = new Properties(System.getProperties());
        String override = "test\njava.version : hidden";
    
        testProp.load(new StringReader(override));
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 04 16:06:01 GMT 2024
    - 64.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

       * SPACE_SEPARATOR, LINE_SEPARATOR, PARAGRAPH_SEPARATOR, CONTROL, FORMAT, SURROGATE, and
       * PRIVATE_USE according to ICU4J.
       *
       * <p>See also the Unicode Default_Ignorable_Code_Point property (available via ICU).
       *
       * @deprecated Most invisible characters are supplementary characters; see the class
       *     documentation.
       * @since 19.0 (since 1.0 as constant {@code INVISIBLE})
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(2, ((List<?>) pom.getValue("build/plugins[1]/executions")).size());
            assertEquals("child-default", pom.getValue("build/plugins[1]/executions[@id='default']/phase"));
            assertEquals("child-non-default", pom.getValue("build/plugins[1]/executions[@id='non-default']/phase"));
        }
    
        /* MNG-3938 */
        @Test
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          }
        },
    
        WEAK {
          @Override
          Equivalence<Object> defaultEquivalence() {
            return Equivalence.identity();
          }
        };
    
        /**
         * Returns the default equivalence strategy used to compare and hash keys or values referenced
         * at this strength. This strategy will be used unless the user explicitly specifies an
         * alternate strategy.
         */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public Plugin getPlugin(String pluginKey) {
            return getBuild().getPluginsAsMap().get(pluginKey);
        }
    
        /**
         * Default toString
         */
        @Override
        public String toString() {
            StringBuilder sb = new StringBuilder(128);
            sb.append("MavenProject: ");
            sb.append(getGroupId());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setDefaultSortValue(final String value) {
            setSystemProperty(Constants.DEFAULT_SORT_VALUE_PROPERTY, value);
            propMap.remove(DEFAULT_SORT_VALUES);
        }
    
        default String getDefaultSortValue() {
            return getSystemProperty(Constants.DEFAULT_SORT_VALUE_PROPERTY, StringUtil.EMPTY);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/CopyUtil.java

     * どのメソッドも発生した{@link IOException}は{@link IORuntimeException}にラップしてスローされます。
     * </p>
     *
     * @author koichik
     */
    public abstract class CopyUtil {
    
        /** コピーで使用するバッファサイズ */
        protected static final int DEFAULT_BUF_SIZE = 4096;
    
        // ////////////////////////////////////////////////////////////////
        // from InputStream to OutputStream
        //
        /**
         * 入力ストリームから出力ストリームへコピーします。
         * <p>
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 52.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheBuilder.java

    public final class CacheBuilder<K, V> {
      private static final int DEFAULT_INITIAL_CAPACITY = 16;
      private static final int DEFAULT_CONCURRENCY_LEVEL = 4;
    
      @SuppressWarnings("GoodTime") // should be a java.time.Duration
      private static final int DEFAULT_EXPIRATION_NANOS = 0;
    
      @SuppressWarnings("GoodTime") // should be a java.time.Duration
      private static final int DEFAULT_REFRESH_NANOS = 0;
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

            // requireNonNull is safe because the first `size` elements have been filled in.
            Entry<K, V> onlyEntry = requireNonNull(entryArray[0]);
            return of(comparator, onlyEntry.getKey(), onlyEntry.getValue());
          default:
            Object[] keys = new Object[size];
            Object[] values = new Object[size];
            if (sameComparator) {
              // Need to check for nulls, but don't need to sort or validate.
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 53.2K bytes
    - Viewed (0)
Back to top