- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 660 for iterations (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/EditBody.java
import org.codelibs.fess.app.web.admin.dict.stemmeroverride.EditForm; /** * Request body class for stemmer override dictionary edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for stemmer override dictionary 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/service/DataConfigService.java
*/ @Resource protected FessConfig fessConfig; /** * Creates a new instance of DataConfigService. * This constructor initializes the service for managing data configuration operations * including CRUD operations and search functionality. */ public DataConfigService() { super(); } /** * Retrieves a paginated list of data configurations based on search criteria. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
guava/src/com/google/common/graph/NetworkBuilder.java
public NetworkBuilder<N, E> expectedEdgeCount(int expectedEdgeCount) { this.expectedEdgeCount = Optional.of(checkNonNegative(expectedEdgeCount)); return this; } /** * Specifies the order of iteration for the elements of {@link Network#nodes()}. * * <p>The default value is {@link ElementOrder#insertion() insertion order}. */ public <N1 extends N> NetworkBuilder<N1, E> nodeOrder(ElementOrder<N1> nodeOrder) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 7.4K bytes - Viewed (0) -
guava/src/com/google/common/graph/ValueGraphBuilder.java
public ValueGraphBuilder<N, V> expectedNodeCount(int expectedNodeCount) { this.expectedNodeCount = Optional.of(checkNonNegative(expectedNodeCount)); return this; } /** * Specifies the order of iteration for the elements of {@link Graph#nodes()}. * * <p>The default value is {@link ElementOrder#insertion() insertion order}. */ public <N1 extends N> ValueGraphBuilder<N1, V> nodeOrder(ElementOrder<N1> nodeOrder) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 7.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multiset.java
* element. There are five new bulk-modification operations, for example {@link #add(Object, int)}, * to add or remove multiple occurrences of an element at once, or to set the count of an element to * a specific value. These modification operations are optional, but implementations which support * the standard collection operations {@link #add(Object)} or {@link #remove(Object)} are encouraged
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 19.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/ListListIteratorTester.java
import java.util.concurrent.CopyOnWriteArraySet; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; import org.junit.Ignore; /** * A generic JUnit test which tests {@code listIterator} operations on a list. Can't be invoked * directly; please see {@link com.google.common.collect.testing.ListTestSuiteBuilder}. * * @author Chris Povirk * @author Kevin Bourrillion */ @GwtCompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
import org.lastaflute.web.response.ActionResponse; /** * Manager class for coordinating SSO (Single Sign-On) authentication operations. * * This class serves as the central coordinator for SSO authentication in Fess. * It manages registered SSO authenticators, determines when SSO is available, * and delegates authentication operations to the appropriate SSO provider based * on the current configuration. */ public class SsoManager {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BadWordService.java
/** * Service class for bad word management operations. * Provides CRUD operations and CSV import/export functionality for bad words. */ public class BadWordService { private static final String DELETE_PREFIX = "--"; private static final Logger logger = LogManager.getLogger(BadWordService.class); /** Database behavior for bad word operations. */ @Resource protected BadWordBhv badWordBhv;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/EditBody.java
import org.codelibs.fess.app.web.admin.keymatch.EditForm; /** * Request body class for key match edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for key match 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/pathmap/EditBody.java
import org.codelibs.fess.app.web.admin.pathmap.EditForm; /** * Request body class for path mapping edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for path mapping 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)