Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,010 for vers (0.04 sec)

  1. istioctl/pkg/workload/workload.go

    	createCmd.PersistentFlags().StringSliceVarP(&resourceLabels, "labels", "l", nil, "The labels to apply to the workload instances; e.g. -l env=prod,vers=2")
    	createCmd.PersistentFlags().StringSliceVarP(&annotations, "annotations", "a", nil, "The annotations to apply to the workload instances")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    		t.Skip("only affects darwin")
    	}
    
    	testenv.MustHaveExecPath(t, "sw_vers")
    	if vers, err := macosMajorVersion(t); err != nil {
    		if builder := testenv.Builder(); builder != "" {
    			t.Fatalf("unable to determine macOS version: %s", err)
    		} else {
    			t.Skip("unable to determine macOS version")
    		}
    	} else if vers < 11 {
    		t.Skip("behavior only enforced in macOS 11 and after")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    }
    
    func testResumptionKeepsOCSPAndSCT(t *testing.T, ver uint16) {
    	issuer, err := x509.ParseCertificate(testRSACertificateIssuer)
    	if err != nil {
    		t.Fatalf("failed to parse test issuer")
    	}
    	roots := x509.NewCertPool()
    	roots.AddCert(issuer)
    	clientConfig := &Config{
    		MaxVersion:         ver,
    		ClientSessionCache: NewLRUClientSessionCache(32),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    	switch runtime.GOOS {
    	case "darwin":
    		out, err := testenv.Command(t, "uname", "-a").CombinedOutput()
    		if err != nil {
    			t.Fatal(err)
    		}
    		vers := string(out)
    		t.Logf("uname -a: %v", vers)
    	case "plan9":
    		t.Skip("skipping on plan9")
    	case "wasip1":
    		t.Skip("skipping on wasip1")
    	}
    
    	broken := cpuProfilingBroken()
    
    	deadline, ok := t.Deadline()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. pkg/apis/rbac/helpers_test.go

    	role := &rbac.Role{
    		Rules: []rbac.PolicyRule{
    			rbac.NewRule("verb").Groups("g").Resources("foo").RuleOrDie(),
    			rbac.NewRule("verb").URLs("/foo").RuleOrDie(),
    		},
    	}
    	clusterRole := &rbac.ClusterRole{
    		Rules: []rbac.PolicyRule{
    			rbac.NewRule("verb").Groups("g").Resources("foo").RuleOrDie(),
    			rbac.NewRule("verb").URLs("/foo").RuleOrDie(),
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. src/fmt/doc.go

    formatting verb to format successive arguments passed in the call.
    However, the notation [n] immediately before the verb indicates that the
    nth one-indexed argument is to be formatted instead. The same notation
    before a '*' for a width or precision selects the argument index holding
    the value. After processing a bracketed expression [n], subsequent verbs
    will use arguments n+1, n+2, etc. unless otherwise directed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authorization/v1beta1/types.go

    	// +optional
    	Namespace string `json:"namespace,omitempty" protobuf:"bytes,1,opt,name=namespace"`
    	// Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  "*" means all.
    	// +optional
    	Verb string `json:"verb,omitempty" protobuf:"bytes,2,opt,name=verb"`
    	// Group is the API Group of the Resource.  "*" means all.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    		}
    
    		requestInfo.Verb = currentParts[0]
    		currentParts = currentParts[1:]
    
    	} else {
    		switch req.Method {
    		case "POST":
    			requestInfo.Verb = "create"
    		case "GET", "HEAD":
    			requestInfo.Verb = "get"
    		case "PUT":
    			requestInfo.Verb = "update"
    		case "PATCH":
    			requestInfo.Verb = "patch"
    		case "DELETE":
    			requestInfo.Verb = "delete"
    		default:
    			requestInfo.Verb = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    			IsResourceRequest: false,
    			Path:              "/openapi/v2",
    			Verb:              "goodverb",
    		},
    		User: ui,
    	}
    	checkRules(t, true, reqRN, []flowcontrol.PolicyRulesWithSubjects{{
    		Subjects: []flowcontrol.Subject{{Kind: flowcontrol.SubjectKindUser,
    			User: &flowcontrol.UserSubject{Name: "goodu"}}},
    		ResourceRules: []flowcontrol.ResourcePolicyRule{{
    			Verbs:      []string{"goodverb"},
    			APIGroups:  []string{"goodapig"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. cluster/gce/gci/audit_policy_test.go

    		}
    	}
    	require.NotEmpty(t, verbs, "testcases must have a verb")
    	require.NotEmpty(t, users, "testcases must have a user")
    	require.NotEmpty(t, resources, "resource testcases must have a resource")
    
    	for _, usr := range users {
    		for _, verb := range verbs {
    			for _, res := range resources {
    				attrs := &authorizer.AttributesRecord{
    					User:            usr,
    					Verb:            verb,
    					Namespace:       res.Namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
Back to top