Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for enqueuePdb (0.2 sec)

  1. pkg/controller/statefulset/stateful_set.go

    		// having its status updated with the newly available replica.
    		if !podutil.IsPodReady(oldPod) && podutil.IsPodReady(curPod) && set.Spec.MinReadySeconds > 0 {
    			logger.V(2).Info("StatefulSet will be enqueued after minReadySeconds for availability check", "statefulSet", klog.KObj(set), "minReadySeconds", set.Spec.MinReadySeconds)
    			// Add a second to avoid milliseconds skew in AddAfter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            this.dependenciesMayChange = component.getModule().isVirtualPlatform();
        }
    
        // the enqueue and dequeue methods are used for performance reasons
        // in order to avoid tracking the set of enqueued nodes
        boolean enqueue() {
            if (queued) {
                return false;
            }
            queued = true;
            return true;
        }
    
        NodeState dequeue() {
            queued = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set.go

    		// "closer" to kubelet (from the deployment to the replica set controller).
    		if !podutil.IsPodReady(oldPod) && podutil.IsPodReady(curPod) && rs.Spec.MinReadySeconds > 0 {
    			logger.V(2).Info("pod will be enqueued after a while for availability check", "duration", rs.Spec.MinReadySeconds, "kind", rsc.Kind, "pod", klog.KObj(oldPod))
    			// Add a second to avoid milliseconds skew in AddAfter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/types.go

    // If it returns an error, we'll take the returned QueueingHint as `Queue` at the caller whatever we returned here so that
    // we can prevent the Pod from being stuck in the unschedulable pod pool.
    //
    // - `pod`: the Pod to be enqueued, which is rejected by this plugin in the past.
    // - `oldObj` `newObj`: the object involved in that event.
    //   - For example, the given event is "Node deleted", the `oldObj` will be that deleted Node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/graph_builder.go

    		},
    	})
    }
    
    // addDependentToOwners adds n to owners' dependents list. If the owner does not
    // exist in the gb.uidToNode yet, a "virtual" node will be created to represent
    // the owner. The "virtual" node will be enqueued to the attemptToDelete, so that
    // attemptToDeleteItem() will verify if the owner exists according to the API server.
    func (gb *GraphBuilder) addDependentToOwners(logger klog.Logger, n *node, owners []metav1.OwnerReference) {
    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