Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 540 for specifiers (0.06 sec)

  1. src/main/java/org/codelibs/fess/query/QueryCommand.java

         * @return The query processor instance.
         */
        protected QueryProcessor getQueryProcessor() {
            return ComponentUtil.getQueryProcessor();
        }
    
        /**
         * Creates a sort builder for the specified field and order.
         * @param field The field name to sort by.
         * @param order The sort order (ascending or descending).
         * @return The appropriate sort builder for the field.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/DynamicProperties.java

        /**
         * The properties instance.
         */
        protected volatile Properties properties;
    
        /**
         * Constructs a {@code DynamicProperties} instance with the specified file path.
         *
         * @param path
         *            The path to the properties file. If {@code null}, a {@link FileAccessException} is thrown.
         * @throws FileAccessException
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/storage/UploadForm.java

    public class UploadForm {
    
        /**
         * The storage path where the file should be uploaded.
         * If not specified, the file will be stored in the default location.
         */
        public String path;
    
        /**
         * The multipart file to be uploaded to the storage system.
         * This file will be stored in the specified path or default location.
         */
        @Required
        public MultipartFormFile file;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/TopKSelector.java

    import org.jspecify.annotations.Nullable;
    
    /**
     * An accumulator that selects the "top" {@code k} elements added to it, relative to a provided
     * comparator. "Top" can mean the greatest or the lowest elements, specified in the factory used to
     * create the {@code TopKSelector} instance.
     *
     * <p>If your input data is available as a {@link Stream}, prefer passing {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableList.java

      }
    
      /**
       * Returns a new builder, expecting the specified number of elements to be added.
       *
       * <p>If {@code expectedSize} is exactly the number of elements added to the builder before {@link
       * Builder#build} is called, the builder is likely to perform better than an unsized {@link
       * #builder()} would have.
       *
       * <p>It is not specified if any performance benefits apply if {@code expectedSize} is close to,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Booleans.java

       */
      @InlineMe(replacement = "Boolean.hashCode(value)")
      public static int hashCode(boolean value) {
        return Boolean.hashCode(value);
      }
    
      /**
       * Compares the two specified {@code boolean} values in the standard way ({@code false} is
       * considered less than {@code true}). The sign of the value returned is the same as that of
       * {@code ((Boolean) a).compareTo(b)}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Booleans.java

       */
      @InlineMe(replacement = "Boolean.hashCode(value)")
      public static int hashCode(boolean value) {
        return Boolean.hashCode(value);
      }
    
      /**
       * Compares the two specified {@code boolean} values in the standard way ({@code false} is
       * considered less than {@code true}). The sign of the value returned is the same as that of
       * {@code ((Boolean) a).compareTo(b)}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/ResourceUtil.java

                return Paths.get(targetWebInfBase, names);
            }
            return Paths.get(webinfBase, names);
        }
    
        /**
         * Gets JAR files from the WEB-INF/lib directory that start with the specified prefix.
         *
         * @param namePrefix the prefix that JAR file names should start with
         * @return an array of File objects representing matching JAR files, or empty array if none found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ArrayListMultimap.java

          ArrayListMultimap<K, V> create() {
        return new ArrayListMultimap<>();
      }
    
      /**
       * Constructs an empty {@code ArrayListMultimap} with enough capacity to hold the specified
       * numbers of keys and values without resizing.
       *
       * <p>You may also consider the equivalent {@code
       * MultimapBuilder.hashKeys(expectedKeys).arrayListValues(expectedValuesPerKey).build()}, which
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/ThreadUtil.java

        /**
         * Do not instantiate.
         */
        protected ThreadUtil() {
        }
    
        /**
         * Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds.
         *
         * @param millis
         *            the length of time to sleep in milliseconds
         * @throws InterruptedRuntimeException
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.3K bytes
    - Viewed (0)
Back to top