- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 476 for ending (0.03 sec)
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
import org.dbflute.optional.OptionalEntity; /** * Manages a dictionary file for synonyms. * This class handles reading, parsing, and updating files that contain * synonym rules. The file format supports both explicit mappings (e.g., `a => b`) * and equivalent synonyms (e.g., `a, b, c`). * * The class provides methods for retrieving, adding, updating, and * deleting synonym items, as well as reloading the dictionary * from its source file. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0) -
guava-gwt/test-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/TestPlatform.java
assertThat(e).hasMessageThat().isEqualTo("Cannot get() on a pending future."); } } static void verifyTimedGetOnPendingFuture(Future<?> future) { try { future.get(0, SECONDS); fail(); } catch (Exception e) { assertThat(e).isInstanceOf(IllegalStateException.class); assertThat(e).hasMessageThat().isEqualTo("Cannot get() on a pending future."); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ReaderUtil.java
* * @param is * the input stream (must not be {@literal null}) * @param encoding * the encoding of the input stream (must not be {@literal null} or empty) * @return a {@link Reader} to read from the file */ public static InputStreamReader create(final InputStream is, final String encoding) { assertArgumentNotNull("is", is);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
} /** * Gets the encoding used for the response content. * * @return the encoding. */ public String getEncoding() { return encoding; } /** * Sets the encoding for the response content. * * @param encoding the encoding to set. */ public void setEncoding(final String encoding) { this.encoding = encoding; }
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 6.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/RequestBody.kt
* * This method returns false unless it is overridden by a subclass. * * ### Duplex Transmission * * With regular HTTP calls the request always completes sending before the response may begin * receiving. With duplex the request and response may be interleaved! That is, request body bytes * may be sent after response headers or body bytes have been received. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 04 17:43:43 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.di.core.factory.SingletonLaContainerFactory; import groovy.lang.Binding; import groovy.lang.GroovyClassLoader; import groovy.lang.GroovyShell; public class DocBoostMatcherTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") public abstract class AbstractMultisetSetCountTester<E> extends AbstractMultisetTester<E> { /* * TODO: consider adding MultisetFeatures.SUPPORTS_SET_COUNT. Currently we * assume that using setCount() to increase the count is permitted iff add() * is permitted and similarly for decrease/remove(). We assume that a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/EditBody.java
import org.codelibs.fess.app.web.admin.fileconfig.EditForm; /** * Request body class for file config edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for file configuration management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/group/EditBody.java
import org.codelibs.fess.app.web.admin.group.EditForm; /** * Request body class for group edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for group management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/EditBody.java
import org.codelibs.fess.app.web.admin.relatedquery.EditForm; /** * Request body class for related query edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for related query management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0)