Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 123 for volerr (0.24 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/validation.go

    			s = &structuralschema.Structural{}
    		}
    		if !s.XEmbeddedResource {
    			clone := *s
    			clone.XEmbeddedResource = true
    			s = &clone
    		}
    	}
    
    	allErr, error, _ := validate(ctx, pth, s, s, f, false, requirePrunedDefaults, celconfig.RuntimeCELCostBudget)
    	return allErr, error
    }
    
    // validate is the recursive step func for the validation. insideMeta is true if s specifies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. docs/fr/docs/advanced/response-directly.md

    Par défaut, **FastAPI** convertirait automatiquement cette valeur de retour en JSON en utilisant le `jsonable_encoder` expliqué dans [JSON Compatible Encoder](../tutorial/encoder.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/runtime/sys_darwin_amd64.s

    	MOVL	0(DI), DI		// arg 1 fd
    	CALL	libc_read(SB)
    	TESTL	AX, AX
    	JGE	noerr
    	CALL	libc_error(SB)
    	MOVL	(AX), AX
    	NEGL	AX			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVQ	8(DI), SI		// arg 2 buf
    	MOVL	16(DI), DX		// arg 3 count
    	MOVQ	0(DI), DI		// arg 1 fd
    	CALL	libc_write(SB)
    	TESTL	AX, AX
    	JGE	noerr
    	CALL	libc_error(SB)
    	MOVL	(AX), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  6. docs/fr/docs/features.md

    }
    
    my_second_user: User = User(**second_user_data)
    ```
    
    !!! info
        `**second_user_data` signifie:
    
        Utilise les clés et valeurs du dictionnaire `second_user_data` directement comme des arguments clé-valeur. C'est équivalent à: `User(id=4, name="Mary", joined="2018-11-30")`
    
    ### Support d'éditeurs
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/fsys/fsys_test.go

    	}
    
    	for _, tc := range testCases {
    		got, gotErr := IsDirWithGoFiles(tc.dir)
    		if tc.wantErr {
    			if gotErr == nil {
    				t.Errorf("IsDirWithGoFiles(%q): got %v, %v; want non-nil error", tc.dir, got, gotErr)
    			}
    			continue
    		}
    		if gotErr != nil {
    			t.Errorf("IsDirWithGoFiles(%q): got %v, %v; want nil error", tc.dir, got, gotErr)
    		}
    		if got != tc.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    type PollFd struct {
    	Fd      int32
    	Events  uint16
    	Revents uint16
    }
    
    const (
    	POLLERR    = 0x4000
    	POLLHUP    = 0x2000
    	POLLIN     = 0x1
    	POLLNVAL   = 0x8000
    	POLLOUT    = 0x2
    	POLLPRI    = 0x4
    	POLLRDBAND = 0x20
    	POLLRDNORM = 0x10
    	POLLWRBAND = 0x40
    	POLLWRNORM = 0x2
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/storage/eviction_test.go

    					name += "bad-name"
    				}
    
    				_, err := evictionRest.Create(testContext, name, evictionCopy, nil, &metav1.CreateOptions{})
    				gotErr := errToString(err)
    				if gotErr != tc.expectError {
    					t.Errorf("error mismatch: expected %v, got %v; name %v", tc.expectError, gotErr, pod.Name)
    					return
    				}
    				if tc.badNameInURL {
    					if err == nil {
    						t.Error("expected error here, but got nil")
    						return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_fr.properties

    constraints.DecimalMin.message  = {item} doit être plus grand que  ${inclusive == true ? 'or equal to ' : ''}{value}.
    constraints.Digits.message      = {item} est une valeur numérique hors des limites (Il faut <{integer} chiffres>.<{fraction} chiffres>).
    constraints.Future.message      = {item} doit être dans le futur.
    constraints.Max.message         = {item} doit être plus petit ou égal à {value}.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top