- Sort Score
- Num 10 results
- Language All
Results 471 - 480 of 857 for nell (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
} @Test public void test_constructor_withAllNullParameters() { // Execute final InvalidQueryException exception = new InvalidQueryException(null, null, null); // Verify assertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); assertNull(exception.getMessageCode()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
assertSame(user, chain.updateCalls.get(0)); } // Test update with null user @Test public void test_update_nullUser() { TestAuthenticationChain chain = new TestAuthenticationChain(); chain.updateThrowsException = false; chain.update(null); assertEquals(1, chain.updateCalls.size()); assertNull(chain.updateCalls.get(0)); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
*/ protected int executeCommand(final String thumbnailId, final List<String> cmdList) { ProcessDestroyer task = null; Process p = null; InputStreamThread ist = null; try { final ProcessBuilder pb = new ProcessBuilder(cmdList); pb.directory(baseDir); pb.redirectErrorStream(true);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 01 12:47:47 GMT 2026 - 16.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/BuildableDOMCategory.groovy
cl.delegate = builder cl.call() def firstChild = parent.getFirstChild() builder.elements.each { element -> parent.insertBefore(element, firstChild) } } public static void addBefore(Node sibling, Closure cl) { DomBuilder builder = new DomBuilder(sibling.ownerDocument, null) cl.delegate = builderCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Aug 11 15:32:19 GMT 2022 - 2.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/BooleanQueryCommand.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 3.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmChatResponseTest.java
final LlmChatResponse response = new LlmChatResponse("Initial"); response.setContent(null); response.setFinishReason(null); response.setPromptTokens(null); response.setCompletionTokens(null); response.setTotalTokens(null); response.setModel(null); assertNull(response.getContent()); assertNull(response.getFinishReason());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 5.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
// Test with null command list try { final File outputFile = File.createTempFile("test", ".out"); outputFile.delete(); generator.setCommandList(null); generator.generate("test", outputFile); assertTrue(true); } catch (final Exception e) { assertTrue("Null command list should be handled", 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) -
src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java
private boolean resolveCalled = false; private Class<?> lastCredentialType; private Function<?, ?> lastFunction; public TestLoginCredentialResolver() { super(null); // Pass null since we're mocking } @Override public <CREDENTIAL extends LoginCredential> void resolve(final Class<CREDENTIAL> credentialType,Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.2K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
final Throwable cause = t.getCause(); if (cause != null) { errorName = cause.getClass().getCanonicalName(); } else { errorName = t.getClass().getCanonicalName(); } final FailureUrl failureUrl = storeFailureUrl(crawlerContext, urlQueue, errorName, t); if (failureUrl != null) { failureUrlId = failureUrl.getId(); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8.3K bytes - Click Count (0)