Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,438 for Updatef (0.19 sec)

  1. pilot/pkg/autoregistration/controller.go

    	if conTime.Before(lastConTime) {
    		return false, nil
    	}
    	// Try to update, if it fails we retry all the above logic since the WLE changed
    	updated := wle.DeepCopy()
    	setConnectMeta(&updated, c.instanceID, conTime)
    	_, err := c.store.Update(updated)
    	if err != nil {
    		return false, fmt.Errorf("failed updating WorkloadEntry %s/%s err: %v", proxy.Metadata.Namespace, entryName, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. pkg/registry/policy/poddisruptionbudget/storage/storage_test.go

    	minAvailable := intstr.FromInt32(8)
    	update := policy.PodDisruptionBudget{
    		ObjectMeta: obtainedPdb.ObjectMeta,
    		Spec: policy.PodDisruptionBudgetSpec{
    			MinAvailable: &minAvailable,
    		},
    		Status: policy.PodDisruptionBudgetStatus{
    			ExpectedPods: 8,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/node_container_manager_linux.go

    	// If Node Allocatable is enforced on a node that has not been drained or is updated on an existing node to a lower value,
    	// existing memory usage across pods might be higher than current Node Allocatable Memory Limits.
    	// Pod Evictions are expected to bring down memory usage to below Node Allocatable limits.
    	// Until evictions happen retry cgroup updates.
    	// Update limits on non root cgroup-root to be safe since the default limits for CPU can be too low.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AtomicDouble.java

       */
      public final boolean compareAndSet(double expect, double update) {
        return value.compareAndSet(doubleToRawLongBits(expect), doubleToRawLongBits(update));
      }
    
      /**
       * Atomically sets the value to the given updated value if the current value is <a
       * href="#bitEquals">bitwise equal</a> to the expected value.
       *
       * <p>May <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 28 21:00:54 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/reconciler.go

    			}
    			r.endpointSliceTracker.Update(createdSlice)
    			metrics.EndpointSliceChanges.WithLabelValues("create").Inc()
    		}
    	}
    
    	for _, endpointSlice := range slices.toUpdate {
    		updatedSlice, err := epsClient.Update(context.TODO(), endpointSlice, metav1.UpdateOptions{})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    		}
    		return
    	}
    	rootCertRotatorLog.Info("Root certificate rotation is completed successfully.")
    }
    
    // updateRootCertificate updates root certificate in istio-ca-secret, keycertbundle and configmap. It takes a scrt
    // object, cert, and key, and a flag rollForward indicating whether this update is to roll forward root certificate or
    // to roll backward.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. pkg/controller/deployment/progress.go

    			// behavior emulates the rolling updater progressDeadline check.
    			msg := fmt.Sprintf("Deployment %q is progressing.", d.Name)
    			if newRS != nil {
    				msg = fmt.Sprintf("ReplicaSet %q is progressing.", newRS.Name)
    			}
    			condition := util.NewDeploymentCondition(apps.DeploymentProgressing, v1.ConditionTrue, util.ReplicaSetUpdatedReason, msg)
    			// Update the current Progressing condition or add a new one if it doesn't exist.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. 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)
  9. pkg/kubelet/status/status_manager.go

    				// successfully].
    				delete(m.apiStatusVersions, uidOfStatus)
    				updatedStatuses = append(updatedStatuses, podSync{uid, uidOfStatus, status})
    			}
    		}
    	}()
    
    	for _, update := range updatedStatuses {
    		klog.V(5).InfoS("Sync pod status", "podUID", update.podUID, "statusUID", update.statusUID, "version", update.status.version)
    		m.syncPod(update.podUID, update.status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_status_updater.go

    		if updateErr == nil {
    			return nil
    		}
    		if updated, err := ssu.setLister.StatefulSets(set.Namespace).Get(set.Name); err == nil {
    			// make a copy so we don't mutate the shared cache
    			set = updated.DeepCopy()
    		} else {
    			utilruntime.HandleError(fmt.Errorf("error getting updated StatefulSet %s/%s from lister: %v", set.Namespace, set.Name, err))
    		}
    
    		return updateErr
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top