- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 392 for wrappers (0.8 sec)
-
src/test/java/jcifs/smb/SpnegoContextTest.java
ctx.setMechs(updated); assertArrayEquals(updated, ctx.getMechs()); } @Test @DisplayName("toString includes wrapped mechanism context") void testToString() { SpnegoContext ctx = newContext(); when(this.mechContext.toString()).thenReturn("MECHCTX"); assertEquals("SPNEGO[MECHCTX]", ctx.toString()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/SmbTreeTest.java
* Test for unwrap with nested wrapping. * Verifies that unwrap works correctly with multiple levels of wrapping. */ @Test void testUnwrap_nestedWrapping() { // Create a chain of wrapped trees CustomSmbTree innerTree = mock(CustomSmbTree.class); ExtendedSmbTree middleTree = mock(ExtendedSmbTree.class); when(smbTree.unwrap(ExtendedSmbTree.class)).thenReturn(middleTree);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
} /** * Converts an array to an object array ({@literal Object[]}). * <p> * The source array can be a primitive array. In that case, the resulting array will contain the corresponding wrapper types. * </p> * * @param array * the array * @return the object array */ public static Object[] toObjectArray(final Object array) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 41.5K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedLongs.java
* number. * * <p>Users of these utilities must be <i>extremely careful</i> not to mix up signed and unsigned * {@code long} values. When possible, it is recommended that the {@link UnsignedLong} wrapper class * be used, at a small efficiency penalty, to enforce the distinction in the type system. * * <p>See the Guava User Guide article on <a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
/** * <p>Under normal conditions it is not necessary to use * this class to use jCIFS properly. Name resolusion is * handled internally to the <code>jcifs.smb1.smb1</code> package. * <p> * This class is a wrapper for both {@link jcifs.smb1.netbios.NbtAddress} * and {@link java.net.InetAddress}. The name resolution mechanisms * used will systematically query all available configured resolution
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
import java.util.TimeZone; import jcifs.Configuration; import jcifs.DialectVersion; import jcifs.ResolverType; /** * Configuration implementation that delegates to another configuration instance. * Provides a wrapper mechanism for configuration objects with delegation pattern. * * @author mbechler */ public class DelegatingConfiguration implements Configuration { private final Configuration delegate; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
assertNotNull(queryString); assertTrue(queryString.contains("expires")); } public void test_execute_withIOException() { // Create mock SearchEngineClient that throws IOException wrapped in RuntimeException searchEngineClient = new SearchEngineClient() { @Override public long deleteByQuery(String index, QueryBuilder query) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
/** * A resolver for login credentials that wraps the standard credential resolver * to provide SSO authentication support. */ public static class LoginCredentialResolver { /** The wrapped credential resolver. */ private final TypicalLoginAssist<String, FessUserBean, FessUser>.CredentialResolver resolver; /** * Creates a new login credential resolver. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
GradleBuildStep(init) .apply(custom) .also { step(it) } /** * Adds a [Gradle build step](https://confluence.jetbrains.com/display/TCDL/Gradle) * that runs with the Gradle wrapper. * * @see GradleBuildStep */ fun BuildSteps.gradleWrapper( buildType: BuildType? = null, init: GradleBuildStep.() -> Unit, ): GradleBuildStep = customGradle(init) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/EventBusTest.java
bus.post(new DeadEvent(this, EVENT)); List<DeadEvent> events = catcher.getEvents(); assertEquals("The explicit DeadEvent should be delivered.", 1, events.size()); assertEquals("The dead event must not be re-wrapped.", EVENT, events.get(0).getEvent()); } public void testMissingSubscribe() { bus.register(new Object()); } public void testUnregister() { StringCatcher catcher1 = new StringCatcher();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 11.3K bytes - Viewed (0)