Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for verb (0.06 sec)

  1. staging/src/k8s.io/api/rbac/v1/types.go

    // about who the rule applies to or which namespace the rule applies to.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. samples/addons/prometheus.yaml

          - ingresses
          - configmaps
        verbs:
          - get
          - list
          - watch
      - apiGroups:
          - "extensions"
          - "networking.k8s.io"
        resources:
          - ingresses/status
          - ingresses
        verbs:
          - get
          - list
          - watch
      - apiGroups:
          - "discovery.k8s.io"
        resources:
          - endpointslices
        verbs:
          - get
          - list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/fetch.go

    		if cfg.CmdName != "mod download" {
    			vers := mod.Version
    			if mod.Path == "golang.org/toolchain" {
    				// Shorten v0.0.1-go1.13.1.darwin-amd64 to go1.13.1.darwin-amd64
    				_, vers, _ = strings.Cut(vers, "-")
    				if i := strings.LastIndex(vers, "."); i >= 0 {
    					goos, goarch, _ := strings.Cut(vers[i+1:], "-")
    					vers = vers[:i] + " (" + goos + "/" + goarch + ")"
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. cmd/object-api-options.go

    	}()
    
    	opts, err = getOpts(ctx, r, bucket, object)
    	if err != nil {
    		switch vErr := err.(type) {
    		case InvalidVersionID:
    			apiErr = toAPIError(ctx, vErr)
    			argumentName = strings.ToLower("versionId")
    			argumentValue = vErr.VersionID
    		default:
    			apiErr = toAPIError(ctx, vErr)
    		}
    		valid = false
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages_test.go

    }
    
    func randomString(n int, rand *rand.Rand) string {
    	b := randomBytes(n, rand)
    	return string(b)
    }
    
    func (*clientHelloMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &clientHelloMsg{}
    	m.vers = uint16(rand.Intn(65536))
    	m.random = randomBytes(32, rand)
    	m.sessionId = randomBytes(rand.Intn(32), rand)
    	m.cipherSuites = make([]uint16, rand.Intn(63)+1)
    	for i := 0; i < len(m.cipherSuites); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. src/crypto/tls/boring_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	hello, ok := msg.(*clientHelloMsg)
    	if !ok {
    		t.Fatalf("unexpected message type %T", msg)
    	}
    
    	if !isBoringVersion(hello.vers) {
    		t.Errorf("client vers=%#x, want %#x (TLS 1.2)", hello.vers, VersionTLS12)
    	}
    	for _, v := range hello.supportedVersions {
    		if !isBoringVersion(v) {
    			t.Errorf("client offered disallowed version %#x", v)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/crypto/tls/key_agreement.go

    	preMasterSecret := make([]byte, 48)
    	preMasterSecret[0] = byte(clientHello.vers >> 8)
    	preMasterSecret[1] = byte(clientHello.vers)
    	_, err := io.ReadFull(config.rand(), preMasterSecret[2:])
    	if err != nil {
    		return nil, nil, err
    	}
    
    	rsaKey, ok := cert.PublicKey.(*rsa.PublicKey)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. cmd/admin-handlers-config-kv.go

    	if err != nil {
    		return
    	}
    	ctx = context.WithValue(ctx, config.ContextKeyForTargetFromConfig, tgts)
    	if verr := validateConfig(ctx, result.Cfg, result.SubSys); verr != nil {
    		err = badConfigErr{Err: verr}
    		return
    	}
    
    	// Check if subnet proxy being set and if so set the same value to proxy of subnet
    	// target of logger webhook configuration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_tls13.go

    	}
    
    	if hs.serverHello.supportedVersion != VersionTLS13 {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: server selected an invalid version after a HelloRetryRequest")
    	}
    
    	if hs.serverHello.vers != VersionTLS12 {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: server sent an incorrect legacy version")
    	}
    
    	if hs.serverHello.ocspStapling ||
    		hs.serverHello.ticketSupported ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/settings.md

    ### Create the `Settings` object
    
    Import `BaseSettings` from Pydantic and create a sub-class, very much like with a Pydantic model.
    
    The same way as with Pydantic models, you declare class attributes with type annotations, and possibly default values.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top