Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,095 for Updatef (0.13 sec)

  1. pilot/pkg/xds/sds.go

    	}
    	return configs
    }
    
    func (sr SecretResource) Cacheable() bool {
    	return true
    }
    
    func sdsNeedsPush(updates model.XdsUpdates) bool {
    	if len(updates) == 0 {
    		return true
    	}
    	for update := range updates {
    		switch update.Kind {
    		case kind.Secret:
    			return true
    		case kind.ReferenceGrant:
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	// UpdateReconstructedDevicePath updates devicePath of a reconstructed volume
    	// from Node.Status.VolumesAttached. The ASW is updated only when the volume is still
    	// uncertain. If the volume got mounted in the meantime, its devicePath must have
    	// been fixed by such an update.
    	UpdateReconstructedDevicePath(volumeName v1.UniqueVolumeName, devicePath string)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption.go

    	}
    	if cleanAfter > 0 {
    		dc.enqueueStalePodDisruptionCleanup(logger, pod, cleanAfter)
    		return nil
    	}
    
    	newPod := pod.DeepCopy()
    	updated := apipod.UpdatePodCondition(&newPod.Status, &v1.PodCondition{
    		Type:   v1.DisruptionTarget,
    		Status: v1.ConditionFalse,
    	})
    	if !updated {
    		return nil
    	}
    	if _, err := dc.kubeClient.CoreV1().Pods(pod.Namespace).UpdateStatus(ctx, newPod, metav1.UpdateOptions{}); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster.go

    }
    
    func shouldUseDelta(updates *model.PushRequest) bool {
    	return updates != nil && deltaAwareConfigTypes(updates.ConfigsUpdated) && len(updates.ConfigsUpdated) > 0
    }
    
    // deltaAwareConfigTypes returns true if all updated configs are delta enabled.
    func deltaAwareConfigTypes(cfgs sets.Set[model.ConfigKey]) bool {
    	for k := range cfgs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    				}
    				if updateGot {
    					t.Errorf("Expected update=%t but got: %t", false, updateGot)
    				}
    				return
    			}
    
    			if !updateGot {
    				t.Errorf("Expected update=%t but got: %t", true, updateGot)
    			}
    			if !reflect.DeepEqual(test.newObjectExpected, updatableGot) {
    				t.Errorf("Expected the object to be updated to match - diff: %s", cmp.Diff(test.newObjectExpected, updatableGot))
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_pod_control_test.go

    	var updated *v1.Pod
    	fakeClient.PrependReactor("update", "pods", func(action core.Action) (bool, runtime.Object, error) {
    		update := action.(core.UpdateAction)
    		updated = update.GetObject().(*v1.Pod)
    		return true, update.GetObject(), nil
    	})
    	pod.Name = "goo-0"
    	if err := control.UpdateStatefulPod(ctx, set, pod); err != nil {
    		t.Errorf("Successful update returned an error: %s", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  7. architecture/networking/pilot.md

    Next, for an individual proxy we will check if it could possibly be impacted by the change. For example, we know a sidecar never is impacted by a `Gateway` update, and we can also look at scoping (from `Sidecar.egress.hosts`) to further restrict update scopes.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    	// i.e., when unscheduled Pods are updated, the scheduling queue checks with Pod/Update QueueingHint(s) whether the update may make the pods schedulable,
    	// and requeues them to activeQ/backoffQ when at least one QueueingHint(s) return Queue.
    	// Plugins **have to** implement a QueueingHint for Pod/Update event
    	// if the rejection from them could be resolved by updating unscheduled Pods themselves.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. tests/integration/pilot/ingress_test.go

    					call: echo.CallOptions{
    						Port: echo.Port{
    							Protocol: protocol.HTTP,
    						},
    						HTTP: echo.HTTP{
    							Path:    "/update-test",
    							Headers: headers.New().WithHost("server").Build(),
    						},
    						Check: check.OK(),
    					},
    				},
    				{
    					name:         "update-path",
    					ingressClass: "istio-test",
    					path:         "/updated",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/types.go

    type Int32 struct {
    	noCopy noCopy
    	value  int32
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (i *Int32) Load() int32 {
    	return Loadint32(&i.value)
    }
    
    // Store updates the value atomically.
    //
    //go:nosplit
    func (i *Int32) Store(value int32) {
    	Storeint32(&i.value, value)
    }
    
    // CompareAndSwap atomically compares i's value with old,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top