Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 379 for unmix (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    	if err != nil {
    		return nil, nil, err
    	}
    
    	template := x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject: pkix.Name{
    			CommonName: fmt.Sprintf("%s@%d", host, time.Now().Unix()),
    		},
    		NotBefore: time.Unix(0, 0),
    		NotAfter:  time.Now().Add(time.Hour * 24 * 365 * 100),
    
    		KeyUsage:              x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. internal/config/identity/plugin/config.go

    		args:        args,
    		client:      &http.Client{Transport: args.Transport},
    		shutdownCtx: shutdownCtx,
    		serviceMetrics: &metrics{
    			Mutex:            sync.Mutex{},
    			LastCheckSuccess: time.Unix(0, 0),
    			LastCheckFailure: time.Unix(0, 0),
    			lastFullMinute:   serviceRTTMinuteStats{},
    			currentMinute:    serviceRTTMinuteStats{},
    		},
    	}
    	go plugin.doPeriodicHealthCheck()
    	return &plugin
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/arm64/include -fsigned-char /tmp/arm64/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm64 && linux
    
    package unix
    
    const (
    	SYS_IO_SETUP                = 0
    	SYS_IO_DESTROY              = 1
    	SYS_IO_SUBMIT               = 2
    	SYS_IO_CANCEL               = 3
    	SYS_IO_GETEVENTS            = 4
    	SYS_SETXATTR                = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    }
    
    type udsHTTPConnectConnector struct {
    	udsName string
    }
    
    func (u *udsHTTPConnectConnector) connect(ctx context.Context) (proxier, error) {
    	var d net.Dialer
    	conn, err := d.DialContext(ctx, "unix", u.udsName)
    	if err != nil {
    		return nil, err
    	}
    	return &httpConnectProxier{conn: conn, proxyAddress: u.udsName}, nil
    }
    
    type udsGRPCConnector struct {
    	udsName string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/riscv64/include /tmp/riscv64/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build riscv64 && linux
    
    package unix
    
    const (
    	SYS_IO_SETUP                = 0
    	SYS_IO_DESTROY              = 1
    	SYS_IO_SUBMIT               = 2
    	SYS_IO_CANCEL               = 3
    	SYS_IO_GETEVENTS            = 4
    	SYS_SETXATTR                = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. pkg/test/echo/server/endpoint/http.go

    	defer onReady()
    
    	client := http.Client{}
    	var url string
    	if s.isUDS() {
    		url = "http://unix/" + s.UDSServer
    		client.Transport = &http.Transport{
    			DialContext: func(_ context.Context, _, _ string) (net.Conn, error) {
    				return net.Dial("unix", s.UDSServer)
    			},
    		}
    	} else if s.Port.TLS {
    		url = fmt.Sprintf("https://%s", address)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	TLSConfig *TLSConfig
    }
    
    // UDSTransport provides the information to connect to konnectivity server via UDS
    type UDSTransport struct {
    	// UDSName is the name of the unix domain socket to connect to konnectivity server
    	// This does not use a unix:// prefix. (Eg: /etc/srv/kubernetes/konnectivity-server/konnectivity-server.socket)
    	UDSName string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. pkg/proxy/util/utils_test.go

    	_, n, err := netutils.ParseCIDRSloppy(str)
    	if err != nil {
    		panic("mustParseIPNet")
    	}
    	return n
    }
    func mustParseUnix(str string) net.Addr {
    	n, err := net.ResolveUnixAddr("unix", str)
    	if err != nil {
    		panic("mustParseUnix")
    	}
    	return n
    }
    
    type cidrValidator struct {
    	cidr *net.IPNet
    }
    
    func (v *cidrValidator) isValid(ip net.IP) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    	template := &Certificate{
    		SerialNumber: new(big.Int).SetBytes(serialBytes[:]),
    		Subject: pkix.Name{
    			CommonName: name,
    		},
    		NotBefore:             time.Unix(1000, 0),
    		NotAfter:              time.Unix(2000, 0),
    		KeyUsage:              KeyUsageCertSign,
    		BasicConstraintsValid: true,
    		IsCA:                  true,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    	- the target architecture, as spelled by runtime.GOARCH, set with the
    	  GOARCH environment variable.
    	- any architecture features, in the form GOARCH.feature
    	  (for example, "amd64.v2"), as detailed below.
    	- "unix", if GOOS is a Unix or Unix-like system.
    	- the compiler being used, either "gc" or "gccgo"
    	- "cgo", if the cgo command is supported (see CGO_ENABLED in
    	  'go help environment').
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top