Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for s_server (0.27 sec)

  1. src/crypto/tls/handshake_client_test.go

    	for i := 0; i < 32; i++ {
    		c, s := localPipe(t)
    
    		go func() {
    			server := Server(s, testConfig)
    			if err := server.Handshake(); err != nil {
    				panic(err)
    			}
    
    			var request [1]byte
    			if n, err := server.Read(request[:]); err != nil || n != 1 {
    				panic(err)
    			}
    
    			server.Write(request[:])
    			server.Close()
    		}()
    
    		startWrite := make(chan struct{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/test/mock/caserver.go

    		GRPCServer:      grpc.NewServer(opts...),
    		faultInjectLock: &sync.Mutex{},
    	}
    	// Register CA service at gRPC server.
    	pb.RegisterIstioCertificateServiceServer(server.GRPCServer, server)
    	ghc.RegisterHealthServer(server.GRPCServer, server)
    	return server, server.start(port)
    }
    
    func (s *CAServer) start(port int) error {
    	listener, err := net.Listen("tcp", fmt.Sprintf("127.0.0.1:%d", port))
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/JavaDebugOptionsInternal.java

        public int getPort() {
            return port;
        }
    
        public void setPort(int port) {
            this.port = port;
        }
    
        public boolean isServer() {
            return server;
        }
    
        public void setServer(boolean server) {
            this.server = server;
        }
    
        public boolean isSuspend() {
            return suspend;
        }
    
        public void setSuspend(boolean suspend) {
            this.suspend = suspend;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    )
    
    // initCAServer create a CA Server. The CA API uses cert with the max workload cert TTL.
    // 'hostlist' must be non-empty - but is not used since CA Server will start on existing
    // grpc server. Adds client cert auth and kube (sds enabled)
    func (s *Server) initCAServer(ca caserver.CertificateAuthority, opts *caOptions) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/options_test.go

    		"--http2-max-streams-per-connection=42",
    		"--kubelet-read-only-port=10255",
    		"--kubelet-timeout=5s",
    		"--kubelet-client-certificate=/var/run/kubernetes/ceserver.crt",
    		"--kubelet-client-key=/var/run/kubernetes/server.key",
    		"--kubelet-certificate-authority=/var/run/kubernetes/caserver.crt",
    		"--tracing-config-file=/var/run/kubernetes/tracing_config.yaml",
    		"--proxy-client-cert-file=/var/run/kubernetes/proxy.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    	serviceEntryController *serviceentry.Controller
    
    	httpServer  *http.Server // debug, monitoring and readiness Server.
    	httpAddr    string
    	httpsServer *http.Server // webhooks HTTPS Server.
    	httpsAddr   string
    
    	grpcServer        *grpc.Server
    	grpcAddress       string
    	secureGrpcServer  *grpc.Server
    	secureGrpcAddress string
    
    	// monitoringMux listens on monitoringAddr(:15014).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

    import org.apache.sshd.server.SshServer
    import org.apache.sshd.server.auth.password.PasswordAuthenticator
    import org.apache.sshd.server.auth.pubkey.PublickeyAuthenticator
    import org.apache.sshd.server.command.Command
    import org.apache.sshd.scp.server.ScpCommandFactory
    import org.apache.sshd.server.session.ServerSession
    import org.apache.sshd.sftp.server.SftpSubsystem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolderTest.java

            hogeAuth.setServer("hoge");
            smbAuthenticationHolder.add(hogeAuth);
            final SmbAuthentication fugaAuth = new SmbAuthentication();
            fugaAuth.setServer("fuga");
            smbAuthenticationHolder.add(fugaAuth);
            final SmbAuthentication fooAuth = new SmbAuthentication();
            fooAuth.setServer("foo");
            fooAuth.setPort(1000);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/cni-watcher_test.go

    		valid.Netns,
    	).Return(nil)
    
    	dpServer := &meshDataplane{
    		kubeClient: client.Kube(),
    		netServer:  fs,
    	}
    
    	handlers := setupHandlers(ctx, client, dpServer, "istio-system")
    
    	// We are not going to start the server, so the sockpath is irrelevant
    	pluginServer := startCniPluginServer(ctx, "/tmp/test.sock", handlers, dpServer)
    
    	// label the namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolderTest.java

            hogeAuth.setServer("hoge");
            smbAuthenticationHolder.add(hogeAuth);
            final SmbAuthentication fugaAuth = new SmbAuthentication();
            fugaAuth.setServer("fuga");
            smbAuthenticationHolder.add(fugaAuth);
            final SmbAuthentication fooAuth = new SmbAuthentication();
            fooAuth.setServer("foo");
            fooAuth.setPort(1000);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top