- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 736 for PARAMETERS (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/SearchBody.java
import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody; /** * Search request body for stop words dictionary administration. * Extends BaseSearchDictBody with stop words dictionary-specific search parameters. */ public class SearchBody extends BaseSearchDictBody { /** * Default constructor for SearchBody. */ public SearchBody() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for duplicate host administration. * Extends BaseSearchBody with duplicate host-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The regular host name to search for. */ public String regularName; /** The duplicate host name to search for. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/BaseSearchDictBody.java
import org.lastaflute.web.validation.Required; /** * Base class for dictionary search request body objects in admin API. * Extends BaseSearchBody with dictionary-specific parameters. */ public class BaseSearchDictBody extends BaseSearchBody { /** The dictionary ID for the search operation. */ @Required public String dictId; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
private static class MockHttpServletRequest implements HttpServletRequest { private Map<String, String[]> parameters = new HashMap<>(); private Map<String, String> singleParameters = new HashMap<>(); public void setParameterValues(String name, String[] values) { parameters.put(name, values); } public void setParameter(String name, String value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java
import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pagination support class for ElevateWord entities. * Provides pagination functionality and holds search form parameters * for elevate word management in the admin interface. */ public class ElevateWordPager implements Serializable { private static final long serialVersionUID = 1L; /** * Default constructor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
.authority(authority) .build(); final RefreshTokenParameters parameters = RefreshTokenParameters.builder(Collections.singleton("https://graph.microsoft.com/.default"), refreshToken).build(); final IAuthenticationResult result = app.acquireToken(parameters).get(acquisitionTimeout, TimeUnit.MILLISECONDS); if (result == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/StartCrawlingForm.java
*/ package org.codelibs.fess.app.web.admin.wizard; /** * Form class for starting crawling operations in the admin wizard. * * This form is used to collect user input and parameters needed to initiate * crawling operations through the administrative interface wizard workflow. * It serves as a data transfer object between the web layer and the crawling * service components. */
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/test/java/jcifs/MsrpcGetMembersInAliasTest.java
@BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @Test @DisplayName("Should correctly initialize MsrpcGetMembersInAlias with provided parameters") void testConstructorInitialization() { // Given // Mocks are already initialized by @BeforeEach // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/Normalizer.java
package org.codelibs.fess.suggest.normalizer; /** * An interface for normalizing text. * Implementations of this interface should provide a method to normalize * a given text based on the specified field and optional language parameters. */ public interface Normalizer { /** * Normalizes the given text. * @param text The text to normalize * @param field The field name * @param langs The language
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaConnection.java
*/ public abstract void rdmaWrite(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey, int length) throws IOException; /** * Negotiate RDMA parameters * * @param request negotiation request parameters * @return negotiation response * @throws IOException if negotiation fails */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 8.2K bytes - Viewed (0)