Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 108 for sekund (0.37 seconds)

  1. src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java

            List<Map<String, Object>> page1 = JsonPath.from(response).getList("response.logs");
    
            logger.info("Page 1: {}", page1);
    
            // Get second page
            searchBody.put("page", 2);
            response = checkMethodBase(searchBody).get(API_PATH + "/logs").asString();
            List<Map<String, Object>> page2 = JsonPath.from(response).getList("response.logs");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            // Test zero boundary
            testBoundaryValue(0L);
    
            // Test one millisecond boundaries
            testBoundaryValue(1L);
            testBoundaryValue(-1L);
    
            // Test one second boundaries
            testBoundaryValue(1000L);
            testBoundaryValue(-1000L);
    
            // Test one minute boundaries
            testBoundaryValue(60000L);
            testBoundaryValue(-60000L);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

                assertTrue("Should find custom thread in dump", customThreadFound.get() > 0);
    
            } finally {
                latch.countDown();
                customThread.join(1000); // Wait up to 1 second for thread to finish
            }
        }
    
        @Test
        public void test_writeThreadDump_fileContent() throws IOException {
            Path tempFile = Files.createTempFile("test-thread-dump-content", ".txt");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

                Path targetFile = tempDir.resolve("target.tmp");
                Files.createFile(targetFile);
    
                // First delete succeeds
                assertTrue(Files.deleteIfExists(targetFile));
    
                // Second delete returns false (file already gone)
                assertFalse(Files.deleteIfExists(targetFile));
            } finally {
                deleteDirectory(tempDir.toFile());
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

         * The outer map key is the virtual host key, and the value is a pair containing:
         * - First: Map of exact term matches (term -> content)
         * - Second: List of regex pattern matches (Pattern -> content template)
         */
        protected Map<String, Pair<Map<String, String>, List<Pair<Pattern, String>>>> relatedContentMap = Collections.emptyMap();
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

                if (response.getHttpStatusCode() != 200 && response.getHttpStatusCode() != 201) {
                    logger.warn("Failed to send heartbeat: status={}", response.getHttpStatusCode());
                }
            } catch (final Exception e) {
                logger.debug("Failed to send heartbeat.", e);
            }
        }
    
        /**
         * Removes the heartbeat document for this instance from OpenSearch.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            dataMap1.put("url", "http://example.com/test1");
            indexUpdateCallback.store(paramMap, dataMap1);
            assertEquals(1, indexingHelper.sendDocumentsCalled);
    
            // Add second document - should trigger indexing again
            Map<String, Object> dataMap2 = new HashMap<>();
            dataMap2.put("url", "http://example.com/test2");
            indexUpdateCallback.store(paramMap, dataMap2);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.7K bytes
    - Click Count (0)
  8. docs/pt-BR/README.md

    ## Problemas/Perguntas
    
    [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/)
    
    ## Como Começar
    
    Existem duas maneiras de testar o Fess. A primeira é baixar e instalar você mesmo. A segunda é usar [Docker](https://www.docker.com/products/docker-engine).
    
    ### Baixar e Instalar/Executar
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/admin/JobLogTests.java

            List<Map<String, Object>> page1 = JsonPath.from(response).getList("response.logs");
    
            logger.info("Page 1: {}", page1);
    
            // Get second page
            searchBody.put("page", 2);
            response = checkMethodBase(searchBody).get(API_PATH + "/logs").asString();
            List<Map<String, Object>> page2 = JsonPath.from(response).getList("response.logs");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java

            // Note: Set-based O(1) lookup should be much faster than O(n) array iteration
            assertTrue("Set-based lookup should complete quickly (duration: " + duration / 1_000_000 + "ms)", duration < 1_000_000_000); // 1 second (relaxed from 100ms for CI)
        }
    
        /**
         * Test convertWithFieldCheck() with DEFAULT_FIELD.
         */
        @Test
        public void test_convertWithFieldCheck_withDefaultField() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
Back to Top