- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 306 for queues (0.15 sec)
-
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
/** * Maximum size of the thumbnail generation task queue. */ protected int thumbnailTaskQueueSize = 10000; /** * Number of tasks to process in bulk operations. */ protected int thumbnailTaskBulkSize = 100; /** * Timeout in milliseconds for thumbnail task queue operations. */ protected long thumbnailTaskQueueTimeout = 10 * 1000L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
} /** * Creates and returns a new instance of {@link ArrayBlockingQueue}. * * @param <E> the element type of {@link ArrayBlockingQueue} * @param capacity the queue capacity * @param fair whether the queue is fair * @return a new instance of {@link ArrayBlockingQueue} * @see ArrayBlockingQueue#ArrayBlockingQueue(int, boolean) */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/QueueTestSuiteBuilder.java
import com.google.errorprone.annotations.CanIgnoreReturnValue; import java.util.ArrayList; import java.util.List; /** * Creates, based on your criteria, a JUnit test suite that exhaustively tests a queue * implementation. * * @author Jared Levy */ @GwtIncompatible public final class QueueTestSuiteBuilder<E> extends AbstractCollectionTestSuiteBuilder<QueueTestSuiteBuilder<E>, E> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Feb 26 19:46:10 UTC 2024 - 2.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt
*/ @Throws(SSLPeerUnverifiedException::class) override fun clean( chain: List<Certificate>, hostname: String, ): List<Certificate> { val queue: Deque<Certificate> = ArrayDeque(chain) val result = mutableListOf<Certificate>() result.add(queue.removeFirst()) var foundTrustedCertificate = false followIssuerChain@ for (c in 0 until MAX_SIGNERS) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
return created; } // N.B. Draining the queue is only necessary to ensure that we don't accumulate empty references // in the array. We could skip this if we decide we don't care about holding on to Reference // objects indefinitely. private void drainQueue() { Reference<? extends L> ref; while ((ref = queue.poll()) != null) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsRelatedQueryCQ.java
return this; } public void setQueries_Equal(String queries) { setQueries_Term(queries, null); } public void setQueries_Equal(String queries, ConditionOptionCall<TermQueryBuilder> opLambda) { setQueries_Term(queries, opLambda); } public void setQueries_Term(String queries) { setQueries_Term(queries, null); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 57.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
// Text with comma gets quoted, but parse preserves quotes input = "with,comma"; escaped = KuromojiCSVUtil.quoteEscape(input); // "with,comma" parsed = KuromojiCSVUtil.parse(escaped); assertEquals(1, parsed.length); assertEquals("\"" + input + "\"", parsed[0]); // Quotes are preserved // Text with quotes gets escaped quotes, but escaped quotes don't get unquoted input = "with \"quotes\"";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/QueueTestSuiteBuilder.java
import com.google.errorprone.annotations.CanIgnoreReturnValue; import java.util.ArrayList; import java.util.List; /** * Creates, based on your criteria, a JUnit test suite that exhaustively tests a queue * implementation. * * @author Jared Levy */ @GwtIncompatible public final class QueueTestSuiteBuilder<E> extends AbstractCollectionTestSuiteBuilder<QueueTestSuiteBuilder<E>, E> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Feb 26 19:46:10 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/CreateForm.java
public String term; /** * The related queries to be suggested (one per line). */ @Required @Size(max = 10000) public String queries; /** * The virtual host for which these related queries apply. */ @Size(max = 1000) public String virtualHost; /** * The username who created these related queries. */ @Size(max = 1000)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRelatedQuery.java
this.createdTime = value; } public String[] getQueries() { checkSpecifiedProperty("queries"); return queries; } public void setQueries(String[] value) { registerModifiedProperty("queries"); this.queries = value; } public String getTerm() { checkSpecifiedProperty("term"); return convertEmptyToNull(term);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.6K bytes - Viewed (0)