Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 321 for vers (0.04 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    // those functions such as [log.Printf]. It reports a variety of
    // mistakes such as syntax errors in the format string and mismatches
    // (of number and type) between the verbs and their arguments.
    //
    // See the documentation of the fmt package for the complete set of
    // format operators and their operand types.
    //
    // # Examples
    //
    // The %d format operator requires an integer operand.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/rbac.authorization.k8s.io.v1alpha1.Role.yaml

      selfLink: selfLinkValue
      uid: uidValue
    rules:
    - apiGroups:
      - apiGroupsValue
      nonResourceURLs:
      - nonResourceURLsValue
      resourceNames:
      - resourceNamesValue
      resources:
      - resourcesValue
      verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/rbac.authorization.k8s.io.v1beta1.Role.yaml

      selfLink: selfLinkValue
      uid: uidValue
    rules:
    - apiGroups:
      - apiGroupsValue
      nonResourceURLs:
      - nonResourceURLsValue
      resourceNames:
      - resourceNamesValue
      resources:
      - resourcesValue
      verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/rbac.authorization.k8s.io.v1alpha1.Role.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "rules": [
        {
          "verbs": [
            "verbsValue"
          ],
          "apiGroups": [
            "apiGroupsValue"
          ],
          "resources": [
            "resourcesValue"
          ],
          "resourceNames": [
            "resourceNamesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/rbac.authorization.k8s.io.v1beta1.Role.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "rules": [
        {
          "verbs": [
            "verbsValue"
          ],
          "apiGroups": [
            "apiGroupsValue"
          ],
          "resources": [
            "resourcesValue"
          ],
          "resourceNames": [
            "resourceNamesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/rbac.authorization.k8s.io.v1.Role.yaml

      selfLink: selfLinkValue
      uid: uidValue
    rules:
    - apiGroups:
      - apiGroupsValue
      nonResourceURLs:
      - nonResourceURLsValue
      resourceNames:
      - resourceNamesValue
      resources:
      - resourcesValue
      verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/rbac.authorization.k8s.io.v1alpha1.ClusterRole.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "rules": [
        {
          "verbs": [
            "verbsValue"
          ],
          "apiGroups": [
            "apiGroupsValue"
          ],
          "resources": [
            "resourcesValue"
          ],
          "resourceNames": [
            "resourceNamesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. cmd/peer-rest-server.go

    func (s *peerRESTServer) StartProfilingHandler(w http.ResponseWriter, r *http.Request) {
    	if !s.IsValid(w, r) {
    		s.writeErrorResponse(w, errors.New("Invalid request"))
    		return
    	}
    
    	vars := mux.Vars(r)
    	profiles := strings.Split(vars[peerRESTProfiler], ",")
    	if len(profiles) == 0 {
    		s.writeErrorResponse(w, errors.New("profiler name is missing"))
    		return
    	}
    	globalProfilerMu.Lock()
    	defer globalProfilerMu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. chainable_api.go

    			tx.Statement.AddClause(clause.Select{
    				Distinct:   db.Statement.Distinct,
    				Expression: clause.Expr{SQL: v, Vars: args},
    			})
    		} else if strings.Count(v, "@") > 0 && len(args) > 0 {
    			tx.Statement.AddClause(clause.Select{
    				Distinct:   db.Statement.Distinct,
    				Expression: clause.NamedExpr{SQL: v, Vars: args},
    			})
    		} else {
    			tx.Statement.Selects = []string{v}
    
    			for _, arg := range args {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    					state.varParts[n] = []SlotID{SlotID(len(state.slots) - 1)}
    					state.vars = append(state.vars, n)
    				}
    			}
    		}
    	}
    
    	// Fill in the var<->slot mappings.
    	if cap(state.varSlots) < len(state.vars) {
    		state.varSlots = make([][]SlotID, len(state.vars))
    	} else {
    		state.varSlots = state.varSlots[:len(state.vars)]
    		for i := range state.varSlots {
    			state.varSlots[i] = state.varSlots[i][:0]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top