Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 669 for treats (0.04 seconds)

  1. src/test/java/org/codelibs/fess/it/search/LabelsApiTests.java

                    .then()
                    .statusCode(200)
                    .body("record_count", greaterThanOrEqualTo(0));
        }
    
        @Test
        public void testGetLabels_withTestLabel() {
            // Create a test label
            testLabelId = createLabel(TEST_LABEL_NAME, TEST_LABEL_VALUE);
            refresh();
    
            // Verify the label appears in the list
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

            return jobProcess != null && jobProcess.getProcess().isAlive();
        }
    
        /**
         * Internal method to destroy a specific JobProcess.
         * Handles cleanup of streams, threads, and process termination.
         *
         * @param sessionId unique identifier for the process session
         * @param jobProcess the JobProcess to destroy
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 06:54:47 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

            protected String propertiesPath;
    
            /**
             * Number of threads to use for thumbnail generation.
             */
            @Option(name = "-t", aliases = "--numOfThreads", metaVar = "numOfThreads", usage = "The number of threads")
            protected int numOfThreads = 1;
    
            /**
             * Whether to run in cleanup mode to remove old thumbnails.
             */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorEdgeCaseTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.QueryResponseList;
    import org.dbflute.optional.OptionalThing;
    import org.junit.jupiter.api.Test;
    
    /**
     * Edge case tests for RankFusionProcessor.
     * Tests boundary conditions, empty states, and error scenarios.
     */
    public class RankFusionProcessorEdgeCaseTest extends UnitFessTestCase {
    
        private static final String ID_FIELD = "_id";
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  5. .teamcity/performance-test-durations.json

      "scenario" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting zip trees",
      "durations" : [ {
        "testProject" : "archivePerformanceProject",
        "linux" : 808
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.DeprecationCreationPerformanceTest.create many deprecation warnings",
      "durations" : [ {
        "testProject" : "generateLotsOfDeprecationWarnings",
        "linux" : 136
      } ]
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 04:45:09 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  6. architecture/standards/0009-use-american-english.md

    Inconsistency in spelling conventions can lead to several issues:
    
    * **Confusion for users and contributors**: Mixed spellings (e.g., "color" and "colour", "initialize" and "initialise") in the codebase create confusion about which variant to use
    * **Harder code search and refactoring**: Searching for identifiers, method names, or documentation becomes more difficult when multiple spellings exist for the same concept
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java

         * which is important for preventing gadget chain attacks.
         */
        @Test
        public void test_security_customClassRejected() {
            // Create a simple custom object that is not registered
            CustomTestClass customObject = new CustomTestClass("test");
    
            try {
                serializer.fromObjectToBinary(customObject);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java

            // Assert
            assertEquals("Status of test-cluster is changed to RED.", result);
        }
    
        // Test constructor
        @Test
        public void test_constructor() {
            // Test that constructor creates instance without error
            PingSearchEngineJob job = new PingSearchEngineJob();
            assertNotNull(job);
        }
    
        // Test different cluster names
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            ComponentUtil.setFessConfig(fessConfig);
    
            final String result = indexExportJob.format("json").execute();
    
            assertEquals("Exported 1 documents.", result);
            // Should create .json file, not .html
            final Path jsonFile = tempDir.resolve("example.com/data.json");
            assertTrue(Files.exists(jsonFile));
            assertFalse(Files.exists(tempDir.resolve("example.com/data.html")));
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

        @Test
        public void test_constructor() {
            // Test that constructor creates instance without error
            PurgeLogJob job = new PurgeLogJob();
            assertNotNull(job);
        }
    
        // Test multiple exceptions occur
        @Test
        public void test_execute_multipleExceptions() {
            // Create mock services with exceptions
            CrawlingInfoService crawlingInfoService = new CrawlingInfoService() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 32.7K bytes
    - Click Count (0)
Back to Top