- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 992 for Specifies (0.07 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnums.java
abstract class ExtensibleEnums { /** * Creates a new Language instance with the specified ID. * * @param id the identifier for the language * @return a new Language instance */ static Language language(String id) { return new DefaultLanguage(id); } /** * Creates a new PathScope instance with the specified ID, project scope, and dependency scopes. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/Curl.java
* * @param url the URL to which the POST request will be sent * @return a new CurlRequest object configured with the POST method and the specified URL */ public static CurlRequest post(final String url) { return new CurlRequest(Method.POST, url); } /** * Creates a new CurlRequest with the HTTP PUT method for the specified URL. *
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 5.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RangeSet.java
* range set and the specified range. This is equivalent to calling {@code * subRangeSet(otherRange)} and testing whether the resulting range set is non-empty. * * @since 20.0 */ boolean intersects(Range<C> otherRange); /** * Returns {@code true} if there exists a member range in this range set which {@linkplain * Range#encloses encloses} the specified range. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/RequestTimeoutException.java
* Constructs a new RequestTimeoutException with the specified detail message and cause. * * @param msg the detail message * @param rootCause the cause of the exception */ public RequestTimeoutException(final String msg, final Throwable rootCause) { super(msg, rootCause); } /** * Constructs a new RequestTimeoutException with the specified detail message. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
return as(type, tagged.getBaseObject()); } /** * Gets an element from a DLSequence at the specified index and casts it to the specified type * @param <T> the target ASN.1 primitive type * @param type the target class type * @param sequence the DLSequence * @param index the element index
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
return deleteDocumentByQuery(searchEngineClient, fessConfig.getIndexDocumentUpdateIndex(), queryBuilder); } /** * Deletes all documents that match the specified query from the specified index. * * @param searchEngineClient the search engine client to use for deletion * @param index the index name to delete documents from
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
@Resource private ProtwordsService protwordsService; /** * Retrieve list of protected words entries for the specified dictionary. * * @param dictId identifier of the dictionary * @param body search criteria and paging parameters * @return JSON response containing list of entries */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessSystemException.java
* Constructs a new FessSystemException with the specified detail message and cause. * * @param message the detail message describing the exception * @param cause the cause of this exception */ public FessSystemException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new FessSystemException with the specified detail message. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
android/guava/src/com/google/common/net/PercentEscaper.java
* * <p>When escaping a String, the following rules apply: * * <ul> * <li>All specified safe characters remain unchanged. * <li>If {@code plusForSpace} was specified, the space character " " is converted into a plus * sign {@code "+"}. * <li>All other characters are converted into one or more bytes using UTF-8 encoding and each
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 8.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Tables.java
* Returns a {@link Collector} that accumulates elements into a {@code Table} created using the * specified supplier, whose cells are generated by applying the provided mapping functions to the * input elements. Cells are inserted into the generated {@code Table} in encounter order. * * <p>If multiple input elements map to the same row and column, the specified merging function is * used to combine the values. Like {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 24.9K bytes - Viewed (0)