Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,488 for voir (0.44 sec)

  1. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java

            return convertEmptyToNull(accessType);
        }
    
        public void setAccessType(String value) {
            registerModifiedProperty("accessType");
            this.accessType = value;
        }
    
        public String getClientIp() {
            checkSpecifiedProperty("clientIp");
            return convertEmptyToNull(clientIp);
        }
    
        public void setClientIp(String value) {
            registerModifiedProperty("clientIp");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

     */
    package org.codelibs.fess.exception;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class InvalidAccessTokenExceptionTest extends UnitFessTestCase {
    
        public void test_constructor_withTypeAndMessage() {
            // Test constructor with type and message
            String type = "Bearer";
            String message = "Invalid access token provided";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsDuplicateHostCB.java

            public void columnId() {
                doColumn("_id");
            }
    
            public void columnCreatedBy() {
                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnDuplicateHostName() {
                doColumn("duplicateHostName");
            }
    
            public void columnRegularName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsRelatedQueryCB.java

            public void columnId() {
                doColumn("_id");
            }
    
            public void columnCreatedBy() {
                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnQueries() {
                doColumn("queries");
            }
    
            public void columnTerm() {
                doColumn("term");
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java

        @Override
        public void setUp() throws Exception {
            super.setUp();
            crawlerEngineClient = new CrawlerEngineClient();
        }
    
        @Override
        public void tearDown() throws Exception {
            crawlerEngineClient = null;
            super.tearDown();
        }
    
        // Test constructor
        public void test_constructor() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

        @Override
        public void setUp() throws Exception {
            super.setUp();
            authenticationManager = new AuthenticationManager();
        }
    
        // Test default constructor
        public void test_constructor() {
            AuthenticationManager manager = new AuthenticationManager();
            assertNotNull(manager);
        }
    
        // Test insert with no chains
        public void test_insert_noChains() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java

    public class NotificationHelperTest extends UnitFessTestCase {
    
        private NotificationHelper notificationHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            notificationHelper = new NotificationHelper();
        }
    
        public void test_sendToSlack_withBlankWebhookUrls() {
            // Setup mock configuration with blank webhook URLs
            ComponentUtil.setFessConfig(new MockFessConfig() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java

                return 0;
            }
    
            public void setSetupWireFormatReturn(int value) {
                this.setupWireFormatReturn = value;
            }
    
            public void setParametersWireFormatReturn(int value) {
                this.parametersWireFormatReturn = value;
            }
    
            public void setDataWireFormatReturn(int value) {
                this.dataWireFormatReturn = value;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java

        class CacheOperationsTests {
    
            private Map<String, DfsReferralDataInternal> cacheMap;
    
            @BeforeEach
            void setupCache() {
                cacheMap = new HashMap<>();
            }
    
            @Test
            @DisplayName("Should replace entry in cache map")
            void testReplaceCacheWithMap() {
                String key = "test-key";
    
                // Setup concrete implementation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

        private SearchLogHelper searchLogHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            searchLogHelper = new SearchLogHelper();
            setupMockComponents();
            searchLogHelper.init();
        }
    
        private void setupMockComponents() {
            ComponentUtil.setFessConfig(new MockFessConfig());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top