Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,115 for Updatef (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    //     mark the waiter as succeeded.  If some quota did change, update the running quotas
    //  2. If no running quota was changed, return now since no updates are needed.
    //  3. for each quota that has changed, attempt an update.  If all updates succeeded, update all unset waiters to success status and return.  If the some
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. cmd/erasure.go

    					}
    				}
    				// Collect updates.
    				updates := make(chan dataUsageEntry, 1)
    				var wg sync.WaitGroup
    				wg.Add(1)
    				go func(name string) {
    					defer wg.Done()
    					for update := range updates {
    						select {
    						case <-ctx.Done():
    						case bucketResults <- dataUsageEntryInfo{
    							Name:   name,
    							Parent: dataUsageRoot,
    							Entry:  update,
    						}:
    						}
    					}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

        }
    
        // Update results constraints based on inferred operands constraints.
        operands.Walk([&](Value value, ValueConstraint constraint) {
          // Resolve constraint based on the static type information.
          if (resolve && succeeded(IsStaticallyResolved(value, constraint))) return;
    
          // Update constraint for a value.
          auto updated = constraints.Insert(value, constraint);
          if (!updated.second) return;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// GuaranteedUpdate keeps calling 'tryUpdate()' to update key 'key' (of type 'destination')
    	// retrying the update until success if there is index conflict.
    	// Note that object passed to tryUpdate may change across invocations of tryUpdate() if
    	// other writers are simultaneously updating it, so tryUpdate() needs to take into account
    	// the current contents of the object when deciding how the update object should look.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control.go

    			status.CurrentReplicas--
    		}
    	}
    	return &status, nil
    }
    
    // updateStatefulSetStatus updates set's Status to be equal to status. If status indicates a complete update, it is
    // mutated to indicate completion. If status is semantically equivalent to set's Status no update is performed. If the
    // returned error is nil, the update is successful.
    func (ssc *defaultStatefulSetControl) updateStatefulSetStatus(
    	ctx context.Context,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/eds_test.go

    	}
    	testTCPEndpoints("127.0.0.3", adsc, t)
    }
    
    // edsFullUpdateCheck checks for updates required in a full push after the CDS update
    func edsFullUpdateCheck(adsc *adsc.ADSC, t *testing.T) {
    	t.Helper()
    	if upd, err := adsc.Wait(15*time.Second, watchAll...); err != nil {
    		t.Fatal("Expecting CDS, EDS, LDS, and RDS update as part of a full push", err, upd)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller_base.go

    }
    
    // storeObjectUpdate updates given cache with a new object version from Informer
    // callback (i.e. with events from etcd) or with an object modified by the
    // controller itself. Returns "true", if the cache was updated, false if the
    // object is an old version and should be ignored.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder.go

    }
    
    // AssumePodVolumes will take the matching PVs and PVCs to provision in pod's
    // volume information for the chosen node, and:
    // 1. Update the pvCache with the new prebound PV.
    // 2. Update the pvcCache with the new PVCs with annotations set
    // 3. Update PodVolumes again with cached API updates for PVs and PVCs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. pkg/adsc/adsc.go

    				return fmt.Errorf("wanted update for %v got %v", want, t)
    			}
    			if t == want {
    				return nil
    			}
    			continue
    		case <-t.C:
    			return fmt.Errorf("timeout, still waiting for update for %v", want)
    		}
    	}
    }
    
    // Wait for an updates for all the specified types
    // If updates is empty, this will wait for any update
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                        }
                    } else {
                        update = updateCheckManager.isUpdateRequired(metadata, repository, file);
                    }
    
                    if (update) {
                        getLogger().info(metadata.getKey() + ": checking for updates from " + repository.getId());
                        try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top