- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 1,214 for creators (0.06 seconds)
-
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 pathCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 6.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* <ul> * <li>{@link #suggest()}: Creates a new SuggestRequestBuilder for querying suggestions.</li> * <li>{@link #popularWords()}: Creates a new PopularWordsRequestBuilder for querying popular words.</li> * <li>{@link #refresh()}: Refreshes the suggestion indices.</li> * <li>{@link #shutdown()}: Shuts down the thread pool.</li> * <li>{@link #createIndexIfNothing()}: Creates a new index if no index exists.</li>
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 21.6K bytes - Click Count (3) -
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 externalCreated: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 3K bytes - Click Count (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;
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 1.4K bytes - Click Count (0) -
src/main/resources/my_creator.xml
<!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <include path="convention.xml"/> <component name="pagerCreator" class="org.codelibs.fess.mylasta.creator.PagerCreator"/>
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Oct 03 14:03:30 GMT 2015 - 296 bytes - Click Count (0) -
src/main/java/org/codelibs/curl/Curl.java
} /** * Creates a new CurlRequest with the HTTP PUT method for the specified URL. * * @param url the URL to which the PUT request will be sent * @return a new CurlRequest object configured with the PUT method and the specified URL */ public static CurlRequest put(final String url) { return new CurlRequest(Method.PUT, url); } /**Created: Sat Dec 20 09:13:53 GMT 2025 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 5.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/ClSQLException.java
private final String sql; /** * Creates a {@link ClSQLException}. * * @param messageCode * Message code * @param args * Array of arguments */ public ClSQLException(final String messageCode, final Object[] args) { this(messageCode, args, null, 0, null, null); } /** * Creates a {@link ClSQLException}. *Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 5.4K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/ClUnsupportedOperationException.java
private static final long serialVersionUID = -6732367317955522602L; /** * Creates a {@link ClUnsupportedOperationException}. */ public ClUnsupportedOperationException() { } /** * Creates a {@link ClUnsupportedOperationException}. * * @param message the message */Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 1.7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Queues.java
// ArrayBlockingQueue /** * Creates an empty {@code ArrayBlockingQueue} with the given (fixed) capacity and nonfair access * policy. */ @J2ktIncompatible @GwtIncompatible // ArrayBlockingQueue public static <E> ArrayBlockingQueue<E> newArrayBlockingQueue(int capacity) { return new ArrayBlockingQueue<>(capacity); } // ArrayDeque /** * Creates an empty {@code ArrayDeque}. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Nov 04 17:24:58 GMT 2025 - 18.2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java
*/ private final String artifactId; /** * The version of the unresolvable model. */ private final String version; /** * Creates a new exception with specified detail message and cause. * * @param message The detail message, may be {@code null}. * @param groupId The group id of the unresolvable model, may be {@code null}.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.9K bytes - Click Count (0)