- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 395 for _parent (0.07 sec)
-
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
} catch (Exception e) { fail("Should have caught ThemeException, but caught: " + e.getClass()); } } public void test_catchAsFessSystemException() { // Test catching as parent exception type String message = "Theme error"; try { throw new ThemeException(message); } catch (FessSystemException e) { assertEquals(message, e.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.2K bytes - Viewed (0) -
guava-testlib/src/com/google/common/util/concurrent/testing/AbstractListenableFutureTest.java
import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; import junit.framework.TestCase; import org.jspecify.annotations.Nullable; /** * Abstract test case parent for anything implementing {@link ListenableFuture}. Tests the two get * methods and the addListener method. * * @author Sven Mawson * @since 10.0 */ @GwtIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java
} catch (Exception e) { fail("Should have caught FessUserNotFoundException"); } } public void test_throwAndCatchAsFessSystemException() { // Test catching as parent exception type String username = "testuser"; try { throw new FessUserNotFoundException(username); } catch (FessSystemException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.6K bytes - Viewed (0) -
docs/iam/identity-management-plugin.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 27 00:58:09 UTC 2022 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java
* * @param runtime the action runtime context containing request information * @return ActionResponse with unauthorized error if access denied, otherwise delegates to parent */ @Override public ActionResponse godHandPrologue(final ActionRuntime runtime) { if (!isAccessAllowed()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/https/HandlerTest.java
// Then assertEquals(443, port); assertEquals(Handler.DEFAULT_HTTPS_PORT, port); } @Test @DisplayName("Should override parent HTTP port") void testPortOverride() { // When int httpsPort = handler.getDefaultPort(); // Then assertEquals(443, httpsPort);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessClientTest.java
public TestWitnessClient(InetAddress witnessServer, CIFSContext context, WitnessRpcClient rpcClient) { super(witnessServer, context, rpcClient); } // TestWitnessClient can use the parent implementation now since we inject the mock RPC client }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponseTest.java
} @Test void testGetResponseLength() throws Exception { // Test getResponseLength method // First, set dataCount using reflection (since setDataCount is in parent class) Method setDataCountMethod = SmbComTransactionResponse.class.getDeclaredMethod("setDataCount", int.class); setDataCountMethod.setAccessible(true); setDataCountMethod.invoke(response, 256);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java
PRIMITIVE_BY_CLASS.put(fieldType, fieldType.isPrimitive()); } if (PRIMITIVE_BY_CLASS.get(fieldType)) { return false; } return !"parent".equals(field.getName()); } private void evaluateArray(Object target) throws ModelInterpolationException { int len = Array.getLength(target); for (int i = 0; i < len; i++) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/HandlerTest.java
assertEquals("smb", relativeUrl.getProtocol()); assertEquals("server", relativeUrl.getHost()); assertEquals("/share/folder/file.txt", relativeUrl.getPath()); // Test parent directory navigation URL parentUrl = new URL(baseUrl, "../other/file.txt"); assertEquals("smb", parentUrl.getProtocol()); assertEquals("server", parentUrl.getHost());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.4K bytes - Viewed (0)