Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for volerr (0.15 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/record"
    	volerr "k8s.io/cloud-provider/volume/errors"
    	storagehelpers "k8s.io/component-helpers/storage/volume"
    	csitrans "k8s.io/csi-translation-lib"
    	"k8s.io/klog/v2"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    	storagelisters "k8s.io/client-go/listers/storage/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/tools/record"
    	ref "k8s.io/client-go/tools/reference"
    	"k8s.io/client-go/util/workqueue"
    	volerr "k8s.io/cloud-provider/volume/errors"
    	storagehelpers "k8s.io/component-helpers/storage/volume"
    	"k8s.io/kubernetes/pkg/controller/volume/common"
    	"k8s.io/kubernetes/pkg/controller/volume/events"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  3. test/varerr.go

    Robert Griesemer <******@****.***> 1607048150 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 449 bytes
    - Viewed (0)
  4. cni/pkg/plugin/sidecar_redirect.go

    			"excludeIPCidrs", isFound, valErr)
    	}
    	isFound, redir.excludeInboundPorts, valErr = getAnnotationOrDefault("excludeInboundPorts", pi.Annotations)
    	if valErr != nil {
    		return nil, fmt.Errorf("annotation value error for value %s; annotationFound = %t: %v",
    			"excludeInboundPorts", isFound, valErr)
    	}
    	isFound, redir.includeInboundPorts, valErr = getAnnotationOrDefault("includeInboundPorts", pi.Annotations)
    	if valErr != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. operator/pkg/tpath/struct_test.go

    				t.Fatal(err)
    			}
    			GotOut, GotFound, gotErr := GetFromStructPath(rnode, tt.path)
    			if GotFound != tt.wantFound {
    				t.Fatalf("GetFromStructPath(%s): gotFound:%v, wantFound:%v", tt.desc, GotFound, tt.wantFound)
    			}
    			if gotErr, wantErr := errToString(gotErr), tt.wantErr; gotErr != wantErr {
    				t.Fatalf("GetFromStructPath(%s): gotErr:%s, wantErr:%s", tt.desc, gotErr, wantErr)
    			}
    			if tt.wantErr != "" || !tt.wantFound {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. operator/pkg/validate/validate_values_test.go

    			if err != nil {
    				t.Fatalf("yaml.Unmarshal(%s): got error %s", tt.desc, err)
    			}
    			errs := CheckValues(util.MustStruct(root))
    			if gotErr, wantErr := errs, tt.wantErrs; !util.EqualErrors(gotErr, wantErr) {
    				t.Errorf("CheckValues(%s)(%v): gotErr:%s, wantErr:%s", tt.desc, tt.yamlStr, gotErr, wantErr)
    			}
    		})
    	}
    }
    
    func TestValidateValuesFromProfile(t *testing.T) {
    	tests := []struct {
    		profile  string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. security/pkg/server/ca/authenticate/oidc_test.go

    			}
    			ctx = metadata.NewIncomingContext(ctx, md)
    
    			actualCaller, err := authenticator.Authenticate(security.AuthContext{GrpcContext: ctx})
    			gotErr := err != nil
    			if gotErr != tc.expectErr {
    				t.Errorf("gotErr (%v) whereas expectErr (%v)", gotErr, tc.expectErr)
    			}
    			if gotErr {
    				return
    			}
    			expectedCaller := &security.Caller{
    				AuthSource: security.AuthSourceIDToken,
    				Identities: []string{tc.expectedID},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/os/exec/lp_windows.go

    					return dotf, dotErr
    				}
    			}
    
    			if !filepath.IsAbs(f) {
    				if execerrdot.Value() != "0" {
    					// If this is the same relative path that we already found,
    					// dotErr is non-nil and we already checked it above.
    					// Otherwise, record this path as the one to which we must resolve,
    					// with or without a dotErr.
    					if dotErr == nil {
    						dotf, dotErr = f, &Error{file, ErrDot}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. operator/pkg/tpath/tree_test.go

    			if err := yaml.Unmarshal([]byte(rootYAML), &root); err != nil {
    				t.Fatal(err)
    			}
    			pc, gotFound, gotErr := GetPathContext(root, util.PathFromString(tt.path), false)
    			if gotErr, wantErr := errToString(gotErr), tt.wantErr; gotErr != wantErr {
    				t.Fatalf("GetPathContext(%s): gotErr:%s, wantErr:%s", tt.desc, gotErr, wantErr)
    			}
    			if gotFound != tt.wantFound {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  10. docs/fr/docs/tutorial/query-params-str-validations.md

    ```
    
    ## Utiliser `Query` comme valeur par défaut
    
    Construisez ensuite la valeur par défaut de votre paramètre avec `Query`, en choisissant 50 comme `max_length` :
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params_str_validations/tutorial002.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top