- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 164 for yargs (0.01 sec)
-
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
assertEquals(7, r); verify(mockOut).write(eq(buf), eq(2), eq(4)); verify(mockIn).read(eq(recv)); } @Test @DisplayName("recv delegates to input.readDirect with args") void recv_delegates_readDirect() throws Exception { SmbPipeHandleImpl handle = newHandleWithBasicStubs(0, "\\\\pipe\\\\y"); // Mock the stream directly
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 16.7K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/PrintEvents.java
try (ResponseBody body = response.body()) { // Consume and discard the response body. body.source().readByteString(); } } }); } public static void main(String... args) throws Exception { new PrintEvents().run(); } private static final class PrintingEventListener extends EventListener { private static final Factory FACTORY = new Factory() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 16 23:20:49 UTC 2020 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionInternalTest.java
assertTrue(ex.getMessage().contains("failed")); verify(session).treeConnectLogon(); } // Happy path: getSmbTree returns a tree and receives correct args @Test @DisplayName("getSmbTree returns tree and captures arguments") void getSmbTree_happy() { when(session.getSmbTree(anyString(), anyString())).thenReturn(tree); String share = "share";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
*/ private Object invokeMethod(Object obj, String methodName, Class<?>[] paramTypes, Object... args) throws Exception { Method method = obj.getClass().getDeclaredMethod(methodName, paramTypes); method.setAccessible(true); return method.invoke(obj, args); } /** * Tests for the TreeConnectResponse interface using a mock implementation */ @Nested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
okhttp/build.gradle.kts
val idnaOutput = layout.buildDirectory.dir("generated/sources/idnaMappingTable") outputs.dir(idnaOutput) mainClass.set("okhttp3.internal.idn.GenerateIdnaMappingTableCode") args(idnaOutput.get()) classpath = generateIdnaMappingTableConfiguration } kotlin { jvmToolchain(8) jvm { } androidTarget { compilerOptions { jvmTarget.set(JvmTarget.JVM_17)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 03 03:59:03 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
* Adds multiple command-line arguments to pass to the Python script. * * @param values the argument values to add * @return this PythonJob instance for method chaining */ public PythonJob args(final String... values) { stream(values).of(stream -> stream.forEach(argList::add)); return this; } /** * Executes the Python script job.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
mvnw.cmd
" exit 1;"^ "}"^ "}" if ERRORLEVEL 1 goto error ) @REM Provide a "standardized" way to retrieve the CLI args that will @REM work with both Windows and non-Windows executions. set MAVEN_CMD_LINE_ARGS=%* %MAVEN_JAVA_EXE% ^ %JVM_CONFIG_MAVEN_PROPS% ^ %MAVEN_OPTS% ^ %MAVEN_DEBUG_OPTS% ^
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Oct 14 22:24:15 UTC 2024 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeHandleImplTest.java
int n = spyTarget.recv(b, 2, 4); assertEquals(7, n); verify(in).readDirect(b, 2, 4); } @Test @DisplayName("send delegates to output.writeDirect with provided args") void testSendDelegation() throws Exception { SmbPipeHandleImpl spyTarget = spy(target); SmbPipeOutputStream out = mock(SmbPipeOutputStream.class); doReturn(out).when(spyTarget).getOutput();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.7K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeResolver.java
Type owner = type.getOwnerType(); Type resolvedOwner = (owner == null) ? null : resolveType(owner); Type resolvedRawType = resolveType(type.getRawType()); Type[] args = type.getActualTypeArguments(); Type[] resolvedArgs = resolveTypes(args); return Types.newParameterizedTypeWithOwner( resolvedOwner, (Class<?>) resolvedRawType, resolvedArgs); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
} } return true; } private static IllegalArgumentException formatIllegalArgumentException( String format, Object... args) { return new IllegalArgumentException(String.format(Locale.ROOT, format, args)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0)