Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 120 for volerr (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/runtime/sys_openbsd_arm.s

    	MOVW	4(R0), R1		// arg 2 - buf
    	MOVW	8(R0), R2		// arg 3 - count
    	MOVW	0(R0), R0		// arg 1 - fd
    	BL	libc_read(SB)
    	CMP	$-1, R0
    	BNE	noerr
    	BL	libc_errno(SB)
    	MOVW	(R0), R0		// errno
    	RSB.CS	$0, R0			// caller expects negative errno
    noerr:
    	MOVW	R9, R13
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	4(R0), R1		// arg 2 buf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/net/http/cookie_test.go

    		},
    		{
    			line: "k1=\\",
    			err:  errInvalidCookieValue,
    		},
    	}
    	for i, tt := range tests {
    		gotCookies, gotErr := ParseCookie(tt.line)
    		if !errors.Is(gotErr, tt.err) {
    			t.Errorf("#%d ParseCookie got error %v, want error %v", i, gotErr, tt.err)
    		}
    		if !reflect.DeepEqual(gotCookies, tt.cookies) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top