- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 637 for Clauses (0.05 sec)
-
CODE_OF_CONDUCT.md
### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage],
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Oct 17 06:18:13 UTC 2024 - 5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
assertNull(ssoManager.getResponse(SsoResponseType.METADATA)); assertNull(ssoManager.getResponse(SsoResponseType.LOGOUT)); assertNull(ssoManager.logout(FessUserBean.empty())); } // Helper classes for testing private static class TestLoginCredential implements LoginCredential { private final String username; public TestLoginCredential(String username) { this.username = username;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java
StorageException exception = new StorageException(message); assertEquals(message, exception.getMessage()); } public void test_differentCauseTypes() { // Test with different types of causes StorageException exception1 = new StorageException("IO Error", new java.io.IOException("File not found")); assertTrue(exception1.getCause() instanceof java.io.IOException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
fail("Expected NullPointerException"); } catch (NullPointerException e) { // Expected when null listener is set } } // Test helper classes private static class TestScriptEngine implements ScriptEngine { private String lastScript; private Map<String, Object> lastParams; private final String prefix;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java
* {@link DependencyScope#TEST TEST} or {@link DependencyScope#TEST_ONLY TEST_ONLY} * {@linkplain Dependency#getScope() scope}. An {@code --add-reads} option may need * to be generated for compiling and running the test classes that use such dependencies.</p> * * @param dependency path to the dependency for which to get the module name * @return module name of the dependency at the given path, or empty if the dependency is not modular
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 05 14:29:21 UTC 2025 - 6.3K bytes - Viewed (0) -
src/test/java/jcifs/EncodableTest.java
"System.arraycopy should throw for insufficient destination space"); } @Test @DisplayName("encode() throws when dstIndex causes overflow") void encodeThrowsWhenDstIndexCausesOverflow() { byte[] src = makeSeq(5); Encodable enc = new ByteEncodable(src, 0, 5);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcExceptionTest.java
*/ @Test void testGetMessageByDcerpcError_largerThanAny() { int unknownCode = 0x7FFFFFFF; // Max int value // The current implementation has a bug in the binary search that causes ArrayIndexOutOfBoundsException assertThrows(ArrayIndexOutOfBoundsException.class, () -> { DcerpcException.getMessageByDcerpcError(unknownCode);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
assertEquals(longMessage, exception.getMessage()); assertNull(exception.getCause()); } public void test_getCause_withNestedExceptions() { // Test deeply nested exception causes Exception level3 = new Exception("Level 3: Database connection failed"); Exception level2 = new Exception("Level 2: User lookup failed", level3);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
docs/es/docs/how-to/custom-request-and-route.md
# Clase personalizada de Request y APIRoute En algunos casos, puede que quieras sobrescribir la lógica utilizada por las clases `Request` y `APIRoute`. En particular, esta puede ser una buena alternativa a la lógica en un middleware. Por ejemplo, si quieres leer o manipular el request body antes de que sea procesado por tu aplicación. /// danger | Advertencia Esta es una funcionalidad "avanzada".
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
ComponentUtil.register(queryProcessor, "queryProcessor"); // Call child class specific setup setUpChild(); } /** * Override this method in child classes to perform additional setup */ protected void setUpChild() throws Exception { // Default implementation does nothing } /** * Creates and registers a properly initialized FessConfig
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0)