Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 181 for xargs (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. guava-tests/test/com/google/common/math/LongMathTest.java

        assertEquals(10, LongMath.saturatedAbs(10));
        assertEquals(10, LongMath.saturatedAbs(-10));
      }
    
      private static void failFormat(String template, Object... args) {
        assertWithMessage(template, args).fail();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  8. 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)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                      if (!method.getDeclaringClass().equals(type)) {
                        return method.invoke(delegate, args);
                      }
                      checkState(started.getCount() == 1);
                      started.countDown();
                      try {
                        return method.invoke(delegate, args);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 75.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java

                      new Class<?>[] {SetMultimap.class},
                      new InvocationHandler() {
                        @Override
                        public Object invoke(Object proxy, Method method, Object[] args)
                            throws Throwable {
                          throw new UnsupportedOperationException();
                        }
                      });
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 28.7K bytes
    - Viewed (0)
Back to top