Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 164 for workerID (0.05 sec)

  1. docs/de/docs/deployment/manually.md

    1. ```console
    2. $ pip install "hypercorn[trio]"
    3. ---> 100%
    4. ```
    5.  
    6. </div>
    7.  
    8. ### Mit Trio ausführen
    9.  
    10. Dann können Sie die Befehlszeilenoption `--worker-class` mit dem Wert `trio` übergeben:
    11.  
    12. <div class="termy">
    13.  
    14. ```console
    15. $ hypercorn main:app --worker-class trio
    16. ```
    17.  
    18. </div>
    19.  
    20. Und das startet Hypercorn mit Ihrer Anwendung und verwendet Trio als Backend.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device_remote_test.cc

    1. TF_NewStatus(), TF_DeleteStatus);
    2. std::unique_ptr<TFE_Context, decltype(&TFE_DeleteContext)> context(
    3. TFE_NewContext(opts.get(), status.get()), TFE_DeleteContext);
    4. tensorflow::ServerDef server_def = GetServerDef("worker", 3);
    5.  
    6. // This server def has the task index set to 0.
    7. std::string serialized = server_def.SerializeAsString();
    8.  
    9. server_def.set_task_index(1);
    10. std::unique_ptr<tensorflow::GrpcServer> worker_server1;
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Jul 10 07:18:05 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportAggregationWorkAction.kt

    1. * See the License for the specific language governing permissions and
    2. * limitations under the License.
    3. */
    4.  
    5. package gradlebuild.incubation.action
    6.  
    7. import org.gradle.workers.WorkAction
    8.  
    9.  
    10. abstract class IncubatingApiReportAggregationWorkAction : WorkAction<IncubatingApiReportAggregationParameter> {
    11. override fun execute() {
    12. val byCategory = mutableMapOf<String, ReportNameToProblems>()
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Jan 18 06:55:55 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  4. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

    1. val expectedInstallationPaths = if (os == Os.WINDOWS) windowsPaths else linuxPaths
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Sep 24 06:22:49 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/common/extensions.kt

    1. listOf(
    2. // We pass the 'maxParallelForks' setting as 'workers.max' to limit the maximum number of executers even
    3. // if multiple test tasks run in parallel. We also pass it to the Gradle build as a maximum (maxParallelForks)
    4. // for each test task, such that we are independent of whatever default value is defined in the build itself.
    5. "-Dorg.gradle.workers.max=$maxParallelForks",
    6. "-PmaxParallelForks=$maxParallelForks",
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Oct 10 03:25:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

    1. import org.gradle.api.tasks.Nested;
    2. import org.gradle.api.tasks.Optional;
    3. import org.gradle.api.tasks.OutputFile;
    4. import org.gradle.api.tasks.TaskAction;
    5. import org.gradle.util.GradleVersion;
    6. import org.gradle.workers.WorkQueue;
    7. import org.gradle.workers.WorkerExecutor;
    8.  
    9. import javax.inject.Inject;
    10. import java.io.File;
    11. import java.net.URISyntaxException;
    12. import java.security.CodeSource;
    13. import java.security.ProtectionDomain;
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

    1. };
    2.  
    3. tensorflow::mutex execution_mutex_;
    4. ExecutionState execution_state_ TF_GUARDED_BY(execution_mutex_) =
    5. ExecutionState::kIdle;
    6. // Tells the worker thread that there is new work.
    7. tensorflow::condition_variable start_execute_;
    8. // The worker thread notifies that work has finished.
    9. tensorflow::condition_variable finished_execute_;
    10. // Notifies a StartExecute that the previous Join has finished.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Oct 21 04:14:14 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. docs/zh/docs/deployment/manually.md

    1. <div class="termy">
    2.  
    3. ```console
    4. $ pip install "hypercorn[trio]"
    5. ---> 100%
    6. ```
    7.  
    8. </div>
    9.  
    10. ### Run with Trio
    11.  
    12. 然后你可以传递值`trio`给命令行选项`--worker-class`:
    13.  
    14. <div class="termy">
    15.  
    16. ```console
    17. $ hypercorn main:app --worker-class trio
    18. ```
    19.  
    20. </div>
    21.  
    22. 这将通过您的应用程序启动 Hypercorn,并使用 Trio 作为后端。
    23.  
    24. 现在您可以在应用程序内部使用 Trio。 或者更好的是,您可以使用 AnyIO,使您的代码与 Trio 和 asyncio 兼容。 🎉
    25.  
    26. ## 部署概念
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_test_util.h

    1. // Return a shape op fetching the shape of `a`.
    2. TFE_Op* ShapeOp(TFE_Context* ctx, TFE_TensorHandle* a);
    3.  
    4. // Return an allreduce op adding up input tensor `in` from `group_size` workers.
    5. TFE_Op* AllReduceOp(TFE_Context* ctx, TFE_TensorHandle* in, int group_size);
    6.  
    7. // Return a SendOp op `op_name` with send input tensor `in` and attributes
    8. // `send_device`, `recv_device`, and `send_device_incarnation` set.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Jul 17 23:43:59 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. docs/en/docs/img/deployment/concepts/process-ram.drawio

    1. <mxGeometry relative="1" as="geometry"/>
    2. </mxCell>
    3. <mxCell id="12" value="&lt;font face=&quot;roboto&quot;&gt;&lt;span style=&quot;font-size: 24px&quot;&gt;Worker Process&lt;/span&gt;&lt;/font&gt;" style="shape=hexagon;perimeter=hexagonPerimeter2;whiteSpace=wrap;html=1;fixedSize=1;strokeWidth=3;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 10K bytes
    - Viewed (0)
Back to top