Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for SRV (0.05 sec)

  1. src/crypto/tls/quic_test.go

    			}
    		}
    		srvCS := srv.conn.ConnectionState()
    		if _, ok := srv.readSecret[QUICEncryptionLevelHandshake]; ok {
    			if want, got := srvCS.NegotiatedProtocol, "h3"; want != got {
    				t.Errorf("srv.ConnectionState().NegotiatedProtocol = %q, want %q", want, got)
    			}
    		}
    		return false
    	}
    	if err := runTestQUICConnection(context.Background(), cli, srv, onEvent); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/egressselector/config_test.go

            - name: pki
              hostPath:
                path: /etc/srv/kubernetes/pki/konnectivity-agent
          containers:
            - image: registry.k8s.io/proxy-agent:v0.0.3
              name: proxy-agent
              command: ["/proxy-agent"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-kubeapiserver.sh

        csc_config_volume="{\"name\": \"cscconfigmount\",\"hostPath\": {\"path\": \"/etc/srv/kubernetes/egress_selector_configuration.yaml\", \"type\": \"FileOrCreate\"}},"
    
        # UDS socket for communication between apiserver and konnectivity-server
        local default_konnectivity_socket_path="/etc/srv/kubernetes/konnectivity-server"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. docs/sts/ldap.md

    #### DNS SRV Records
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. src/cmd/go/script_test.go

    func TestScript(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	testenv.SkipIfShortAndSlow(t)
    
    	srv, err := vcstest.NewServer()
    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Cleanup(func() {
    		if err := srv.Close(); err != nil {
    			t.Fatal(err)
    		}
    	})
    	certFile, err := srv.WriteCertificateFile()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	StartProxy()
    
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/net/lookup.go

    		if cname.Length == 0 && h.Name.Length != 0 {
    			cname = h.Name
    		}
    		srv, err := p.SRVResource()
    		if err != nil {
    			return "", nil, &DNSError{
    				Err:    "cannot unmarshal DNS message",
    				Name:   name,
    				Server: server,
    			}
    		}
    		srvs = append(srvs, &SRV{Target: srv.Target.String(), Port: srv.Port, Priority: srv.Priority, Weight: srv.Weight})
    	}
    	byPriorityWeight(srvs).sort()
    	return cname.String(), srvs, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.pb.go

    	return nil, status.Errorf(codes.Unimplemented, "method GetExampleInfo not implemented")
    }
    
    func RegisterExampleServer(s *grpc.Server, srv ExampleServer) {
    	s.RegisterService(&_Example_serviceDesc, srv)
    }
    
    func _Example_GetExampleInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
    	in := new(ExampleRequest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  8. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    func testServerAndClientConfig(handler func(http.ResponseWriter, *http.Request)) (*httptest.Server, *restclient.Config) {
    	srv := httptest.NewServer(http.HandlerFunc(handler))
    	config := &restclient.Config{
    		Host: srv.URL,
    	}
    	return srv, config
    }
    
    // fakeAction records information about requests to aid in testing.
    type fakeAction struct {
    	method string
    	path   string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  9. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1/api.pb.go

    	return nil, status.Errorf(codes.Unimplemented, "method GetExampleInfo not implemented")
    }
    
    func RegisterExampleServer(s *grpc.Server, srv ExampleServer) {
    	s.RegisterService(&_Example_serviceDesc, srv)
    }
    
    func _Example_GetExampleInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
    	in := new(ExampleRequest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    		match := map[string]string{
    			"prefix": srv.pathPrefix + "/",
    			"import": importPath,
    		}
    		for i, name := range srv.regexp.SubexpNames() {
    			if name != "" && match[name] == "" {
    				match[name] = m[i]
    			}
    		}
    		if srv.vcs != "" {
    			match["vcs"] = expand(match, srv.vcs)
    		}
    		if srv.repo != "" {
    			match["repo"] = expand(match, srv.repo)
    		}
    		if srv.check != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top