- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 412 for unnecessary (0.05 sec)
-
mockwebserver-junit4/src/main/kotlin/mockwebserver3/junit4/MockWebServerRule.kt
* the `@Rule` annotation: * * ```java * @Rule public final MockWebServerRule serverRule = new MockWebServerRule(); * ``` * * For Kotlin the `@JvmField` annotation is also necessary: * * ```kotlin * @JvmField @Rule val serverRule = MockWebServerRule() * ``` */ class MockWebServerRule : ExternalResource() { val server: MockWebServer = MockWebServer() override fun before() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jun 16 22:36:18 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/EditForm.java
package org.codelibs.fess.app.web.admin.searchlist; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * The edit form for Search List. * This form extends CreateForm and adds fields necessary for editing existing search list entries. */ public class EditForm extends CreateForm { /** Unique identifier for the search list entry */ public String id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
android/guava/src/com/google/common/annotations/VisibleForTesting.java
* the License. */ package com.google.common.annotations; /** * Annotates a program element that exists, or is more widely visible than otherwise necessary, only * for use in test code. * * <p><b>Do not use this interface</b> for public or protected declarations: it is a fig leaf for
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jan 30 22:25:16 UTC 2023 - 1.3K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
* situations for compatibility. * * @since 17.0 */ public static final MediaType WOFF = createConstant(APPLICATION_TYPE, "font-woff"); /** * <a href="https://tools.ietf.org/html/rfc8081">RFC 8081</a> declares {@link #FONT_WOFF2 * font/woff2} to be the correct media type for WOFF2, but this may be necessary in certain * situations for compatibility.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterables.java
* streams. * * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables produced in this class * are <i>lazy</i>, which means that their iterators only advance the backing iteration when * absolutely necessary. * * <p>See the Guava User Guide article on <a href= * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#iterables">{@code * Iterables}</a>. * * @author Kevin Bourrillion * @author Jared Levy
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
*/ package jcifs.netbios; import java.net.InetAddress; import java.net.UnknownHostException; import jcifs.Address; import jcifs.CIFSContext; /** * <p> * Under normal conditions it is not necessary to use * this class to use jCIFS properly. Name resolusion is * handled internally to the <code>jcifs.smb</code> package. * <p> * This class is a wrapper for both {@link jcifs.netbios.NbtAddress}
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/EditForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * Form class for editing Kuromoji dictionary entries in the admin interface. * This form extends CreateForm to include fields necessary for updating existing Kuromoji dictionary entries. * Kuromoji is a Japanese morphological analyzer, and this dictionary manages custom tokenization rules. */ public class EditForm extends CreateForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K 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() {
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() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0)