Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 4,438 for Updatef (0.54 sec)

  1. pkg/controlplane/reconcilers/endpointsadapter.go

    	}
    	return endpoints, err
    }
    
    // Update accepts a namespace and Endpoints object and updates it and its
    // matching EndpointSlice. The updated Endpoints object or an error will be returned.
    func (adapter *EndpointsAdapter) Update(namespace string, endpoints *corev1.Endpoints) (*corev1.Endpoints, error) {
    	endpoints, err := adapter.endpointClient.Endpoints(namespace).Update(context.TODO(), endpoints, metav1.UpdateOptions{})
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  2. pkg/controller/history/controller_history.go

    		if clone.Revision == newRevision {
    			return nil
    		}
    		clone.Revision = newRevision
    		updated, updateErr := rh.client.AppsV1().ControllerRevisions(clone.Namespace).Update(context.TODO(), clone, metav1.UpdateOptions{})
    		if updateErr == nil {
    			return nil
    		}
    		if updated != nil {
    			clone = updated
    		}
    		if updated, err := rh.lister.ControllerRevisions(clone.Namespace).Get(clone.Name); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  3. tools/docker-builder/builder/crane.go

    	return v1.Platform{
    		Architecture: arch,
    		OS:           os,
    		Variant:      "", // TODO?
    	}
    }
    
    func CreateProgress(name string) chan v1.Update {
    	updates := make(chan v1.Update, 1000)
    	go func() {
    		lastLog := time.Time{}
    		for u := range updates {
    			if time.Since(lastLog) < time.Second && !(u.Total == u.Complete) {
    				// Limit to 1 log per-image per-second, unless it is the final log
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"maxUnavailable": "maxUnavailable is the maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  5. hack/update-gofmt.sh

    Tim Hockin <******@****.***> 1704583211 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. pkg/proxy/endpointschangetracker.go

    type EndpointsMap map[ServicePortName][]Endpoint
    
    // Update updates em based on the changes in ect, returns information about the diff since
    // the last Update, triggers processEndpointsMapChange on every change, and clears the
    // changes map.
    func (em EndpointsMap) Update(ect *EndpointsChangeTracker) UpdateEndpointsMapResult {
    	result := UpdateEndpointsMapResult{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/FileSystemAccess.java

        /**
         * Invalidate the given locations as they are about to be updated.
         */
        void invalidate(Iterable<String> locations);
    
        /**
         * Runs an action which potentially writes to the given locations.
         */
        void write(Iterable<String> locations, IoRunnable action) throws IOException;
    
        /**
         * Updates the cached state at the location with the snapshot.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. 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)
  9. common-protos/k8s.io/api/apps/v1/generated.proto

      // for updates. During a rolling update, all pods from ordinal Replicas-1 to
      // Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
      // This is helpful in being able to do a canary based deployment. The default value is 0.
      // +optional
      optional int32 partition = 1;
    
      // The maximum number of pods that can be unavailable during the update.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/generated.proto

      // for updates. During a rolling update, all pods from ordinal Replicas-1 to
      // Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
      // This is helpful in being able to do a canary based deployment. The default value is 0.
      // +optional
      optional int32 partition = 1;
    
      // The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top