Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for updateDir (0.23 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    					Name:     "http-example",
    					Protocol: corev1.ProtocolTCP, // Not added automatically by fake
    				},
    			},
    		},
    	})
    	log.Infof("Created service %s", n)
    	cl.opts.XDSUpdater.(*xdsfake.Updater).WaitOrFail(t, "service")
    }
    
    func TestController_GetPodLocality(t *testing.T) {
    	pod1 := generatePod("128.0.1.1", "pod1", "nsA", "", "node1", map[string]string{"app": "prod-app"}, map[string]string{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    			zeroWidthPending = false
    			for _, varID := range state.changedVars.contents() {
    				state.updateVar(VarID(varID), v.Block, v)
    			}
    			state.changedVars.clear()
    		}
    		for _, varID := range state.changedVars.contents() {
    			state.updateVar(VarID(varID), b, BlockEnd)
    		}
    
    		prevBlock = b
    	}
    
    	if state.loggingLevel > 0 {
    		state.logf("location lists:\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    			// until they reflect user requested size in pvc.Status.Size
    			_, updateErr := util.UpdatePVSize(pv, newSize, og.kubeClient)
    			if updateErr != nil {
    				detailedErr := fmt.Errorf("error updating PV spec capacity for volume %q with : %v", util.GetPersistentVolumeClaimQualifiedName(pvc), updateErr)
    				return volumetypes.NewOperationContext(detailedErr, detailedErr, migrated)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    	ec.waitForXDS(t, false)
    }
    
    func (ec *serviceExportCacheImpl) waitForXDS(t *testing.T, exported bool) {
    	t.Helper()
    	retry.UntilSuccessOrFail(t, func() error {
    		event := ec.opts.XDSUpdater.(*xdsfake.Updater).WaitOrFail(t, "eds")
    		if len(event.Endpoints) != 1 {
    			return fmt.Errorf("waitForXDS failed: expected 1 endpoint, found %d", len(event.Endpoints))
    		}
    
    		hostName := host.Name(event.ID)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    				// Add volume back to ReportAsAttached if UpdateNodeStatusForNode call failed so that node status updater will add it back to VolumeAttached list.
    				// It is needed here too because DetachVolume is not call actually and we keep the data consistency for every reconcile.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. pkg/controller/deployment/progress.go

    		case util.DeploymentProgressing(d, &newStatus):
    			// If there is any progress made, continue by not checking if the deployment failed. This
    			// 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)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 11:00:44 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    		options := patchToUpdateOptions(p.options)
    		updateObject, created, updateErr := p.restPatcher.Update(ctx, p.name, p.updatedObjectInfo, p.createValidation, p.updateValidation, p.forceAllowCreate, options)
    		wasCreated = created
    		return updateObject, updateErr
    	}
    	result, err := finisher.FinishRequest(ctx, func() (runtime.Object, error) {
    
    		result, err := requestFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. pkg/controller/disruption/disruption.go

    	// have a DeletionTimestamp).
    	// Once the timeout is reached, this controller attempts to set the status
    	// of the condition to False.
    	stalePodDisruptionTimeout = 2 * time.Minute
    )
    
    type updater func(context.Context, *policy.PodDisruptionBudget) error
    
    type DisruptionController struct {
    	kubeClient clientset.Interface
    	mapper     apimeta.RESTMapper
    
    	scaleNamespacer scaleclient.ScalesGetter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller.go

    		toUpdate.Status.NumberAvailable = int32(numberAvailable)
    		toUpdate.Status.NumberUnavailable = int32(numberUnavailable)
    
    		if _, updateErr = dsClient.UpdateStatus(ctx, toUpdate, metav1.UpdateOptions{}); updateErr == nil {
    			return nil
    		}
    
    		// Stop retrying if we exceed statusUpdateRetries - the DaemonSet will be requeued with a rate limit.
    		if i >= StatusUpdateRetries {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	gracefulDeleter, isGracefulDeleter := storage.(rest.GracefulDeleter)
    	collectionDeleter, isCollectionDeleter := storage.(rest.CollectionDeleter)
    	updater, isUpdater := storage.(rest.Updater)
    	patcher, isPatcher := storage.(rest.Patcher)
    	watcher, isWatcher := storage.(rest.Watcher)
    	connecter, isConnecter := storage.(rest.Connecter)
    	storageMeta, isMetadata := storage.(rest.StorageMetadata)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top