Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 1,092 for vers (0.04 sec)

  1. clause/order_by_test.go

    					Expression: clause.Expr{SQL: "FIELD(id, ?)", Vars: []interface{}{[]int{1, 2, 3}}, WithoutParentheses: true},
    				},
    			},
    			"SELECT * FROM `users` ORDER BY FIELD(id, ?,?,?)",
    			[]interface{}{1, 2, 3},
    		},
    	}
    
    	for idx, result := range results {
    		t.Run(fmt.Sprintf("case #%v", idx), func(t *testing.T) {
    			checkBuildClauses(t, result.Clauses, result.Result, result.Vars)
    		})
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. cmd/bucket-notification-handlers.go

    	ctx := newContext(r, w, "GetBucketNotification")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	vars := mux.Vars(r)
    	bucketName := vars["bucket"]
    
    	objAPI := api.ObjectAPI()
    	if objAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/audit/policy/reader_test.go

        resources:
        - "leases"
        verbs: ["watch", "get", "list"] # invalid indentation on verbs
    `
    
    var expectedPolicy = &audit.Policy{
    	Rules: []audit.PolicyRule{{
    		Level:           audit.LevelNone,
    		NonResourceURLs: []string{"/healthz*", "/version"},
    	}, {
    		Level:      audit.LevelRequestResponse,
    		Users:      []string{"tim"},
    		UserGroups: []string{"testers", "developers"},
    		Verbs:      []string{"patch", "delete", "create"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/typha-horizontal-autoscaler-role.yaml

    metadata:
      name: typha-cpha
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      - apiGroups: [""]
        resources: ["configmaps"]
        verbs: ["get"]
      - apiGroups: ["apps"]
        resources: ["deployments/scale"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:23:39 UTC 2019
    - 329 bytes
    - Viewed (0)
  5. api/discovery/apis__authentication.k8s.io__v1.json

          "name": "selfsubjectreviews",
          "namespaced": false,
          "singularName": "selfsubjectreview",
          "verbs": [
            "create"
          ]
        },
        {
          "kind": "TokenReview",
          "name": "tokenreviews",
          "namespaced": false,
          "singularName": "tokenreview",
          "verbs": [
            "create"
          ]
        }
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 495 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authorization/authorizer/interfaces.go

    }
    
    func (a AttributesRecord) GetUser() user.Info {
    	return a.User
    }
    
    func (a AttributesRecord) GetVerb() string {
    	return a.Verb
    }
    
    func (a AttributesRecord) IsReadOnly() bool {
    	return a.Verb == "get" || a.Verb == "list" || a.Verb == "watch"
    }
    
    func (a AttributesRecord) GetNamespace() string {
    	return a.Namespace
    }
    
    func (a AttributesRecord) GetResource() string {
    	return a.Resource
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 14:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. pkg/ctrlz/topics/scopes.go

    	vars := mux.Vars(req)
    	name := vars["scope"]
    
    	if s := log.FindScope(name); s != nil {
    		fw.RenderJSON(w, http.StatusOK, getScopeInfo(s))
    		return
    	}
    
    	fw.RenderError(w, http.StatusBadRequest, fmt.Errorf("unknown scope name: %s", name))
    }
    
    func putScope(w http.ResponseWriter, req *http.Request) {
    	vars := mux.Vars(req)
    	name := vars["scope"]
    
    	var info scopeInfo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. cmd/tier-handlers.go

    	ctx := r.Context()
    
    	objAPI, cred := validateAdminReq(ctx, w, r, policy.SetTierAction)
    	if objAPI == nil {
    		return
    	}
    	vars := mux.Vars(r)
    	scName := vars["tier"]
    
    	password := cred.SecretKey
    	reqBytes, err := madmin.DecryptData(password, io.LimitReader(r.Body, r.ContentLength))
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. pkg/apis/apidiscovery/zz_generated.deepcopy.go

    	*out = *in
    	if in.ResponseKind != nil {
    		in, out := &in.ResponseKind, &out.ResponseKind
    		*out = new(v1.GroupVersionKind)
    		**out = **in
    	}
    	if in.Verbs != nil {
    		in, out := &in.Verbs, &out.Verbs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 17:27:25 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2beta1/zz_generated.deepcopy.go

    	*out = *in
    	if in.ResponseKind != nil {
    		in, out := &in.ResponseKind, &out.ResponseKind
    		*out = new(v1.GroupVersionKind)
    		**out = **in
    	}
    	if in.Verbs != nil {
    		in, out := &in.Verbs, &out.Verbs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 17:27:25 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top