Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 251 - 260 of 624 for inte (0.02 seconds)

  1. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsCreatorTest.java

            assertNotNull(testValue);
            assertEquals("test", testValue);
        }
    
        // Additional test for coverage
        @Test
        public void test_additionalCoverage() {
            int a = 5;
            int b = 10;
            int sum = a + b;
            assertEquals(15, sum);
    
            String str = "Hello";
            assertTrue(str.startsWith("H"));
            assertTrue(str.endsWith("o"));
            assertEquals(5, str.length());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/ingest/IngesterTest.java

            assertNotNull(testValue);
            assertEquals("test", testValue);
        }
    
        // Additional test for coverage
        @Test
        public void test_additionalCoverage() {
            int a = 5;
            int b = 10;
            int sum = a + b;
            assertEquals(15, sum);
    
            String str = "Hello";
            assertTrue(str.startsWith("H"));
            assertTrue(str.endsWith("o"));
            assertEquals(5, str.length());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

                @Override
                protected List<String> loadDataStoreNameList() {
                    return List.of("Store1", "Store2", "Store3");
                }
            };
    
            for (int i = 0; i < threadCount; i++) {
                final int index = i;
                threads[i] = new Thread(() -> {
                    try {
                        results[index] = testFactory.getDataStoreNames();
                    } catch (Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            final LocalDateTime startTime = LocalDateTime.now();
            int ret = creator.create();
            if (ret == 0) {
                ret = creator.purge(startTime);
            }
            return ret;
        }
    
        private int create() {
            if (!ComponentUtil.getFessConfig().isSuggestDocuments() && !ComponentUtil.getFessConfig().isSuggestSearchLog()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            final int threadCount = 8;
            final int iterationsPerThread = 50;
            final ExecutorService executor = Executors.newFixedThreadPool(threadCount);
            final CountDownLatch startLatch = new CountDownLatch(1);
            final AtomicInteger errors = new AtomicInteger(0);
    
            final List<Future<?>> futures = new ArrayList<>();
            for (int t = 0; t < threadCount; t++) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            void setTestAssistantMaxChars(final int maxChars) {
                testAssistantMaxChars = maxChars;
            }
    
            void setTestSummaryMaxChars(final int maxChars) {
                testSummaryMaxChars = maxChars;
            }
    
            String testBuildAssistantHistoryContent(final ChatMessage msg, final String mode, final int assistantMaxChars,
                    final int summaryMaxChars) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/chat/ChatClient.java

            final String content = msg.getContent();
            if (content == null) {
                return null;
            }
            final String omitMarker = "\n...[omitted]...\n";
            final int maxSuffixLen = Math.max(0, maxChars / 4);
            final String suffix = buildSourceTitlesSuffix(msg.getSources(), maxSuffixLen);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

    import java.util.regex.Pattern;
    import java.util.stream.Stream;
    
    /**
     * Generates Javadocs in a particular way.
     *
     * TODO: We should remove the workarounds here and migrate some of the changes here into the Javadoc task proper.
     */
    public abstract class GradleJavadocsPlugin implements Plugin<Project> {
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        @Override
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sun Mar 01 05:52:34 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  9. architecture/standards/0004-use-a-platform-architecture.md

    ## Decision
    
    Organize the Gradle code base into a set of coarse-grained "architecture modules".
    An architecture module is responsible for providing a coherent set of features and:
    
    - Provides a set of APIs and services for use from outside the module.
    - Has a private implementation.
    - Is owned by a single team. A team may own multiple architecture modules.
    
    The modules are arranged into several different "Gradle platforms".
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java

         * @return The page size.
         */
        public int getPageSize() {
            if (size != null) {
                return size;
            }
            return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
        }
    
        /**
         * Gets the current page number for search results.
         * @return The current page number.
         */
        public int getCurrentPageNumber() {
            if (page != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.8K bytes
    - Click Count (0)
Back to Top