Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 471 for vers (0.04 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. 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)
  9. cluster/addons/rbac/cluster-loadbalancing/glbc/roles.yaml

      resources: ["configmaps"]
      verbs: ["get", "list", "watch", "update", "create", "patch"]
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: system:controller:glbc
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
    - apiGroups: [""]
      resources: ["secrets"]
      verbs: ["get"]
    - apiGroups: [""]
      resources: ["events"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 13:39:59 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. api/discovery/apis__resource.k8s.io__v1alpha2.json

          "storageVersionHash": "qtdNX2rnDEA=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "PodSchedulingContext",
          "name": "podschedulingcontexts/status",
          "namespaced": true,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top