Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for task1 (0.02 sec)

  1. tensorflow/c/eager/c_api_distributed_test.cc

    1. // Pack 3 variable handles into one TFE_TensorHandle.
    2. // When remote is false, function device is placed on task0. Handle types are
    3. // REMOTE, REMOTE, LOCAL on task0. When remote is true, function device is
    4. // placed on task1, Handle types are LOCAL, REMOTE, LOCAL on task1.
    5. int num_replicas = 3;
    6. std::vector<TFE_TensorHandle*> handles = {h0, h1, h2};
    7. TFE_TensorHandle* packed_handle =
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. docs/en/docs/management-tasks.md

    1. # Repository Management Tasks
    2.  
    3. These are the tasks that can be performed to manage the FastAPI repository by [team members](./fastapi-people.md#team){.internal-link target=_blank}.
    4.  
    5. /// tip
    6.  
    7. This section is useful only to a handful of people, team members with permissions to manage the repository. You can probably skip it. ๐Ÿ˜‰
    8.  
    9. ///
    10.  
    11. ...so, you are a [team member of FastAPI](./fastapi-people.md#team){.internal-link target=_blank}? Wow, you are so cool! ๐Ÿ˜Ž
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Aug 16 21:56:33 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

    1. tasks.withType(AsciidoctorTask.class).configureEach(task -> {
    2. if (task.getName().equals("asciidoctor")) {
    3. // ignore this task
    4. task.setEnabled(false);
    5. return;
    6. }
    7.  
    8. task.setExecutionMode(ExecutionMode.OUT_OF_PROCESS);
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

    1. * cancelled).
    2. *
    3. * <p>This class serializes execution of <i>submitted</i> tasks but not any <i>listeners</i> of
    4. * those tasks.
    5. *
    6. * <p>Submitted tasks have a happens-before order as defined in the Java Language Specification.
    7. * Tasks execute with the same happens-before order that the function calls to {@link #submit} and
    8. * {@link #submitAsync} that submitted those tasks had.
    9. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/WrappingExecutorServiceTest.java

    1. public <T> Future<T> submit(Callable<T> task) {
    2. lastMethodCalled = "submit";
    3. assertThat(task).isInstanceOf(WrappedCallable.class);
    4. return inline.submit(task);
    5. }
    6.  
    7. @Override
    8. public Future<?> submit(Runnable task) {
    9. lastMethodCalled = "submit";
    10. assertThat(task).isInstanceOf(WrappedRunnable.class);
    11. return inline.submit(task);
    12. }
    13.  
    14. @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java

    1. private static class FakeExecutor implements Executor {
    2. Queue<Runnable> tasks = Queues.newArrayDeque();
    3.  
    4. @Override
    5. public void execute(Runnable command) {
    6. tasks.add(command);
    7. }
    8.  
    9. boolean hasNext() {
    10. return !tasks.isEmpty();
    11. }
    12.  
    13. void runNext() {
    14. assertTrue("expected at least one task to run", hasNext());
    15. tasks.remove().run();
    16. }
    17.  
    18. void runAll() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/WrappingExecutorServiceTest.java

    1. public <T> Future<T> submit(Callable<T> task) {
    2. lastMethodCalled = "submit";
    3. assertThat(task).isInstanceOf(WrappedCallable.class);
    4. return inline.submit(task);
    5. }
    6.  
    7. @Override
    8. public Future<?> submit(Runnable task) {
    9. lastMethodCalled = "submit";
    10. assertThat(task).isInstanceOf(WrappedRunnable.class);
    11. return inline.submit(task);
    12. }
    13.  
    14. @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/MoreExecutors.java

    1. * turn, and does not create any threads of its own.
    2. *
    3. * <p>After execution begins on a thread from the {@code delegate} {@link Executor}, tasks are
    4. * polled and executed from a task queue until there are no more tasks. The thread will not be
    5. * released until there are no more tasks to run.
    6. *
    7. * <p>If a task is submitted while a thread is executing tasks from the task queue, the thread
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

    1. AfterOtherTasks,
    2. }
    3.  
    4. /** Returns the task that was started, or null if there were no tasks to start. */
    5. private fun startNextTask(): SerialTask? {
    6. taskRunner.assertThreadHoldsLock()
    7.  
    8. val index = serialTaskQueue.indexOfFirst { it.isReady() }
    9. if (index == -1) return null
    10.  
    11. val nextTask = serialTaskQueue.removeAt(index)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

    1. * Executor, and sequentially such that no two will ever be running at the same time.
    2. *
    3. * <p>Tasks submitted to {@link #execute(Runnable)} are executed in FIFO order.
    4. *
    5. * <p>The execution of tasks is done by one thread as long as there are tasks left in the queue.
    6. * When a task is {@linkplain Thread#interrupt interrupted}, execution of subsequent tasks
    7. * continues. See {@link QueueWorker#workOnQueue} for details.
    8. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top