Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 509 for task3 (0.02 sec)

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

    1. import javax.annotation.CheckForNull;
    2.  
    3. /**
    4. * {@link Error} variant of {@link java.util.concurrent.ExecutionException}. As with {@code
    5. * ExecutionException}, the error's {@linkplain #getCause() cause} comes from a failed task,
    6. * possibly run in another thread. That cause should itself be an {@code Error}; if not, use {@code
    7. * ExecutionException} or {@link UncheckedExecutionException}. This allows the client code to
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

    1. ).joinToString(separator = " ") + if (isRetry) " -PretryBuild" else ""
    2.  
    3. steps {
    4. gradleWrapper(this@gradleRunnerStep) {
    5. name = stepName
    6. tasks = "clean $gradleTasks"
    7. gradleParams = parameters
    8. executionMode = stepExecutionMode
    9. if (isRetry) {
    10. onlyRunOnGitHubMergeQueueBranch()
    11. }
    12. }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Sep 24 06:22:49 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/common/ImplementedInvokerAssistant.java

    1. // =========
    2. protected static final String[] DEFAULT_CLIENT_INVOKE_NAMES = { "Page", "Action", "Controller", "ControllerImpl", "Task", "Test" };
    3.  
    4. protected static final String[] DEFAULT_BYPASS_INVOKE_NAMES =
    5. { "Service", "ServiceImpl", "Facade", "FacadeImpl", "Logic", "LogicImpl" };
    6.  
    7. @Override
    8. public DBDef assistCurrentDBDef() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

    1. public void run() {
    2. runChosenTest();
    3. }
    4. };
    5. final FutureTask<@Nullable Void> task = new FutureTask<>(runChosenTest, null);
    6. startThread(
    7. new Runnable() {
    8. @Override
    9. public void run() {
    10. task.run();
    11. }
    12. });
    13. awaitUninterruptibly(doingCallLatch);
    14. long hangDelayMillis =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. tensorflow/c/eager/parallel_device/parallel_device_lib.h

    1. TF_Status* status) const;
    2.  
    3. void AsyncWait(TFE_Context* context, TF_Status* status) const;
    4.  
    5. // Device strings for component devices that only include a
    6. // worker/task/replica if any of those differ across components. Useful for
    7. // printing debug messages.
    8. std::vector<std::string> SummarizeDeviceNames() const;
    9.  
    10. private:
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Oct 21 04:14:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. architecture/build-state-model.md

    1. The build session state also includes "cross session" state that is shared with any "nested" sessions that need to be created.
    2. This only happens when the `GradleBuild` task is used. You can mostly ignore the distinction between "cross session" and "build session" state.
    3.  
    4. ### Build tree state
    5.  
    6. "Build tree" is another name for the build definition.
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/util/concurrent/testing/AbstractListenableFutureTest.java

    1. }
    2.  
    3. /** Tests that the {@link Future#get(long, TimeUnit)} method times out correctly. */
    4. public void testTimeoutOnGetWorksCorrectly() throws InterruptedException, ExecutionException {
    5.  
    6. // The task thread waits for the latch, so we expect a timeout here.
    7. try {
    8. future.get(20, MILLISECONDS);
    9. fail("Should have timed out trying to get the value.");
    10. } catch (TimeoutException expected) {
    11. } finally {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 18:30:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. docs/ru/docs/deployment/manually.md

    1. Starlette и **FastAPI** основаны на <a href="https://anyio.readthedocs.io/en/stable/" class="external-link" target="_blank">AnyIO</a>, которая делает их совместимыми как с <a href="https://docs.python.org/3/library/asyncio-task.html" class="external-link" target="_blank">asyncio</a> - стандартной библиотекой Python, так и с <a href="https://trio.readthedocs.io/en/stable/" class="external-link" target="_blank">Trio</a>.
    2.  
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. cmd/callhome.go

    1. "fmt"
    2. "math/rand"
    3. "net/url"
    4. "time"
    5.  
    6. "github.com/minio/madmin-go/v3"
    7. )
    8.  
    9. var callhomeLeaderLockTimeout = newDynamicTimeout(30*time.Second, 10*time.Second)
    10.  
    11. // initCallhome will start the callhome task in the background.
    12. func initCallhome(ctx context.Context, objAPI ObjectLayer) {
    13. if !globalCallhomeConfig.Enabled() {
    14. return
    15. }
    16.  
    17. go func() {
    18. r := rand.New(rand.NewSource(time.Now().UnixNano()))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 17 16:53:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java

    1. return ArtifactUtils.versionlessKey(project.getGroupId(), project.getArtifactId());
    2. }
    3.  
    4. public void registerBuildFailure(MavenProject project, Exception error, String task, long time) {
    5. buildFailuresByProject.put(getProjectKey(project), new BuildFailure(project, time, error));
    6. }
    7.  
    8. public boolean hasBuildFailures() {
    9. return !buildFailuresByProject.isEmpty();
    10. }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top