Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for lastErr (0.12 sec)

  1. pkg/controlplane/apiserver/config.go

    	lastErr error,
    ) {
    	genericConfig = genericapiserver.NewConfig(legacyscheme.Codecs)
    	genericConfig.MergedResourceConfig = resourceConfig
    
    	if lastErr = s.GenericServerRunOptions.ApplyTo(genericConfig); lastErr != nil {
    		return
    	}
    
    	if lastErr = s.SecureServing.ApplyTo(&genericConfig.SecureServing, &genericConfig.LoopbackClientConfig); lastErr != nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/apiclient/wait.go

    		true, func(_ context.Context) (bool, error) {
    			hash, err := getStaticPodSingleHash(w.client, nodeName, component)
    			if err != nil {
    				lastErr = err
    				return false, nil
    			}
    			// Set lastErr to nil to be able to later distinguish between getStaticPodSingleHash() and timeout errors
    			lastErr = nil
    			// We should continue polling until the UID changes
    			if hash == previousHash {
    				return false, nil
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/runtime/runtime.go

    			if err := runtime.impl.RemovePodSandbox(ctx, runtime.runtimeService, container); err != nil {
    				lastErr = errors.Wrapf(err, "failed to remove pod %s", container)
    				cancel()
    				continue
    			}
    			cancel()
    
    			lastErr = nil
    			break
    		}
    
    		if lastErr != nil {
    			errs = append(errs, lastErr)
    		}
    	}
    	return errorsutil.NewAggregate(errs)
    }
    
    // PullImage pulls the image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix.go

    					// This error will abort the nameList loop.
    					hitStrictError = true
    					lastErr = result.error
    				} else if lastErr == nil || fqdn == name+"." {
    					// Prefer error for original name.
    					lastErr = result.error
    				}
    				continue
    			}
    
    			// Presotto says it's okay to assume that servers listed in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			}
    			// Unmount runs in a go routine, wait for its finish
    			var lastErr error
    			err = retryWithExponentialBackOff(testOperationBackOffDuration, func() (bool, error) {
    				if err := verifyTearDownCalls(fakePlugin, tc.expectedUnmounts); err != nil {
    					lastErr = err
    					return false, nil
    				}
    				return true, nil
    			})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/authenticator/config.go

    	if err != nil {
    		return err
    	}
    
    	var lastErr error
    	if waitErr := wait.PollUntilContextCancel(ctx, 10*time.Second, true, func(_ context.Context) (done bool, err error) {
    		lastErr = updatedJWTAuthenticator.healthCheck()
    		return lastErr == nil, nil
    	}); lastErr != nil || waitErr != nil {
    		updatedJWTAuthenticator.cancel()
    		return utilerrors.NewAggregate([]error{lastErr, waitErr}) // filters out nil errors
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. internal/rest/client.go

    	TraceOutput io.Writer // Debug trace output
    
    	httpClient   *http.Client
    	url          *url.URL
    	newAuthToken func(audience string) string
    
    	sync.RWMutex // mutex for lastErr
    	lastErr      error
    	lastErrTime  time.Time
    }
    
    type restError string
    
    func (e restError) Error() string {
    	return string(e)
    }
    
    func (e restError) Timeout() bool {
    	return true
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    	if csiKubeClient == nil {
    		return goerrors.New("error getting CSI client")
    	}
    
    	var lastErr error
    	err := wait.ExponentialBackoff(updateBackoff, func() (bool, error) {
    		if lastErr = nim.tryInitializeCSINodeWithAnnotation(csiKubeClient); lastErr != nil {
    			klog.V(2).Infof("Failed to publish CSINode: %v", lastErr)
    			return false, nil
    		}
    		return true, nil
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/cluster.go

    	var rawAPIEndpoint string
    	var lastErr error
    	// Let's tolerate some unexpected transient failures from the API server or load balancers. Also, if
    	// static pods were not yet mirrored into the API server we want to wait for this propagation.
    	err := wait.PollUntilContextTimeout(context.Background(), interval, timeout, true,
    		func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_plugin.go

    		_, lastErr = client.StorageV1().CSINodes().Get(context.TODO(), string(nodeName), opts)
    		if lastErr == nil || apierrors.IsNotFound(lastErr) {
    			// API server contacted
    			return true, nil
    		}
    		klog.V(2).Infof("Failed to contact API server when waiting for CSINode publishing: %s", lastErr)
    		return false, nil
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top