Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 74 for tall (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

                }
            };
    
            // First call should load
            String[] names = testFactory.getDataStoreNames();
            assertEquals(2, names.length);
            assertEquals("Store1", names[0]);
            assertEquals("Store2", names[1]);
            assertEquals(1, loadCount[0]);
    
            // Second immediate call should use cache
            names = testFactory.getDataStoreNames();
    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)
  2. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            history.add(LlmMessage.user("How to install Fess?"));
            history.add(LlmMessage.assistant("You can install Fess using Docker."));
            final LlmChatRequest request = client.testBuildIntentRequest("Tell me more about Docker", history);
            final List<LlmMessage> messages = request.getMessages();
            // system + 2 history + user = 4 messages
            assertEquals(4, messages.size());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java

            JsonMappingOption option3 = provider.provideMappingOption();
    
            // All should be different instances
            assertNotSame(option1, option2);
            assertNotSame(option2, option3);
            assertNotSame(option1, option3);
    
            // But all should have the same configuration
            assertEquals(option1.getFieldNaming().get(), option2.getFieldNaming().get());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            // During rebuild, addMapping is always called with loadBulkData=false
            // because bulk data is loaded separately with createOnly=true via insertBulkData.
            for (final String[] call : testClient.addMappingCalls) {
                assertNotNull(call);
            }
            // The loadBulkData=true path triggers getResourcePath + ResourceUtil.isExist checks.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java

                    } catch (Exception e) {
                        hasError.set(true);
                    }
                });
            }
    
            // Start all threads
            for (Thread thread : threads) {
                thread.start();
            }
    
            // Wait for all threads to complete
            for (Thread thread : threads) {
                thread.join(5000); // 5 second timeout
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  6. src/main/webapp/js/marked.min.js

    hroughHooksRespectAsync.has(s))return(async()=>{let d=await o.call(i,p);return u.call(i,d)})();let c=o.call(i,p);return u.call(i,c)}:i[a]=(...p)=>{if(this.defaults.async)return(async()=>{let d=await o.apply(i,p);return d===!1&&(d=await u.apply(i,p)),d})();let c=o.apply(i,p);return c===!1&&(c=u.apply(i,p)),c}}r.hooks=i}if(n.walkTokens){let i=this.defaults.walkTokens,s=n.walkTokens;r.walkTokens=function(a){let o=[];return o.push(s.call(this,a)),i&&(o=o.concat(i.call(this,a))),o}}this.defaults={......
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 41.5K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            final String tail = result.substring(omitIdx + omitMarker.length());
            // Verify 60/40 ratio: head=289, tail=194
            assertEquals(289, head.length());
            assertEquals(194, tail.length());
            // Head should be ~60% of bodyBudget
            final double headRatio = (double) head.length() / (head.length() + tail.length());
            assertTrue(headRatio > 0.55 && headRatio < 0.65);
    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)
  8. src/test/java/org/codelibs/fess/entity/RequestParameterTest.java

            String name = "getName";
            String[] values = { "test" };
            RequestParameter param = new RequestParameter(name, values);
    
            assertEquals(name, param.getName());
            // Call multiple times to ensure consistency
            assertEquals(name, param.getName());
            assertEquals(name, param.getName());
        }
    
        @Test
        public void test_getValues() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

            job.setScriptType("groovy");
            job.setScriptData("println 'test'");
            job.setTarget("all");
            return job;
        }
    
        @FunctionalInterface
        private interface LaunchNowWithParamsCallback {
            LaunchedProcess call(LaunchNowOpCall opCall);
        }
    
        private void registerMockJobManager(final String jobId, final LaunchNowWithParamsCallback withParamsCallback) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

     *
     * <p>Thread Safety: This class is thread-safe. Each cached entry holds its own
     * GroovyClassLoader. The cache uses Guava Cache with segment-based locking for
     * lock-free concurrent reads. Each evaluate() call creates a new Script instance
     * to ensure thread isolation of bindings.</p>
     *
     * <p>Note on class-level isolation: Compiled Script classes are cached and reused.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
Back to Top