Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 308 for vers (0.11 sec)

  1. docs/tr/docs/how-to/general.md

    # Genel - Nasıl Yapılır - Tarifler
    
    Bu sayfada genel ve sıkça sorulan sorular için dokümantasyonun diğer sayfalarına yönlendirmeler bulunmaktadır.
    
    ## Veri Filtreleme - Güvenlik
    
    Döndürmeniz gereken veriden fazlasını döndürmediğinizden emin olmak için, [Tutorial - Response Model - Return Type](../tutorial/response-model.md){.internal-link target=_blank} sayfasını okuyun.
    
    ## Dokümantasyon Etiketleri - OpenAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:20:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gccgo.go

    			continue
    		}
    		var verb, args string
    		if i := strings.Index(line, " "); i < 0 {
    			verb = line
    		} else {
    			verb, args = line[:i], strings.TrimSpace(line[i+1:])
    		}
    		before, after, _ := strings.Cut(args, "=")
    		switch verb {
    		default:
    			base.Fatalf("importcfg:%d: unknown directive %q", lineNum, verb)
    		case "packagefile":
    			if before == "" || after == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stmt.go

    		if len(results) == 0 && res.Len() > 0 && res.vars[0].name != "" {
    			// spec: "Implementation restriction: A compiler may disallow an empty expression
    			// list in a "return" statement if a different entity (constant, type, or variable)
    			// with the same name as a result parameter is in scope at the place of the return."
    			for _, obj := range res.vars {
    				if alt := check.lookup(obj.name); alt != nil && alt != obj {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    	result := rbacv1ac.PolicyRule()
    	result.Resources = rule.Resources
    	result.ResourceNames = rule.ResourceNames
    	result.APIGroups = rule.APIGroups
    	result.NonResourceURLs = rule.NonResourceURLs
    	result.Verbs = rule.Verbs
    	return result
    }
    
    func ruleExists(haystack []rbacv1.PolicyRule, needle rbacv1.PolicyRule) bool {
    	for _, curr := range haystack {
    		if equality.Semantic.DeepEqual(curr, needle) {
    			return true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        namespaces: ["kube-system"]
        verbs: ["get"]
        resources:
          - group: "" # core
            resources: ["configmaps"]
      - level: None
        users: ["kubelet"] # legacy kubelet identity
        verbs: ["get"]
        resources:
          - group: "" # core
            resources: ["nodes", "nodes/status"]
      - level: None
        userGroups: ["system:nodes"]
        verbs: ["get"]
        resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/test.go

    				}
    			}
    
    			if !cfg.Experiment.CoverageRedesign {
    				for _, cp := range pmain.Internal.Imports {
    					if len(cp.Internal.CoverVars) > 0 {
    						t.Cover.Vars = append(t.Cover.Vars, coverInfo{cp, cp.Internal.CoverVars})
    					}
    				}
    			}
    		}
    
    		data, err := formatTestmain(t)
    		if err != nil && pmain.Error == nil {
    			pmain.Error = &PackageError{Err: err}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    	// For watch requests, we want to adjust the cost only if they explicitly request
    	// sending initial events.
    	if requestInfo.Verb == "watch" {
    		if listOptions.SendInitialEvents == nil || !*listOptions.SendInitialEvents {
    			return WorkEstimate{InitialSeats: e.config.MinimumSeats}
    		}
    	}
    
    	isListFromCache := requestInfo.Verb == "watch" || !shouldListFromStorage(query, &listOptions)
    
    	numStored, err := e.countGetterFn(key(requestInfo))
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. src/go/types/stmt.go

    		if len(s.Results) == 0 && res.Len() > 0 && res.vars[0].name != "" {
    			// spec: "Implementation restriction: A compiler may disallow an empty expression
    			// list in a "return" statement if a different entity (constant, type, or variable)
    			// with the same name as a result parameter is in scope at the place of the return."
    			for _, obj := range res.vars {
    				if alt := check.lookup(obj.name); alt != nil && alt != obj {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server.go

    		if err != nil {
    			klog.ErrorS(err, "Authorization error", "user", attrs.GetUser().GetName(), "verb", attrs.GetVerb(), "resource", attrs.GetResource(), "subresource", attrs.GetSubresource())
    			msg := fmt.Sprintf("Authorization error (user=%s, verb=%s, resource=%s, subresource=%s)", attrs.GetUser().GetName(), attrs.GetVerb(), attrs.GetResource(), attrs.GetSubresource())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildEnvironmentCrossVersionSpec.groovy

            }
    
            then:
            out.toString().contains("<${["var": "val"]}>")
        }
    
        @TargetGradleVersion(">=3.0 <3.5")
        def "long running operation should fail when environment vars specified but not supported by target"() {
            when:
            withConnection {
                def model = it.model(BuildEnvironment.class)
                model.setEnvironmentVariables(["var": "val"]).get()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top