Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for Synchronizer (0.25 sec)

  1. tensorflow/compiler/jit/xla_launch_util.cc

        if (device->device_type() == DEVICE_GPU) {
          // The GPUDeviceContext enqueues the host->device transfer in a
          // separate stream from the main compute stream. We must ensure the
          // compute stream is synchronized with the host->device transfer
          // stream now otherwise we will create a race condition.
          auto* gpu_device_context =
              static_cast<GPUDeviceContext*>(ctx->op_device_context());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status.go

    	}
    
    	// We don't do markVolumesFromNode(node) here and leave it to the regular syncNodeStatus().
    	return true
    }
    
    // syncNodeStatus should be called periodically from a goroutine.
    // It synchronizes node status to master if there is any change or enough time
    // passed from the last sync, registering the kubelet first if necessary.
    func (kl *Kubelet) syncNodeStatus() {
    	kl.syncNodeStatusMux.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * <p>This method is safe to use even when {@code sortedMultiset} is a synchronized or concurrent
       * collection that is currently being modified by another thread.
       *
       * @throws NullPointerException if {@code sortedMultiset} or any of its elements is null
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    }
    
    var (
    	_ controllerInterface      = &Controller{}
    	_ serviceregistry.Instance = &Controller{}
    )
    
    type ambientIndex = ambient.Index
    
    // Controller is a collection of synchronized resource watchers
    // Caches are thread-safe
    type Controller struct {
    	opts Options
    
    	client kubelib.Client
    
    	queue queue.Instance
    
    	namespaces kclient.Client[*v1.Namespace]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/service.go

    	// Class E subnet (240.240.0.0/16) or reserved Benchmarking IP range
    	// (2001:2::/48) in RFC5180.for service entries with non-wildcard
    	// hostnames. The IPs assigned to services are not
    	// synchronized across istiod replicas as the DNS resolution
    	// for these service entries happens completely inside a pod
    	// whose proxy is managed by one istiod. That said, the algorithm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. src/runtime/runtime2.go

    // It is particularly important to avoid write barriers when the current P has
    // been released, because the GC thinks the world is stopped, and an
    // unexpected write barrier would not be synchronized with the GC,
    // which can lead to a half-executed write barrier that has marked the object
    // but not queued it. If the GC skips the object and completes before the
    // queuing can occur, it will incorrectly free the object.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top