Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for executor (0.74 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     exception itself.
       * @param executor the executor that runs {@code fallback} if the input fails
       */
      public <X extends Throwable> ClosingFuture<V> catching(
          Class<X> exceptionType, ClosingFunction<? super X, ? extends V> fallback, Executor executor) {
        return catchingMoreGeneric(exceptionType, fallback, executor);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     exception itself.
       * @param executor the executor that runs {@code fallback} if the input fails
       */
      public <X extends Throwable> ClosingFuture<V> catching(
          Class<X> exceptionType, ClosingFunction<? super X, ? extends V> fallback, Executor executor) {
        return catchingMoreGeneric(exceptionType, fallback, executor);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            };
        SettableFuture<String> inputFuture = SettableFuture.create();
        ExecutorService executor = newSingleThreadExecutor();
        ListenableFuture<Integer> future = transformAsync(inputFuture, function, executor);
    
        // Pause the executor.
        final CountDownLatch beforeFunction = new CountDownLatch(1);
        executor.execute(
            new Runnable() {
              @Override
              public void run() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            };
        SettableFuture<String> inputFuture = SettableFuture.create();
        ExecutorService executor = newSingleThreadExecutor();
        ListenableFuture<Integer> future = transformAsync(inputFuture, function, executor);
    
        // Pause the executor.
        final CountDownLatch beforeFunction = new CountDownLatch(1);
        executor.execute(
            new Runnable() {
              @Override
              public void run() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Result */
        public static final String LABELS_SCRIPT_RESULT = "{labels.scriptResult}";
    
        /** The key of the message: Executor */
        public static final String LABELS_SCRIPT_TYPE = "{labels.scriptType}";
    
        /** The key of the message: Segmentation */
        public static final String LABELS_SEGMENTATION = "{labels.segmentation}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    </pre>
    
    <pre>
    for i := 0; i &lt; 10; i++ {
    	f(i)
    }
    </pre>
    
    <p>
    If non-empty, the init statement is executed once before evaluating the
    condition for the first iteration;
    the post statement is executed after each execution of the block (and
    only if the block was executed).
    Any element of the ForClause may be empty but the
    <a href="#Semicolons">semicolons</a> are
    required unless there is only a condition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    // For more about gofmt, see 'go doc cmd/gofmt'.
    // For more about specifying packages, see 'go help packages'.
    //
    // The -n flag prints commands that would be executed.
    // The -x flag prints commands as they are executed.
    //
    // The -mod flag's value sets which module download mode
    // to use: readonly or vendor. See 'go help modules' for more.
    //
    // To run gofmt with specific options, run gofmt itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

          <description>
            The {@code @lt;execution>} element contains information required for the
            execution of a plugin.
          </description>
          <fields>
            <field>
              <name>id</name>
              <version>4.0.0+</version>
              <type>String</type>
              <defaultValue>default</defaultValue>
              <description>The identifier of this execution for labelling the goals during the build,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	// of completing higher-level actions. The order of
    	// work does not matter much to overall execution time,
    	// but when running "go test std" it is nice to see each test
    	// results as soon as possible. The priorities assigned
    	// ensure that, all else being equal, the execution prefers
    	// to do what it would have done first in a simple depth-first
    	// dependency order traversal.
    	all := actionList(root)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    throws Exception; public int size(); public Object clone(); public void clear(); public void clearArgs(); public Commandline$Marker createMarker(); public void setWorkingDirectory(String); public java.io.File getWorkingDirectory(); public Process execute() throws CommandLineException; public java.util.Properties getSystemEnvVars() throws Exception; } org/codehaus/plexus/util/cli/CommandLineException.class package org.codehaus.plexus.util.cli; public synchronized class CommandLineException extends...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top