- Sort Score
- Num 10 results
- Language All
Results 661 - 670 of 2,510 for thai (0.02 seconds)
-
guava-testlib/src/com/google/common/testing/SerializableTester.java
return Platform.reserialize(object); } /** * Serializes and deserializes the specified object and verifies that the re-serialized object is * equal to the provided object, that the hashcodes are identical, and that the class of the * re-serialized object is identical to that of the original. * * <p><b>GWT warning:</b> Under GWT, this method simply returns its input, as proper GWT
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 4.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java
public void test_serialization() { // Test that the serialVersionUID is properly defined // This test verifies that the class can be instantiated and has the serial version UID ServletException servletException = new ServletException("Serialization test"); ServletRuntimeException runtimeException = new ServletRuntimeException(servletException);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
protected ExecutorService executorService; /** Size of the window for rank fusion processing, determines how many results to consider */ protected int windowSize; /** Set of available searcher names that can be used for search processing */ protected Set<String> availableSearcherNameSet; /** * Default constructor for RankFusionProcessor.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 25 02:13:14 GMT 2025 - 28K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt
* 6. Read from and close that source. * * Exchanges that do not have a request body may skip creating and closing the request body. * Exchanges that do not have a response body can call * [newFixedLengthSource(0)][newFixedLengthSource] and may skip reading and closing that source. */ class Http1ExchangeCodec( /** The client that configures this stream. May be null for HTTPS proxy tunnels. */
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 17.6K bytes - Click Count (7) -
guava/src/com/google/common/collect/Cut.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 12.4K bytes - Click Count (0) -
android/pom.xml
tests themselves and not the code being tested that needs that access, though there's no obvious way to ensure that. We could consider arranging things so that only the tests we know need this would get the add-opens. Right now that doesn't seem worth the effort, though. --> <test.add.opens> --add-opens java.base/java.lang=ALL-UNNAMED
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Feb 17 19:12:41 GMT 2026 - 26.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
private EmptyGenerator emptyGenerator; @Test public void test_generate() { // Initialize without container emptyGenerator = new EmptyGenerator(); // Test that generate always returns false File outputFile = new File("test.jpg"); assertFalse(emptyGenerator.generate("thumbnailId", outputFile)); assertFalse(emptyGenerator.generate(null, outputFile));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/FlushablesTest.java
* <p>Checks proper flushing behavior, and ensures that IOExceptions on Flushable.flush() are not * propagated out from the {@link Flushables#flush} method if {@code swallowException} is true. * * @author Michael Lancaster */ @NullUnmarked public class FlushablesTest extends TestCase { private Flushable mockFlushable; public void testFlush_clean() throws IOException { // make sure that no exception is thrown regardless of value of
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jul 16 20:34:52 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
/** * Deletes old documents that have the same URL but different document IDs * as the documents in the provided list. This prevents duplicate documents * from accumulating in the index. * * @param searchEngineClient the search engine client to use for deletion * @param docList the list of new documents to check against * @return the number of old documents that were deleted */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/AndroidIncompatible.java
import java.lang.annotation.Target; /** * Signifies that a test should not be run under Android. This annotation is respected only by our * Google-internal Android suite generators. Note that those generators also suppress any test * annotated with LargeTest. * * <p>Why use a custom annotation instead of {@code android.test.suitebuilder.annotation.Suppress}? * I'm not completely sure that this is the right choice, but it has various advantages: *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Jul 07 15:40:13 GMT 2023 - 3.9K bytes - Click Count (0)