- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 981 for add2 (0.02 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
logger.warn("Could not get urls: (" + xpath + ", " + attr + ")", e); } return urlList; } /** * Adds a child URL to the URL list after processing and validation. * * @param urlList the list to add the URL to * @param url the base URL for resolving relative URLs * @param attrValue the attribute value containing the URL
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java
/** Use {@link MoreExecutors#newSequentialExecutor} */ SequentialExecutor(Executor executor) { this.executor = Preconditions.checkNotNull(executor); } /** * Adds a task to the queue and makes sure a worker thread is running. * * <p>If this method throws, e.g. a {@code RejectedExecutionException} from the delegate executor,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
} return responseData; } /** * Parses file ownership attributes and adds them to the response data. * * @param responseData the response data to add attributes to * @param file the file to parse attributes from * @return the file owner attribute view * @throws CrawlingAccessException if parsing fails */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
allTasks.add(completeSuccessfullyRunnable); allTasks.add(completeExceptionallyRunnable); allTasks.add(cancelRunnable); allTasks.add(setFutureCompleteSuccessfullyRunnable); allTasks.add(setFutureCompleteExceptionallyRunnable); allTasks.add(setFutureCancelRunnable); for (int k = 0; k < 50; k++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 46.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java
abstract Network<Integer, String> createGraph(); /** * A proxy method that adds the node {@code n} to the graph being tested. In case of Immutable * graph implementations, this method should replace {@link #network} with a new graph that * includes this node. */ abstract void addNode(Integer n); /** * A proxy method that adds the edge {@code e} to the graph being tested. In case of Immutable
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
} } /** * Adds a bad word. * @param badWord The bad word to add. * @param apply Whether to apply the change immediately. * @return The SuggestDeleteResponse. */ public SuggestDeleteResponse addBadWord(final String badWord, final boolean apply) { final String normalized = normalizer.normalize(badWord, ""); settings.badword().add(normalized);
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 34.8K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
} } finally { getClient().clearScroll(scrollId); } } /** * Adds a URL to the queue for the specified session. * * @param sessionId The session ID. * @param url The URL to add. */ @Override public void add(final String sessionId, final String url) { if (exists(sessionId, url)) { return; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
*/ public Map<String, String> getQueryMap() { return queryMap; } /** * Adds a query to the query map with the specified display key. * * @param key the display key for the query * @param query the query string to add */ public void addQuery(final String key, final String query) { queryMap.put(key, query); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
*/ public Map<String, Object> getMetaDataMap() { return metaDataMap; } /** * Adds a child URL discovered from this response. * * @param url the child URL to add */ public void addChildUrl(final RequestData url) { childUrlSet.add(url); } /** * Removes a child URL from this response. * * @param url the child URL to remove
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 11.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/LinkedListMultimap.java
if (next == null) { throw new NoSuchElementException(); } current = next; seenKeys.add(current.getKey()); do { // skip ahead to next unseen key next = next.next; } while ((next != null) && !seenKeys.add(next.getKey())); return current.getKey(); } @Override public void remove() { checkForConcurrentModification();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 26.6K bytes - Viewed (0)