Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for volerr (0.17 sec)

  1. cni/pkg/nodeagent/ztunnelserver.go

    		return err
    	}
    
    	log.Debugf("sending delete pod to ztunnel: %s %v", uid, r)
    
    	var delErr []error
    
    	z.conns.mu.Lock()
    	defer z.conns.mu.Unlock()
    	for conn := range z.conns.connectionSet {
    		_, err := conn.send(ctx, data, nil)
    		if err != nil {
    			delErr = append(delErr, err)
    		}
    	}
    	return errors.Join(delErr...)
    }
    
    func podToWorkload(pod *v1.Pod) *zdsapi.WorkloadInfo {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pkg/controller/nodeipam/ipam/cidr_allocator.go

    	var nodeList *v1.NodeList
    	logger := klog.FromContext(ctx)
    
    	// We must poll because apiserver might not be up. This error causes
    	// controller manager to restart.
    	if pollErr := wait.PollUntilContextTimeout(ctx, nodePollInterval, apiserverStartupGracePeriod, true, func(ctx context.Context) (bool, error) {
    		var err error
    		nodeList, err = kubeClient.CoreV1().Nodes().List(ctx, metav1.ListOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/log/slog/value_test.go

    	v = AnyValue(panickingLogValue{})
    	got = v.Resolve().Any()
    	gotErr, ok := got.(error)
    	if !ok {
    		t.Errorf("expected error, got %T", got)
    	}
    	// The error should provide some context information.
    	// We'll just check that this function name appears in it.
    	if got, want := gotErr.Error(), "TestLogValue"; !strings.Contains(got, want) {
    		t.Errorf("got %q, want substring %q", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    		t.Fatalf(
    			"Volume %q/node %q should not exist, but it does.",
    			volumeName,
    			nodeName)
    	}
    
    	_, podErr := dsw.AddPod(types.UniquePodName(podName), controllervolumetesting.NewPod(podName, podName), volumeSpec, nodeName)
    	if podErr != nil {
    		t.Fatalf("AddPod failed. Expected: <no error> Actual: <%v>", podErr)
    	}
    
    	// Act
    	_, ctx := ktesting.NewTestContext(t)
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  5. pkg/wasm/cache_test.go

    			if c.wantErrorMsgPrefix != "" {
    				if gotErr == nil {
    					t.Errorf("Wasm module cache lookup got no error, want error prefix `%v`", c.wantErrorMsgPrefix)
    				} else if !strings.Contains(gotErr.Error(), c.wantErrorMsgPrefix) {
    					t.Errorf("Wasm module cache lookup got error `%v`, want error prefix `%v`", gotErr, c.wantErrorMsgPrefix)
    				}
    			} else if gotFilePath != wantFilePath {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. src/database/sql/convert_test.go

    func TestValueConverters(t *testing.T) {
    	for i, tt := range valueConverterTests {
    		out, err := tt.c.ConvertValue(tt.in)
    		goterr := ""
    		if err != nil {
    			goterr = err.Error()
    		}
    		if goterr != tt.err {
    			t.Errorf("test %d: %T(%T(%v)) error = %q; want error = %q",
    				i, tt.c, tt.in, tt.in, goterr, tt.err)
    		}
    		if tt.err != "" {
    			continue
    		}
    		if !reflect.DeepEqual(out, tt.out) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    func isClientTimeout(err error) bool {
    	if urlErr, ok := err.(*url.Error); ok {
    		return urlErr.Timeout()
    	}
    	return false
    }
    
    func isStreamReset(err error) bool {
    	if err == nil {
    		return false
    	}
    	if urlErr, ok := err.(*url.Error); ok {
    		// Sadly, the client does not receive a more specific indication
    		// of stream reset.
    		return strings.Contains(urlErr.Err.Error(), "INTERNAL_ERROR")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.user_favorite_enabled	=	Journalisation préférée
    labels.web_api_json_enabled	=	Réponse JSON
    labels.app_value	=	Propriétés du système
    labels.default_label_value	=	Valeur d'étiquette par défaut
    labels.default_sort_value	=	Valeur de tri par défaut
    labels.virtual_host_value	=	Hôtes virtuels
    labels.append_query_param_enabled	=	Ajouter des paramètres à l'URL
    labels.login_required	=	Connexion requise
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/index.md

    Ele também foi feito como referência futura.
    
    Então você poderá voltar e ver exatamente o que precisar.
    
    ## Rode o código
    
    Todos os blocos de código podem ser copiados e utilizados diretamente (eles são, na verdade, arquivos Python testados).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    	var celErr *cel.Error
    	if errors.As(err, &celErr) {
    		switch celErr.Type {
    		case cel.ErrorTypeRequired:
    			return field.Required(fldPath, celErr.Detail)
    		case cel.ErrorTypeInvalid:
    			return field.Invalid(fldPath, expression, celErr.Detail)
    		default:
    			return field.InternalError(fldPath, celErr)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top