Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 765 for vers (0.05 sec)

  1. src/debug/elf/file.go

    	if vn == nil {
    		return false
    	}
    	d, _ := vn.Data()
    
    	var need []verneed
    	i := 0
    	for {
    		if i+16 > len(d) {
    			break
    		}
    		vers := f.ByteOrder.Uint16(d[i : i+2])
    		if vers != 1 {
    			break
    		}
    		cnt := f.ByteOrder.Uint16(d[i+2 : i+4])
    		fileoff := f.ByteOrder.Uint32(d[i+4 : i+8])
    		aux := f.ByteOrder.Uint32(d[i+8 : i+12])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  9. staging/src/k8s.io/api/authorization/v1/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: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    			IsResourceRequest: true,
    			Verb:              verbs[coord%nv],
    			APIGroup:          apiGroups[coord/nv%ng],
    			Resource:          resources[coord/nv/ng%nr],
    			Namespace:         namespaces[coord/nv/ng/nr]})
    	}
    	return ans
    }
    
    func genNRRIs(rng *rand.Rand, m int, verbs, urls []string) []*request.RequestInfo {
    	nv := len(verbs)
    	nu := len(urls)
    	coords := chooseInts(rng, nv*nu, m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top