Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 410 for dall (0.02 seconds)

  1. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            final Map<String, Object> params = new HashMap<>();
            final String invalidScript = "this is not valid {{{";
    
            // First call: syntax error returns null
            assertNull(engine.evaluate(invalidScript, params));
    
            // Second call: should also return null (not cached, recompiles and fails again)
            assertNull(engine.evaluate(invalidScript, params));
    
    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)
  2. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

                        implementation(project(":internal-architecture-testing"))
                    }
                }
    
                targets {
                    all {
                        testTask.configure {
                            useJUnitPlatform {
                                includeEngines("archunit")
                            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 08:11:56 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/entity/ChatSession.java

            this.lastAccessedAt = lastAccessedAt;
        }
    
        /**
         * Returns a copy of the message list in this session.
         *
         * @return a new list containing all messages
         */
        public List<ChatMessage> getMessages() {
            synchronized (messagesLock) {
                if (messages == null) {
                    return new ArrayList<>();
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/helper/RateLimitHelperTest.java

            rateLimitHelper.blockIp("192.168.1.100", 1L);
            assertEquals(1, rateLimitHelper.getBlockedIpCount());
    
            // Guava Cache handles expiration automatically
            // Wait for cache to expire and call cleanup
            try {
                Thread.sleep(100L);
            } catch (final InterruptedException e) {
                // ignore
            }
    
            rateLimitHelper.cleanup();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4K bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/projects/CheckProject.kt

                            "e.g. `-PrerunAllTests` or `--no-build-cache`",
                )
                text(
                    "reverse.dep.*.skip.build",
                    "",
                    display = ParameterDisplay.NORMAL,
                    allowEmpty = true,
                    description = "Set to 'true' if you want to skip all dependency builds",
                )
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 03 10:41:06 GMT 2026
    - 4.1K bytes
    - Click Count (1)
  6. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            final List<LlmMessage> history = new ArrayList<>();
            history.add(LlmMessage.user("Q1"));
    
            final IntentDetectionResult result = client.detectIntent("test", history);
    
            // Should fall back to search with original message
            assertEquals(ChatIntent.SEARCH, result.getIntent());
            assertEquals("test", result.getQuery());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java

                if (queue.poll() != null) {
                    size.decrementAndGet();
                }
            }
        }
    
        /**
         * Drains all events from the buffer and returns them as a list.
         *
         * @return a list of all buffered events
         */
        public List<LogNotificationEvent> drainAll() {
            final List<LogNotificationEvent> events = new ArrayList<>();
            LogNotificationEvent event;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java

     * Provides pagination functionality for character mapping lists.
     */
    public class CharMappingPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /** Total number of records across all pages. */
        private int allRecordCount;
    
        /** Total number of pages available. */
        private int allPageCount;
    
        /** Flag indicating if a previous page exists. */
        private boolean existPrePage;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/util/FacetResponse.java

             * The decoded name of the field.
             */
            protected String name;
    
            /**
             * Constructs a Field from OpenSearch Terms aggregation.
             * Decodes the field name and processes all term buckets to extract
             * field values and their document counts.
             *
             * @param termFacet the OpenSearch Terms aggregation containing field facet data
             */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 11:39:05 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  10. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt

        fun identity(action: ModuleIdentity.() -> Unit) {
            action(identity)
        }
    
        /**
         * Describes the target processes that the code in this module must be able
         * to run on, by definition. All modules that this module depends on will
         * then be required to also support these target runtimes.
         *
         * The required runtimes for a project should be set if that project has
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 4.8K bytes
    - Click Count (0)
Back to Top