Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for console (0.05 sec)

  1. MIGRATION.md

    - Collections with URL patterns
    - Start URLs and crawl rules
    - User agent settings
    - Good/bad URL patterns
    
    **Step 2: Import via Fess Admin UI**
    
    1. Log in to Fess Admin Console: `http://<fess-server>:8080/admin`
    2. Navigate to **System > Backup**
    3. Click **Upload** and select your `gsaconfig.xml` file
    4. Click **Import** - Fess will automatically:
       - Parse GSA collections
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md

    - `validateInputStream()` method behavior
    - Exception types and messages
    - Stream consumption (should not consume)
    - Consistency across multiple calls
    
    **Test Count**: 11 tests
    
    **Key Scenarios**:
    - ✅ Validates non-null streams
    - ✅ Throws CrawlerSystemException for null
    - ✅ Called during getText execution
    - ✅ Does not consume or modify stream
    - ✅ Consistent behavior across multiple calls
    - ✅ Works with various InputStream types
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractorTest.java

                assertTrue("Exception message should mention 'null'", message.toLowerCase().contains("null"));
            }
        }
    
        /**
         * Test that validateInputStream does not modify or consume the stream.
         */
        public void test_validateInputStream_doesNotConsumeStream() throws Exception {
            final byte[] testData = "test data for validation".getBytes();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/rdma/RdmaConnection.java

         *
         * @return true if can send, false otherwise
         */
        public boolean canSend() {
            return sendCredits.get() > 0 && state == RdmaConnectionState.ESTABLISHED;
        }
    
        /**
         * Consume a send credit
         */
        public void consumeSendCredit() {
            sendCredits.decrementAndGet();
        }
    
        /**
         * Grant a send credit
         */
        public void grantSendCredit() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  5. docs/pt-BR/README.md

    ## Migração de Outro Provedor de Busca
    
    Consulte [MIGRATION.md](MIGRATION.md).
    
    ## Data Store
    
    Atualmente, o Fess suporta o rastreamento dos seguintes [locais de armazenamento e APIs](https://fess.codelibs.org/15.3/admin/dataconfig-guide.html):
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Tue Nov 11 22:42:32 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Min(-1)
        @Max(1000)
        @ValidateTypeFailure
        public Integer dayForCleanup;
    
        /**
         * Number of threads to use for crawling operations.
         * Higher values increase crawling speed but consume more resources.
         */
        @Required
        @Min(0)
        @Max(100)
        @ValidateTypeFailure
        public Integer crawlingThreadCount;
    
        /**
         * Enable or disable search query logging.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

                dr.share = arr[2];
                dr.path = arr[3];
                dr.pathConsumed = consumed;
    
                /*
                 * Samba has a tendency to return pathConsumed values so that they consume a trailing slash of the
                 * requested path. Normalize this here.
                 */
                if (reqPath.charAt(consumed - 1) == '\\') {
                    if (log.isDebugEnabled()) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java

                bb.putInt(512);
    
                // When
                int bytesConsumed = fileFsSizeInfo.decode(buffer, 0, buffer.length);
    
                // Then
                assertEquals(24, bytesConsumed); // Should always consume exactly 24 bytes
            }
    
            @Test
            @DisplayName("Should decode from middle of buffer correctly")
            void shouldDecodeFromMiddleOfBuffer() throws SMBProtocolDecodingException {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/fscc/FileFsFullSizeInformationTest.java

                // When
                int bytesConsumed = fileFsFullSizeInfo.decode(buffer, 0, buffer.length);
    
                // Then
                assertEquals(32, bytesConsumed); // Should always consume exactly 32 bytes
            }
    
            @Test
            @DisplayName("Should decode from middle of buffer correctly")
            void shouldDecodeFromMiddleOfBuffer() throws SMBProtocolDecodingException {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.5K bytes
    - Viewed (0)
Back to top