Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 167 for enqueued (0.15 sec)

  1. tensorflow/c/eager/c_api.h

    // one of the source or destination devices to be CPU (i.e., for the source or
    // destination tensor to be placed in host memory).
    // If async execution is enabled, the copy may be enqueued and the call will
    // return "non-ready" handle. Else, this function returns after the copy has
    // been done.
    TF_CAPI_EXPORT extern TFE_TensorHandle* TFE_TensorHandleCopyToDevice(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
  2. architecture/ambient/ztunnel.md

    Ztunnel will request certificates for all identities on the node.
    It determines this based on the Workload xDS configuration it receives.
    When a new identity is discovered on the node, it will be enqueued for fetching at a low priority, as an optimization.
    However, if a request needs a certain identity that we have not fetched yet, it will be immediately requested.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set.go

    		}
    		logger.V(4).Info("Orphan Pod objectMeta updated.", "pod", klog.KObj(oldPod), "oldObjectMeta", oldPod.ObjectMeta, "curObjectMeta", curPod.ObjectMeta)
    		for _, rs := range rss {
    			rsc.enqueueRS(rs)
    		}
    	}
    }
    
    // When a pod is deleted, enqueue the replica set that manages the pod and update its expectations.
    // obj could be an *v1.Pod, or a DeletionFinalStateUnknown marker item.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. pkg/kube/krt/collection.go

    func (h *manyCollection[I, O]) onPrimaryInputEvent(items []Event[I], lock bool) {
    	if lock {
    		h.recomputeMu.Lock()
    		defer h.recomputeMu.Unlock()
    	}
    	// Between the events being enqueued and now, the input may have changed. Update with latest info.
    	// Note we now have the recomputeMu so this is safe; any futures calls will do the same so always have up-to-date information.
    	for idx, ev := range items {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    // to validate and enqueue a request for the queueSet/QueueSet:
    // 1) Start with shuffle sharding, to pick a queue.
    // 2) Reject current request if there is not enough concurrency shares and
    // we are at max queue length
    // 3) If not rejected, create a request and enqueue
    // returns the enqueud request on a successful enqueue
    // returns nil in the case that there is no available concurrency or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  6. architecture/networking/pilot.md

    Various components described in Config Ingestion can trigger a Config Update. These are batched up ("debounced"), to avoid excessive activity when many changes happen in succession, and eventually enqueued in the Push Queue.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller_base.go

    		obj = unknown.Obj
    	}
    	objName, err := controller.KeyFunc(obj)
    	if err != nil {
    		logger.Error(err, "Failed to get key from object")
    		return
    	}
    	logger.V(5).Info("Enqueued for sync", "objName", objName)
    	queue.Add(objName)
    }
    
    func (ctrl *PersistentVolumeController) storeVolumeUpdate(logger klog.Logger, volume interface{}) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  8. pilot/pkg/xds/delta.go

    	// initialization doesn't have dependencies that will block, there is no need to add any timeout
    	// here. Prior to this explicit wait, we were implicitly waiting by receive() not sending to
    	// reqChannel and the connection not being enqueued for pushes to pushChannel until the
    	// initialization is complete.
    	<-con.InitializedCh()
    
    	for {
    		// Go select{} statements are not ordered; the same channel can be chosen many times.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. CHANGELOG.md

     *  Fix: Skip early hints (status code 103) responses.
     *  Fix: Don't log sensitive headers in `Request.toString()`.
     *  Fix: Don't crash when the dispatcher's `ExecutorService` is shutdown with many
        calls still enqueued.
     *  Upgrade: [GraalVM 22][graalvm_22].
     *  Upgrade: [Kotlin 1.7.10][kotlin_1_7_10].
    
    
    ## Version 5.0.0-alpha.10
    
    _2022-06-26_
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/graph_builder.go

    			}
    			logger.V(5).Info("add virtual item", "identity", ownerNode.identity)
    			gb.uidToNode.Write(ownerNode)
    		}
    		ownerNode.addDependent(n)
    		if !ok {
    			// Enqueue the virtual node into attemptToDelete.
    			// The garbage processor will enqueue a virtual delete
    			// event to delete it from the graph if API server confirms this
    			// owner doesn't exist.
    			gb.attemptToDelete.Add(ownerNode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top