- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 693 for specifiers (0.06 seconds)
-
guava/src/com/google/common/collect/Comparators.java
} /** * Returns {@code true} if each element in {@code iterable} after the first is greater than or * equal to the element that preceded it, according to the specified comparator. Note that this is * always true when the iterable has fewer than two elements. */ public static <T extends @Nullable Object> boolean isInOrder(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 10.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/LinkedHashMultiset.java
public static <E extends @Nullable Object> LinkedHashMultiset<E> create() { return create(ObjectCountHashMap.DEFAULT_SIZE); } /** * Creates a new, empty {@code LinkedHashMultiset} with the specified expected number of distinct * elements. * * @param distinctElements the expected number of distinct elements * @throws IllegalArgumentException if {@code distinctElements} is negative */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 2.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/DataStoreException.java
/** * Creates a new DataStoreException with the specified message and cause. * * @param message the error message * @param cause the underlying cause of this exception */ public DataStoreException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a new DataStoreException with the specified message. * * @param message the error messageCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/curl/CurlException.java
* </pre> * * @see RuntimeException */ public class CurlException extends RuntimeException { private static final long serialVersionUID = 1L; /** * Constructs a new CurlException with the specified detail message and cause. * * @param message the detail message (which is saved for later retrieval by the {@link #getMessage()} method).Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Jul 05 01:38:18 GMT 2025 - 2K bytes - Click Count (0) -
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
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Aug 31 13:15:26 GMT 2025 - 11.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/JobProcessingException.java
/** * Constructs a new JobProcessingException with the specified cause. * * @param e the cause of the exception */ public JobProcessingException(final Throwable e) { super(e); } /** * Constructs a new JobProcessingException with the specified detail message and cause. * * @param message the detail message explaining the exceptionCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
* For other types, the converted object is created from the string representation of the source object. * </p> * <p> * If no pattern is specified, the pattern used for conversion depends on the locale as follows: * </p> * <table border="1"> * <caption>Conversion Patterns</caption> * <tr> * <th>Category</th> * <th>Pattern</th>
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 19.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/GeneralRange.java
} /** Returns the whole range relative to the specified comparator. */ static <T extends @Nullable Object> GeneralRange<T> all(Comparator<? super T> comparator) { return new GeneralRange<>(comparator, false, null, OPEN, false, null, OPEN); } /** * Returns everything above the endpoint relative to the specified comparator, with the specified * endpoint behavior. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 10.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmException.java
private final String errorCode; /** * Creates a new exception with the specified message. * * @param message the error message */ public LlmException(final String message) { super(message); errorCode = ERROR_UNKNOWN; } /** * Creates a new exception with the specified message and cause. * * @param message the error messageCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 3.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ObjectCountHashMap.java
this.size = newSize; if (newEntryIndex >= threshold) { resizeTable(2 * table.length); } modCount++; return 0; } /** * Creates a fresh entry with the specified object at the specified position in the entry array. */ void insertEntry(int entryIndex, @ParametricNullness K key, int value, int hash) { this.entries[entryIndex] = ((long) hash << 32) | (NEXT_MASK & UNSET);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 14.5K bytes - Click Count (0)