- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 957 for creates (0.04 sec)
-
src/main/java/org/codelibs/fess/dict/DictionaryCreator.java
protected DictionaryManager dictionaryManager; /** * Creates a new DictionaryCreator with the specified pattern. * * @param pattern the regular expression pattern to match file paths */ protected DictionaryCreator(final String pattern) { this.pattern = Pattern.compile(pattern); } /** * Creates a dictionary file for the given path and timestamp if it matches this creator's pattern.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClIllegalStateException.java
private static final long serialVersionUID = -2154525994315946504L; /** * Creates a {@link ClIllegalStateException}. */ public ClIllegalStateException() { super(); } /** * Creates a {@link ClIllegalStateException}. * * @param message * Message */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/naming/InitialContextUtil.java
} /** * Creates and returns an initial context. * * @return the initial context */ public static InitialContext create() { try { return new InitialContext(); } catch (final NamingException ex) { throw new NamingRuntimeException(ex); } } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SchemaFactoryUtil.java
*/ protected SchemaFactoryUtil() { } /** * Creates a {@link SchemaFactory} for W3C XML Schema. * * @return a {@link SchemaFactory} for W3C XML Schema */ public static SchemaFactory newW3cXmlSchemaFactory() { return newW3cXmlSchemaFactory(false); } /** * Creates a {@link SchemaFactory} for W3C XML Schema. * * @param external
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/AbstractGraphBuilder.java
Optional<Integer> expectedNodeCount = Optional.absent(); /** * Creates a new instance with the specified edge directionality. * * @param directed if true, creates an instance for graphs whose edges are each directed; if * false, creates an instance for graphs whose edges are each undirected. */ AbstractGraphBuilder(boolean directed) { this.directed = directed;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/HashMultiset.java
@GwtCompatible public final class HashMultiset<E extends @Nullable Object> extends AbstractMapBasedMultiset<E> { /** Creates a new, empty {@code HashMultiset} using the default initial capacity. */ public static <E extends @Nullable Object> HashMultiset<E> create() { return new HashMultiset<>(); } /** * Creates a new, empty {@code HashMultiset} with the specified expected number of distinct * elements. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/HashBasedTable.java
} @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** Creates an empty {@code HashBasedTable}. */ public static <R, C, V> HashBasedTable<R, C, V> create() { return new HashBasedTable<>(new LinkedHashMap<R, Map<C, V>>(), new Factory<C, V>(0)); } /** * Creates an empty {@code HashBasedTable} with the specified map sizes. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/HashBasedTable.java
} @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** Creates an empty {@code HashBasedTable}. */ public static <R, C, V> HashBasedTable<R, C, V> create() { return new HashBasedTable<>(new LinkedHashMap<R, Map<C, V>>(), new Factory<C, V>(0)); } /** * Creates an empty {@code HashBasedTable} with the specified map sizes. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
} /** * Creates a GET request for the specified path. * @param path the request path * @return the configured CurlRequest */ public CurlRequest get(final String path) { return request(Method.GET, path).header("Content-Type", "application/json"); } /** * Creates a POST request for the specified path. * @param path the request path
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/AsyncEventBus.java
* allowing dispatch to occur asynchronously. * * @author Cliff Biffle * @since 10.0 */ public class AsyncEventBus extends EventBus { /** * Creates a new AsyncEventBus that will use {@code executor} to dispatch events. Assigns {@code * identifier} as the bus's name for logging purposes. * * @param identifier short name for the bus, for logging purposes.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.5K bytes - Viewed (0)