Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 532 for vers (0.03 sec)

  1. docs/es/docs/tutorial/query-params.md

    ```
    
    o
    
    ```
    http://127.0.0.1:8000/items/foo?short=yes
    ```
    
    o cualquier otra variación (mayúsculas, primera letra en mayúscula, etc.) tu función verá el parámetro `short` con un valor `bool` de `True`. Si no, lo verá como `False`.
    
    ## Múltiples parámetros de path y query
    
    Puedes declarar múltiples parámetros de path y parámetros de query al mismo tiempo. **FastAPI** sabe cuál es cuál.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter_test.go

    				Subjects: []flowcontrol.Subject{{
    					Kind: flowcontrol.SubjectKindUser,
    					User: &flowcontrol.UserSubject{Name: username},
    				}},
    				NonResourceRules: []flowcontrol.NonResourcePolicyRule{{
    					Verbs:           []string{"*"},
    					NonResourceURLs: []string{"*"},
    				}},
    			}},
    		},
    	}
    	plcObj = &flowcontrol.PriorityLevelConfiguration{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: plName,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/endpoints/request"
    
    	"k8s.io/klog/v2"
    )
    
    // readOnlyVerbs contains verbs for read-only requests.
    var readOnlyVerbs = sets.NewString("get", "list", "watch", "proxy")
    
    // watchIdentifier identifies group of watches that are similar.
    // As described in the "Priority and Fairness" KEP, we consider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. pkg/auth/authorizer/abac/abac.go

    						Verbs:     getVerbs(p.Spec.Readonly),
    						APIGroups: []string{p.Spec.APIGroup},
    						Resources: []string{p.Spec.Resource},
    					}
    					var resourceRule authorizer.ResourceRuleInfo = &r
    					resourceRules = append(resourceRules, resourceRule)
    				}
    				if len(p.Spec.NonResourcePath) > 0 {
    					r := authorizer.DefaultNonResourceRuleInfo{
    						Verbs:           getVerbs(p.Spec.Readonly),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 11 03:11:30 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/clusterrole.yaml

      - apiGroups: [""]
        verbs: ["update"]
        resources: ["pods/finalizers"]
    {{- end }}
      - apiGroups: ["networking.istio.io"]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "workloadentries" ]
      - apiGroups: ["networking.istio.io"]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

      - apiGroups: [""]
        verbs: ["update"]
        resources: ["pods/finalizers"]
    {{- end }}
      - apiGroups: ["networking.istio.io"]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "workloadentries" ]
      - apiGroups: ["networking.istio.io"]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/reader-clusterrole.yaml

        resources: ["gateways"]
        verbs: ["get", "watch", "list"]
      - apiGroups: ["apiextensions.k8s.io"]
        resources: ["customresourcedefinitions"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["discovery.k8s.io"]
        resources: ["endpointslices"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceexports"]
        verbs: ["get", "list", "watch", "create", "delete"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. cluster/addons/rbac/cluster-autoscaler/cluster-autoscaler-rbac.yaml

        verbs: ["get", "list", "watch"]
      - apiGroups: ["batch"]
        resources: ["jobs"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["policy"]
        resources: ["poddisruptionbudgets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["storage.k8s.io"]
        resources: ["storageclasses", "csinodes"]
        verbs: ["get", "list", "watch"]
      # misc access
      - apiGroups: [""]
        resources: ["events"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 16:56:45 UTC 2020
    - 2K bytes
    - Viewed (0)
  9. clause/expression_test.go

    			clause.NamedExpr{SQL: result.SQL, Vars: result.Vars}.Build(stmt)
    			if stmt.SQL.String() != result.Result {
    				t.Errorf("generated SQL is not equal, expects %v, but got %v", result.Result, stmt.SQL.String())
    			}
    
    			if !reflect.DeepEqual(result.ExpectedVars, stmt.Vars) {
    				t.Errorf("generated vars is not equal, expects %v, but got %v", result.ExpectedVars, stmt.Vars)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Aug 10 05:34:33 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. plugin/pkg/admission/certificates/util.go

    	// First check if the user has explicit permission to 'verb' for the given signerName.
    	attr := buildAttributes(info, verb, signerName)
    	decision, reason, err := authz.Authorize(ctx, attr)
    	switch {
    	case err != nil:
    		klog.V(3).Infof("cannot authorize %q %q for policy: %v,%v", verb, attr.GetName(), reason, err)
    	case decision == authorizer.DecisionAllow:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top