Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for carlin (0.4 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.lotus-screencam",
    				"application/vnd.lotus-wordpro",
    				"application/vnd.macports.portpkg",
    				"application/vnd.marlin.drm.actiontoken+xml",
    				"application/vnd.marlin.drm.conftoken+xml",
    				"application/vnd.marlin.drm.license+xml",
    				"application/vnd.marlin.drm.mdcf",
    				"application/vnd.mcd",
    				"application/vnd.medcalcdata",
    				"application/vnd.mediastation.cdkey",
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 50.1K bytes
    - Viewed (0)
  2. docs/de/README.md

    ## Probleme/Fragen
    
    [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/)
    
    ## Erste Schritte
    
    Es gibt zwei Möglichkeiten, Fess auszuprobieren. Die erste besteht darin, es selbst herunterzuladen und zu installieren. Die zweite besteht darin, [Docker](https://www.docker.com/products/docker-engine) zu verwenden.
    
    ### Herunterladen und Installieren/Ausführen
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Tue Nov 11 22:42:32 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java

            // Verify ResponseData is unchanged
            assertNull(responseData.getUrl());
            assertEquals(0, responseData.getHttpStatusCode());
        }
    
        public void test_processMultipleTimes() {
            // Test calling process multiple times
            NullResponseProcessor processor = new NullResponseProcessor();
            ResponseData responseData1 = new ResponseData();
            responseData1.setUrl("https://example.com/page1");
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java

            cos.write(new byte[1000]);
            assertTrue(cos.isInMemory());
            cos.close();
        }
    
        @Test
        public void testMultipleGetFile() throws IOException {
            // Calling getFile() multiple times should return the same file
            ContentOutputStream cos = new ContentOutputStream(5, Curl.tmpDir);
            cos.write(new byte[] { 0, 1, 2, 3, 4, 5 });
            File file1 = cos.getFile();
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Wed Nov 12 14:01:04 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  5. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java

                return (T) Long.valueOf(value.longValue());
            }
            return (T) field;
        }
    
        /**
         * Iterates through all access results for a session, calling the callback for each result.
         * Uses OpenSearch scroll API for efficient iteration over large result sets.
         *
         * @param sessionId The session ID.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TemporaryFileInputStreamTest.java

                assertFalse(stream.markSupported());
    
                assertEquals('A', stream.read());
                assertEquals('B', stream.read());
    
                // Mark is not supported, so calling mark has no effect
                stream.mark(10);
    
                assertEquals('C', stream.read());
                assertEquals('D', stream.read());
    
                // Reset will throw IOException because mark is not supported
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

            return super.hookBefore(runtime);
        }
    
        /**
         * Hook method called after action execution completes.
         * <p>
         * This method performs cleanup operations by calling the parent hook.
         * </p>
         *
         * @param runtime the action runtime context
         */
        @Override
        public void hookFinally(final ActionRuntime runtime) {
            super.hookFinally(runtime);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_id.properties

    labels.profile.placeholder_new_password=Kata Sandi Baru
    labels.profile.placeholder_confirm_new_password=Konfirmasi Kata Sandi Baru
    labels.top.search=Cari
    labels.index_title=Fess
    labels.index_form_search_btn=Cari
    labels.index_osdd_title=Cari
    labels.index_form_option_btn=Opsi
    labels.index_help=Bantuan
    labels.search_options=Opsi Pencarian
    labels.search_options_close=Tutup
    labels.search_options_clear=Hapus
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java

                assertTrue(e instanceof IOException);
                assertTrue(e.getMessage().contains("GCS_PROJECT_ID is blank"));
            }
        }
    
        /**
         * Test that connect() is idempotent - calling it multiple times should be safe.
         */
        public void test_connect_idempotent() throws Exception {
            URL url = new URL("gcs://mybucket/object.txt");
            Handler handler = new Handler();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                return time;
            }
            return -1;
        }
    
        /**
         * Retrieves a list of access results from the data service for processing.
         * Filters out results that are too recent based on commit margin time and manages crawler throttling.
         *
         * @param cb the consumer to customize the search request
         * @param cleanupTime the time taken for the last cleanup operation
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 32.9K bytes
    - Viewed (0)
Back to top