- Sort Score
- Result 10 results
- Languages All
Results 3071 - 3080 of 5,931 for publish (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java
/** The property name for access timeout. */ public static final String ACCESS_TIMEOUT_PROPERTY = "accessTimeout"; /** The property name for maximum content length. */ public static final String MAX_CONTENT_LENGTH = "maxContentLength"; /** The property name for maximum cached content size. */ public static final String MAX_CACHED_CONTENT_SIZE = "maxCachedContentSize";
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 9.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSetTest.java
} public void testToImmutableSet_duplicates() { class TypeWithDuplicates { final int a; final int b; TypeWithDuplicates(int a, int b) { this.a = a; this.b = b; } @Override public int hashCode() { return a; } @Override public boolean equals(@Nullable Object obj) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/ScoreBooster.java
import org.opensearch.script.Script; import org.opensearch.script.ScriptType; import org.opensearch.search.SearchHit; /** * This class is a base class for score boosters. */ public abstract class ScoreBooster { /** * Constructor. */ public ScoreBooster() { super(); } private static final Logger logger = LogManager.getLogger(ScoreBooster.class); /** * The bulk request builder.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/EnumerationIterator.java
*/ public EnumerationIterator(final Enumeration<T> enumeration) { assertArgumentNotNull("enumeration", enumeration); this.enumeration = enumeration; } @Override public void remove() { throw new ClUnsupportedOperationException("remove"); } @Override public boolean hasNext() { return enumeration.hasMoreElements();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
*/ public void add(final String mimetype, final String filetype) { mimetypeMap.put(mimetype, filetype); } /** * Retrieves the file type for a given MIME type. * * @param mimetype the MIME type to look up * @return the corresponding file type, or the default value if not found */ public String get(final String mimetype) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/stream/StreamUtil.java
* * @param <T> the type of elements in the stream */ public static class StreamOf<T> { private final Supplier<Stream<T>> supplier; /** * Constructs a new {@link StreamOf} instance with the given supplier. * * @param supplier the supplier of the stream */ public StreamOf(final Supplier<Stream<T>> supplier) { this.supplier = supplier;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.4K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/util/OpenSearchResultList.java
import java.util.ArrayList; /** * OpenSearchResultList is a list of OpenSearch results. * * @param <E> The type of elements in this list. */ public class OpenSearchResultList<E> extends ArrayList<E> { /** * Constructs a new OpenSearchResultList. */ public OpenSearchResultList() { super(); } private static final long serialVersionUID = 1L; /** * Total number of hits.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java
} @Override public List<Runnable> shutdownNow() { shutdown(); return ImmutableList.of(); } @Override public boolean isShutdown() { return shutdown; } @Override public boolean isTerminated() { return shutdown; } @Override public boolean awaitTermination(long timeout, TimeUnit unit) { return true; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 6.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddAllTester.java
// @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") public class CollectionAddAllTester<E extends @Nullable Object> extends AbstractCollectionTester<E> { @CollectionFeature.Require(SUPPORTS_ADD) public void testAddAll_supportedNothing() { assertFalse("addAll(nothing) should return false", collection.addAll(emptyCollection())); expectUnchanged();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7.9K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java
* Can be subclassed to specify tests that should be suppressed. * * @author Kevin Bourrillion */ @GwtIncompatible public class TestsForMapsInJavaUtil { public static Test suite() { return new TestsForMapsInJavaUtil().allTests(); } public Test allTests() { TestSuite suite = new TestSuite("java.util Maps"); suite.addTest(testsForCheckedMap());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 16:28:01 UTC 2025 - 21.8K bytes - Viewed (0)