Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 998 for task3 (0.08 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/author-tasks-1.png

    author-tasks-1.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 562.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/writing-tasks-2.png

    writing-tasks-2.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 70.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/writing-tasks-4.png

    writing-tasks-4.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

        doLast {
            println("Hello world!")
        }
    }
    ----
    
    Once the task is assigned to a group, it will be listed by `./gradlew tasks`:
    
    [source]
    ----
    $ ./gradlew tasks
    
    > Task :tasks
    
    Custom tasks
    ------------------
    hello - A lovely greeting task.
    ----
    
    To view information about a task, use the `help --task <task-name>` command:
    
    [source]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_distributed_test.cc

      // Pack 3 variable handles into one TFE_TensorHandle.
      // When remote is false, function device is placed on task0. Handle types are
      // REMOTE, REMOTE, LOCAL on task0. When remote is true, function device is
      // placed on task1, Handle types are LOCAL, REMOTE, LOCAL on task1.
      int num_replicas = 3;
      std::vector<TFE_TensorHandle*> handles = {h0, h1, h2};
      TFE_TensorHandle* packed_handle =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. src/cmd/trace/tasks.go

    func UserTasksHandlerFunc(t *parsedTrace) http.HandlerFunc {
    	return func(w http.ResponseWriter, r *http.Request) {
    		tasks := t.summary.Tasks
    
    		// Summarize groups of tasks with the same name.
    		summary := make(map[string]taskStats)
    		for _, task := range tasks {
    			stats, ok := summary[task.Name]
    			if !ok {
    				stats.Type = task.Name
    			}
    			stats.add(task)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    So if you only run `taskY` with `mustRunAfter`, you won't cause `taskX` to run.
    This is expressed as `taskY.mustRunAfter(taskX)`.
    
    ====
    include::sample[dir="snippets/tasks/mustRunAfter/kotlin",files="build.gradle.kts[]"]
    include::sample[dir="snippets/tasks/mustRunAfter/groovy",files="build.gradle[]"]
    
    ----
    $ gradle -q taskY taskX
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. docs/ja/docs/tutorial/background-tasks.md

    ```Python hl_lines="6-9"
    {!../../../docs_src/background_tasks/tutorial001.py!}
    ```
    
    ## バックグラウンドタスクの追加
    
    *path operations 関数* 内で、`.add_task()` メソッドを使用してタスク関数を *background tasks* オブジェクトに渡します。
    
    ```Python hl_lines="14"
    {!../../../docs_src/background_tasks/tutorial001.py!}
    ```
    
    `.add_task()` は以下の引数を受け取ります:
    
    * バックグラウンドで実行されるタスク関数 (`write_notification`)。
    * タスク関数に順番に渡す必要のある引数の列 (`email`)。
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 15 16:12:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/background-tasks.md

    {!../../../docs_src/background_tasks/tutorial001.py!}
    ```
    
    ## Add the background task
    
    Inside of your *path operation function*, pass your task function to the *background tasks* object with the method `.add_task()`:
    
    ```Python hl_lines="14"
    {!../../../docs_src/background_tasks/tutorial001.py!}
    ```
    
    `.add_task()` receives as arguments:
    
    * A task function to be run in the background (`write_notification`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/background-tasks.md

    Kani Kim <******@****.***> 1707659311 +0900
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 11 13:48:31 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top