Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for semver (0.37 sec)

  1. go.sum

    github.com/coreos/go-oidc/v3 v3.10.0/go.mod h1:5j11xcw0D3+SGxn6Z/WFADsgcWVMyNAlSQupk0KK3ac=
    github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
    github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
    github.com/coreos/go-semver v0.3.1 h1:yi21YpKnrx1gt5R+la8n5WgS0kCrsPp33dmEyHReZr4=
    github.com/coreos/go-semver v0.3.1/go.mod h1:irMmmIw/7yzSRPWryHsK7EYSg09caPQL03VsM8rvUec=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  2. src/net/http/server.go

    )
    
    // A conn represents the server side of an HTTP connection.
    type conn struct {
    	// server is the server on which the connection arrived.
    	// Immutable; never nil.
    	server *Server
    
    	// cancelCtx cancels the connection-level context.
    	cancelCtx context.CancelFunc
    
    	// rwc is the underlying network connection.
    	// This is never wrapped by other types and is the value given out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    			tc.node.MergedGateway = &pilot_model.MergedGateway{TLSServerInfo: map[*networking.Server]*pilot_model.TLSServerInfo{
    				tc.server: {SNIHosts: pilot_model.GetSNIHostsForServer(tc.server)},
    			}}
    			ret := cgi.createGatewayHTTPFilterChainOpts(tc.node, tc.server.Port, tc.server,
    				tc.routeName, tc.proxyConfig, tc.transportProtocol, cg.PushContext())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    			servers := make([]madmin.ServerInfo, 0, len(infoMessage.Servers))
    			for _, server := range infoMessage.Servers {
    				anonEndpoint := anonAddr(server.Endpoint)
    				servers = append(servers, madmin.ServerInfo{
    					State:    server.State,
    					Endpoint: anonEndpoint,
    					Uptime:   server.Uptime,
    					Version:  server.Version,
    					CommitID: server.CommitID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	return res, nil
    }
    
    // A benchmark for profiling the client without the HTTP server code.
    // The server code runs in a subprocess.
    func BenchmarkClient(b *testing.B) {
    	b.ReportAllocs()
    	b.StopTimer()
    	defer afterTest(b)
    
    	var data = []byte("Hello world.\n")
    	if server := os.Getenv("TEST_BENCH_SERVER"); server != "" {
    		// Server process mode.
    		port := os.Getenv("TEST_BENCH_SERVER_PORT") // can be set by user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

    }
    
    # Starts konnectivity server pod.
    # More specifically, it prepares dirs and files, sets the variable value
    # in the manifests, and copies them to /etc/kubernetes/manifests.
    function start-konnectivity-server {
      echo "Start konnectivity server pods"
      prepare-log-file /var/log/konnectivity-server.log "${KONNECTIVITY_SERVER_RUNASUSER:-0}"
      prepare-konnectivity-server-manifest "8132" "8133" "8134"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      PROXY_CLIENT_KEY_BASE64=$(base64 "${AGGREGATOR_CERT_DIR}/pki/private/proxy-client.key" | tr -d '\r\n')
    
      # Setting up the Kubernetes API Server Konnectivity Server auth.
      # This includes certs for both API Server to Konnectivity Server and
      # Konnectivity Agent to Konnectivity Server.
      KONNECTIVITY_SERVER_CA_KEY_BASE64=$(base64 "${KONNECTIVITY_SERVER_CERT_DIR}/pki/private/ca.key" | tr -d '\r\n')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    		name string
    		in   *networking.Server
    		out  string
    	}{
    		{"empty", &networking.Server{}, "host"},
    		{"empty", &networking.Server{}, "port"},
    		{
    			"happy",
    			&networking.Server{
    				Hosts: []string{"foo.bar.com"},
    				Port:  &networking.Port{Number: 7, Name: "http", Protocol: "http"},
    			},
    			"",
    		},
    		{
    			"happy ip",
    			&networking.Server{
    				Hosts: []string{"1.1.1.1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. cmd/metrics-v2.go

    		Help:      "Total number of drive timeout errors since server uptime",
    		Type:      counterMetric,
    	}
    }
    
    func getNodeDriveIOErrorsMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: driveSubsystem,
    		Name:      "errors_ioerror",
    		Help:      "Total number of drive I/O errors since server uptime",
    		Type:      counterMetric,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    		} else if !p.IsTLS() && server.Tls != nil {
    			// only tls redirect is allowed if this is a HTTP server
    			if p.IsHTTP() {
    				if !gateway.IsPassThroughServer(server) ||
    					server.Tls.CaCertificates != "" || server.Tls.PrivateKey != "" || server.Tls.ServerCertificate != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top