Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for task3 (0.04 sec)

  1. tensorflow/c/eager/c_api_test.cc

    1. tensorflow::JobDef* job_def2 = cluster_def->add_job();
    2. job_def2->set_name("worker");
    3.  
    4. // Copy over `host:port` at `task_index`
    5. for (auto task : cluster_server_def.cluster().job(0).tasks()) {
    6. if (task.first == task_index) {
    7. job_def2->mutable_tasks()->insert({task.first, task.second});
    8. }
    9. }
    10.  
    11. return single_host_server_def;
    12. }
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

    1. *
    2. * @throws RejectedExecutionException if the task cannot be scheduled for execution
    3. * @since 28.2
    4. */
    5. public static <O extends @Nullable Object> ListenableFuture<O> submit(
    6. Callable<O> callable, Executor executor) {
    7. TrustedListenableFutureTask<O> task = TrustedListenableFutureTask.create(callable);
    8. executor.execute(task);
    9. return task;
    10. }
    11.  
    12. /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Futures.java

    1. *
    2. * @throws RejectedExecutionException if the task cannot be scheduled for execution
    3. * @since 28.2
    4. */
    5. public static <O extends @Nullable Object> ListenableFuture<O> submit(
    6. Callable<O> callable, Executor executor) {
    7. TrustedListenableFutureTask<O> task = TrustedListenableFutureTask.create(callable);
    8. executor.execute(task);
    9. return task;
    10. }
    11.  
    12. /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 64.4K bytes
    - Viewed (0)
  4. go.sum

    1. github.com/go-openapi/swag v0.23.0/go.mod h1:esZ8ITTYEsH1V2trKHjAN8Ai7xHb8RV+YSZ577vPjgQ=
    2. github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
    3. github.com/go-task/slim-sprig/v3 v3.0.0 h1:sUs3vkvUymDpBKi3qH1YSqBQk9+9D/8M2mN1vB6EwHI=
    4. github.com/go-task/slim-sprig/v3 v3.0.0/go.mod h1:W848ghGpv3Qj3dhTPRyJypKRiqCdHZiAzKg9hl15HA8=
    5. github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y=
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Nov 06 06:23:25 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    1. if hIP := ingress.pods[0].Status.HostIP; hIP != "" {
    2. return hIP
    3. }
    4.  
    5. // The scope of this function is to get the IP from Kubernetes, we do not
    6. // ask Docker or minikube for an IP.
    7. // See https://istio.io/docs/tasks/traffic-management/ingress/ingress-control/#determining-the-ingress-ip-and-ports
    8. return "unknown"
    9. }
    10.  
    11. func printIngressInfo(
    12. writer io.Writer,
    13. matchingServices []corev1.Service,
    14. podsLabels []klabels.Set,
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 17:36:49 UTC 2024
    - 50.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/CacheBuilder.java

    1. * entries may be counted in {@link Cache#size}, but will never be visible to read or write
    2. * operations.
    3. *
    4. * <p>Certain cache configurations will result in the accrual of periodic maintenance tasks which
    5. * will be performed during write operations, or during occasional read operations in the absence of
    6. * writes. The {@link Cache#cleanUp} method of the returned cache will also perform maintenance, but
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    1. "application/dialog-info+xml",
    2. "application/dicom",
    3. "application/dita+xml",
    4. "application/dita+xml;format=map",
    5. "application/dita+xml;format=topic",
    6. "application/dita+xml;format=task",
    7. "application/dita+xml;format=concept",
    8. "application/dita+xml;format=val",
    9. "application/dns",
    10. "application/dvcs",
    11. "application/ecmascript",
    12. "application/edi-consent",
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheBuilder.java

    1. * entries may be counted in {@link Cache#size}, but will never be visible to read or write
    2. * operations.
    3. *
    4. * <p>Certain cache configurations will result in the accrual of periodic maintenance tasks which
    5. * will be performed during write operations, or during occasional read operations in the absence of
    6. * writes. The {@link Cache#cleanUp} method of the returned cache will also perform maintenance, but
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    1. // A Server instance encapsulates a set of devices and a Session target that
    2. // can participate in distributed training. A server belongs to a cluster
    3. // (specified by a ClusterSpec), and corresponds to a particular task in a
    4. // named job. The server can communicate with any other server in the same
    5. // cluster.
    6.  
    7. // In-process TensorFlow server.
    8. typedef struct TF_Server TF_Server;
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    1. bootstrapTrace("newSharedLock", func() {
    2. globalLeaderLock = newSharedLock(GlobalContext, z, "leader.lock")
    3. })
    4.  
    5. // Start self healing after the object initialization
    6. // so various tasks will be useful
    7. bootstrapTrace("initAutoHeal", func() {
    8. initAutoHeal(GlobalContext, z)
    9. })
    10.  
    11. // initialize the object layer.
    12. defer setObjectLayer(z)
    13.  
    14. r := rand.New(rand.NewSource(time.Now().UnixNano()))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 89.8K bytes
    - Viewed (0)
Back to top