Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 1,072 for iterations (0.09 sec)

  1. src/main/java/org/codelibs/fess/Constants.java

        // ============================================================
    
        /** Process type for replace operations. */
        public static final String PROCESS_TYPE_REPLACE = "R";
    
        /** Process type for crawling operations. */
        public static final String PROCESS_TYPE_CRAWLING = "C";
    
        /** Process type for displaying operations. */
        public static final String PROCESS_TYPE_DISPLAYING = "D";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/fess/app/service/UserInfoService.java

    import org.codelibs.fess.opensearch.log.exbhv.UserInfoBhv;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing user information data.
     * This service provides operations for maintaining and cleaning up user information records.
     */
    public class UserInfoService {
    
        @Resource
        private UserInfoBhv userInfoBhv;
    
        @Resource
        private SystemHelper systemHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java

                NdrBuffer buffer2 = mock(NdrBuffer.class);
                when(buffer2.dec_ndr_short()).thenReturn(75);
    
                // When: Performing multiple operations
                ndrShort.encode(buffer1);
                ndrShort.decode(buffer2);
    
                // Then: Should handle both operations correctly
                verify(buffer1).enc_ndr_short(50);
                verify(buffer2).dec_ndr_short();
                assertEquals(75, ndrShort.value);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/SMBProtocolDecodingExceptionTest.java

                assertTrue(ts.contains(message), "toString should include non-empty message");
            }
        }
    
        @Test
        @DisplayName("Cause-only constructor: preserves provided cause; no interactions with cause")
        void causeOnlyConstructor_preservesCause_andNoInteractions() {
            // Arrange & Act
            SMBProtocolDecodingException ex = new SMBProtocolDecodingException(mockCause);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java

     */
    package org.codelibs.fess.auth.chain;
    
    import org.codelibs.fess.opensearch.user.exentity.User;
    
    /**
     * Interface for authentication chain operations.
     * Provides methods for user management and authentication operations.
     */
    public interface AuthenticationChain {
    
        /**
         * Updates an existing user in the authentication chain.
         * @param user The user to update.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponseTest.java

                });
            }
    
            @Test
            @DisplayName("Should handle null buffer in write operations")
            void testWriteOperationsWithNullBuffer() {
                // Write operations return 0 when given null buffer - no exceptions thrown
                assertEquals(0, response.writeSetupWireFormat(null, 0));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/job/JobExecutor.java

     */
    package org.codelibs.fess.job;
    
    /**
     * Abstract base class for job executors that handle script execution within the job system.
     * This class provides a framework for executing scripts and managing shutdown operations.
     */
    public abstract class JobExecutor {
        /** Listener to handle shutdown events */
        protected ShutdownListener shutdownListener;
    
        /**
         * Default constructor.
         */
        public JobExecutor() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top