Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 294 for Updatef (0.13 sec)

  1. pkg/kubelet/config/config.go

    			s.updates <- *reconciles
    		}
    
    	case PodConfigNotificationSnapshotAndUpdates:
    		if len(removes.Pods) > 0 || len(adds.Pods) > 0 || firstSet {
    			s.updates <- kubetypes.PodUpdate{Pods: s.mergedState().([]*v1.Pod), Op: kubetypes.SET, Source: source}
    		}
    		if len(updates.Pods) > 0 {
    			s.updates <- *updates
    		}
    		if len(deletes.Pods) > 0 {
    			s.updates <- *deletes
    		}
    
    	case PodConfigNotificationSnapshot:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/endpointshards.go

    	// ServiceAccounts has the concatenation of all service accounts seen so far in endpoints.
    	// This is updated on push, based on shards. If the previous list is different than
    	// current list, a full push will be forced, to trigger a secure naming update.
    	// Due to the larger time, it is still possible that connection errors will occur while
    	// CDS is updated.
    	ServiceAccounts sets.String
    }
    
    // Keys gives a sorted list of keys for EndpointShards.Shards.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pkg/kubelet/config/config_test.go

    			if podsDifferSemantically(expected[i].Pods[j], update.Pods[j]) || !reflect.DeepEqual(expected[i].Pods[j].Status, update.Pods[j].Status) {
    				t.Fatalf("Expected %#v, Got %#v", expected[i].Pods[j], update.Pods[j])
    			}
    		}
    	}
    	expectNoPodUpdate(t, ch)
    }
    
    func expectNoPodUpdate(t *testing.T, ch <-chan kubetypes.PodUpdate) {
    	select {
    	case update := <-ch:
    		t.Errorf("Expected no update in channel, Got %#v", update)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_pod_control.go

    		updateErr := spc.objectMgr.UpdatePod(pod)
    		if updateErr == nil {
    			return nil
    		}
    
    		if updated, err := spc.objectMgr.GetPod(set.Namespace, pod.Name); err == nil {
    			// make a copy so we don't mutate the shared cache
    			pod = updated.DeepCopy()
    		} else {
    			utilruntime.HandleError(fmt.Errorf("error getting updated Pod %s/%s: %w", set.Namespace, pod.Name, err))
    		}
    
    		return updateErr
    	})
    	if attemptedUpdate {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    		{Event: framework.ClusterEvent{Resource: framework.Node, ActionType: framework.Add | framework.Update}, QueueingHintFn: pl.isSchedulableAfterNodeChange},
    	}
    	if !pl.enableSchedulingQueueHint {
    		return clusterEventWithHint
    	}
    	// When the QueueingHint feature is enabled,
    	// the scheduling queue uses Pod/Update Queueing Hint
    	// to determine whether a Pod's update makes the Pod schedulable or not.
    	// https://github.com/kubernetes/kubernetes/pull/122234
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Striped64.java

      /**
       * Computes the function of current and new value. Subclasses should open-code this update
       * function for most uses, but the virtualized form is needed within retryUpdate.
       *
       * @param currentValue the current value (of either base or a cell)
       * @param newValue the argument from a user update call
       * @return result of the update function
       */
      abstract long fn(long currentValue, long newValue);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/events.go

    	// AssignedPodUpdate is the event when a pod is updated that causes pods with matching affinity
    	// terms to be more schedulable.
    	AssignedPodUpdate = framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Update, Label: "AssignedPodUpdate"}
    	// UnscheduledPodUpdate is the event when an unscheduled pod is updated.
    	UnscheduledPodUpdate = framework.ClusterEvent{Resource: framework.Pod, ActionType: framework.Update, Label: "UnschedulablePodUpdate"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/Striped64.java

      /**
       * Computes the function of current and new value. Subclasses should open-code this update
       * function for most uses, but the virtualized form is needed within retryUpdate.
       *
       * @param currentValue the current value (of either base or a cell)
       * @param newValue the argument from a user update call
       * @return result of the update function
       */
      abstract long fn(long currentValue, long newValue);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/Striped64.java

      /**
       * Computes the function of current and new value. Subclasses should open-code this update
       * function for most uses, but the virtualized form is needed within retryUpdate.
       *
       * @param currentValue the current value (of either base or a cell)
       * @param newValue the argument from a user update call
       * @return result of the update function
       */
      abstract long fn(long currentValue, long newValue);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/CachedEnvironmentStateCodec.kt

            writeBoolean(value.cleared)
    
            writeCollection(value.updates) { update ->
                val keyString = update.key.toString()
                withPropertyTrace(PropertyTrace.SystemProperty(keyString, update.location)) {
                    try {
                        writeClass(update.javaClass)
                        write(update.key)
                        write(update.value)
                    } catch (error: Exception) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top