Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 22 for settable (0.04 seconds)

  1. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            assertTrue("Multiple commands should be settable", true);
    
            // Test with empty list
            generator.setCommandList(new ArrayList<>());
            assertTrue("Empty command list should be settable", true);
    
            // Test with single command
            generator.setCommandList(Collections.singletonList("single_command"));
            assertTrue("Single command should be settable", true);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  2. build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/UpdateAgpVersionsTest.groovy

            def selected = UpdateAgpVersions.selectVersionsFrom(gradleVersion, null, allVersions)
    
            then:
            selected == ["8.9.0", "9.0.0-rc01"]
        }
    
        def "selects matching gradle major versions when stable or rc available (minimumSupported=#minimumSupported)"() {
            given:
            def gradleVersion = GradleVersion.version("9.2")
            def allVersions = [
                "8.8.0", "8.9.0",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 15 06:57:24 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  3. architecture/standards/0010-gradle-properties-naming.md

    * `org.gradle.configuration-cache.parallel`
    
    ### Properties of stable features
    
    Properties of stable features MUST start with `org.gradle.<feature-name>.`
    
    The qualifier is absent for these properties, making the name more concise.
    This is a sensible default, as the majority of features are of this nature.
    
    These properties MUST be stable.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 06 09:25:54 GMT 2026
    - 8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            facetQueryView.setTitle(testTitle);
            assertEquals(testTitle, facetQueryView.getTitle());
        }
    
        @Test
        public void test_setTitle() {
            String title1 = "Title 1";
            facetQueryView.setTitle(title1);
            assertEquals(title1, facetQueryView.getTitle());
    
            String title2 = "Different Title";
            facetQueryView.setTitle(title2);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/job/ScriptExecutorJobTest.java

                    return "OK";
                }
            };
            ComponentUtil.register(jobExecutor, "scriptJobExecutor");
        }
    
        /**
         * Testable subclass that exposes the protected process() method.
         */
        private static class TestableScriptExecutorJob extends ScriptExecutorJob {
            @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            }
        }
    
        /**
         * Processes and normalizes a document title.
         * Applies text normalization using configured space characters and returns
         * a clean title suitable for indexing.
         *
         * @param responseData the response data from crawling (not currently used)
         * @param title the raw title text to process
         * @param dataMap additional data map (not currently used)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:27:04 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/entity/ChatMessageTest.java

        }
    
        @Test
        public void test_addSource() {
            final ChatMessage message = new ChatMessage();
            final ChatSource source = new ChatSource();
            source.setIndex(1);
            source.setTitle("Test Document");
    
            message.addSource(source);
    
            assertEquals(1, message.getSources().size());
            assertEquals("Test Document", message.getSources().get(0).getTitle());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformerTest.java

            assertEquals("long", Constants.MAPPING_TYPE_LONG);
            assertEquals("double", Constants.MAPPING_TYPE_DOUBLE);
            assertEquals("date", Constants.MAPPING_TYPE_DATE);
        }
    
        /**
         * Testable implementation of AbstractFessFileTransformer for unit testing.
         */
        private static class TestableAbstractFessFileTransformer extends AbstractFessFileTransformer {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  9. architecture/standards/0009-use-american-english.md

    * **Third-party APIs and libraries**: When integrating with external APIs that use different spelling conventions
    * **Historical compatibility**: Existing public API methods that are part of Gradle's stable API cannot be renamed due to backward compatibility requirements (though new APIs should use American English)
    * **Proper nouns and quotes**: Names of organizations, products, or quoted text that use different conventions
    
    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)
  10. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

        /**
         * Methods for a Web Crawling Job
         * */
        private static void createWebConfig() {
            final Map<String, Object> requestBody = new HashMap<>();
            // Keep original external URL for stable test results + failure URL for testing
            final String urls = "https://www.codelibs.org/" + "\n" + "http://failure.url";
            final String includedUrls = "https://www.codelibs.org/.*" + "\n" + "http://failure.url.*";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
Back to Top