Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 96 for volerr (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/apis/batch/validation/validation_test.go

    			gotTotal, gotErr := validateIndexesFormat(tc.indexesString, tc.completions)
    			if tc.wantError == nil && gotErr != nil {
    				t.Errorf("unexpected error: %s", gotErr)
    			} else if tc.wantError != nil && gotErr == nil {
    				t.Errorf("missing error: %s", tc.wantError)
    			} else if tc.wantError != nil && gotErr != nil {
    				if diff := cmp.Diff(tc.wantError.Error(), gotErr.Error()); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.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
    - 5K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server_test.go

    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			args := &PilotArgs{JwtRule: tt.jwtRule}
    
    			_, err := initOIDC(args, nil)
    			gotErr := err != nil
    			if gotErr != tt.expectErr {
    				t.Errorf("expect error is %v while actual error is %v", tt.expectErr, gotErr)
    			}
    		})
    	}
    }
    
    func TestWatchDNSCertForK8sCA(t *testing.T) {
    	tests := []struct {
    		name        string
    		certToWatch []byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top