Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for verb (0.19 sec)

  1. cluster/gce/windows/smoke-test.sh

    #     services that don't serve http requests).
    #   - Add test retries for transient errors, such as:
    #     "error: unable to upgrade connection: Authorization error
    #     (user=kube-apiserver, verb=create, resource=nodes, subresource=proxy)"
    
    # Override this to use a different kubectl binary.
    kubectl=kubectl
    linux_deployment_timeout=60
    windows_deployment_timeout=600
    output_file=/tmp/k8s-smoke-test.out
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/abi.go

    // references of text symbols by ABI.
    //
    // The symabis format is a set of lines, where each line is a sequence
    // of whitespace-separated fields. The first field is a verb and is
    // either "def" for defining a symbol ABI or "ref" for referencing a
    // symbol using an ABI. For both "def" and "ref", the second field is
    // the symbol name and the third field is the ABI name, as one of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/types.go

    */
    
    package v1
    
    import (
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +genclient
    // +genclient:nonNamespaced
    // +genclient:method=UpdateApproval,verb=update,subresource=approval,input=k8s.io/api/certificates/v1.CertificateSigningRequest,result=k8s.io/api/certificates/v1.CertificateSigningRequest
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    		mutatingAdmission, _ := admit.(admission.MutationInterface)
    		createAuthorizerAttributes := authorizer.AttributesRecord{
    			User:            userInfo,
    			ResourceRequest: true,
    			Path:            req.URL.Path,
    			Verb:            "create",
    			APIGroup:        scope.Resource.Group,
    			APIVersion:      scope.Resource.Version,
    			Resource:        scope.Resource.Resource,
    			Subresource:     scope.Subresource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server.go

    		clientVersions = supportedVersionsFromMax(clientHello.vers)
    	}
    	c.vers, ok = c.config.mutualVersion(roleServer, clientVersions)
    	if !ok {
    		c.sendAlert(alertProtocolVersion)
    		return nil, fmt.Errorf("tls: client offered only unsupported versions: %x", clientVersions)
    	}
    	c.haveVers = true
    	c.in.version = c.vers
    	c.out.version = c.vers
    
    	if c.config.MinVersion == 0 && c.vers < VersionTLS12 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. src/debug/buildinfo/buildinfo.go

    // binaries built with module support.
    func Read(r io.ReaderAt) (*BuildInfo, error) {
    	vers, mod, err := readRawBuildInfo(r)
    	if err != nil {
    		return nil, err
    	}
    	bi, err := debug.ParseBuildInfo(mod)
    	if err != nil {
    		return nil, err
    	}
    	bi.GoVersion = vers
    	return bi, nil
    }
    
    type exe interface {
    	// ReadData reads and returns up to size bytes starting at virtual address addr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. samples/addons/kiali.yaml

      verbs:
      - get
      - list
      - watch
      - create
      - delete
      - patch
    - apiGroups: ["apps.openshift.io"]
      resources:
      - deploymentconfigs
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: ["project.openshift.io"]
      resources:
      - projects
      verbs:
      - get
    - apiGroups: ["route.openshift.io"]
      resources:
      - routes
      verbs:
      - get
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_tls13.go

    	c := hs.c
    
    	hs.hello = new(serverHelloMsg)
    
    	// TLS 1.3 froze the ServerHello.legacy_version field, and uses
    	// supported_versions instead. See RFC 8446, sections 4.1.3 and 4.2.1.
    	hs.hello.vers = VersionTLS12
    	hs.hello.supportedVersion = c.vers
    
    	if len(hs.clientHello.supportedVersions) == 0 {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: client used the legacy version field to negotiate TLS 1.3")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client.go

    	peerVersion := serverHello.vers
    	if serverHello.supportedVersion != 0 {
    		peerVersion = serverHello.supportedVersion
    	}
    
    	vers, ok := c.config.mutualVersion(roleClient, []uint16{peerVersion})
    	if !ok {
    		c.sendAlert(alertProtocolVersion)
    		return fmt.Errorf("tls: server selected unsupported protocol version %x", peerVersion)
    	}
    
    	c.vers = vers
    	c.haveVers = true
    	c.in.version = vers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. src/runtime/runtime_test.go

    		_, ok := GoroutineProfile(p)
    		return ok
    	}))
    }
    
    func TestVersion(t *testing.T) {
    	// Test that version does not contain \r or \n.
    	vers := Version()
    	if strings.Contains(vers, "\r") || strings.Contains(vers, "\n") {
    		t.Fatalf("cr/nl in version: %q", vers)
    	}
    }
    
    func TestTimediv(t *testing.T) {
    	for _, tc := range []struct {
    		num int64
    		div int32
    		ret int32
    		rem int32
    	}{
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top