Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for SRV (0.02 sec)

  1. src/main/java/jcifs/smb1/UniAddress.java

                } catch( IOException ioe ) {
                    // Failure
                }
            }
            throw new UnknownHostException( hostname );
        }
    
        /**
         * Perform DNS SRV lookup on successively shorter suffixes of name
         * and return successful suffix or throw an UnknownHostException.
    import javax.naming.*;
    import javax.naming.directory.*;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_controller_test.go

    func testServerAndClientConfig(handler func(http.ResponseWriter, *http.Request)) (*httptest.Server, *rest.Config) {
    	srv := httptest.NewServer(http.HandlerFunc(handler))
    	config := &rest.Config{
    		Host: srv.URL,
    	}
    	return srv, config
    }
    
    func expectSyncNotBlocked(fakeDiscoveryClient *fakeServerResources, workerLock *sync.RWMutex) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  3. src/crypto/tls/boring_test.go

    	clientConfig.MaxVersion = VersionTLS13
    	clientConfig.CipherSuites = allCipherSuites()
    	clientConfig.CurvePreferences = defaultCurvePreferences()
    
    	go Client(c, clientConfig).Handshake()
    	srv := Server(s, testConfig)
    	msg, err := srv.readHandshake(nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	hello, ok := msg.(*clientHelloMsg)
    	if !ok {
    		t.Fatalf("unexpected message type %T", msg)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. cmd/api-router.go

    }
    
    func newConsoleServerFn() *consoleapi.Server {
    	globalObjLayerMutex.RLock()
    	defer globalObjLayerMutex.RUnlock()
    	return globalConsoleSrv
    }
    
    func setConsoleSrv(srv *consoleapi.Server) {
    	globalObjLayerMutex.Lock()
    	globalConsoleSrv = srv
    	globalObjLayerMutex.Unlock()
    }
    
    func newObjectLayerFn() ObjectLayer {
    	globalObjLayerMutex.RLock()
    	defer globalObjLayerMutex.RUnlock()
    	return globalObjectAPI
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. pkg/dns/client/dns_test.go

    }
    
    func initDNS(t test.Failer, forwardToUpstreamParallel bool) *LocalDNSServer {
    	srv := makeUpstream(t, map[string]string{"www.bing.com.": "1.1.1.1"})
    	testAgentDNS, err := NewLocalDNSServer("ns1", "ns1.svc.cluster.local", "localhost:0", forwardToUpstreamParallel)
    	if err != nil {
    		t.Fatal(err)
    	}
    	testAgentDNS.resolvConfServers = []string{srv}
    	testAgentDNS.StartDNS()
    	fillTable(testAgentDNS)
    	t.Cleanup(testAgentDNS.Close)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/service.go

    	TrafficDirectionOutbound TrafficDirection = "outbound"
    
    	// trafficDirectionOutboundSrvPrefix the prefix for a DNS SRV type subset key
    	trafficDirectionOutboundSrvPrefix = string(TrafficDirectionOutbound) + "_"
    	// trafficDirectionInboundSrvPrefix the prefix for a DNS SRV type subset key
    	trafficDirectionInboundSrvPrefix = string(TrafficDirectionInbound) + "_"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. cmd/kubemark/app/hollow_node.go

    	fs.StringVar(&c.BootstrapKubeconfigPath, "bootstrap-kubeconfig", "", "Path to bootstrap kubeconfig file.")
    	fs.StringVar(&c.CertDirectory, "cert-dir", "/etc/srv/", "Path to cert directory for bootstraping.")
    	fs.IntVar(&c.KubeletPort, "kubelet-port", ports.KubeletPort, "Port on which HollowKubelet should be listening.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/net/rpc/server.go

    func (server *Server) ServeConn(conn io.ReadWriteCloser) {
    	buf := bufio.NewWriter(conn)
    	srv := &gobServerCodec{
    		rwc:    conn,
    		dec:    gob.NewDecoder(conn),
    		enc:    gob.NewEncoder(buf),
    		encBuf: buf,
    	}
    	server.ServeCodec(srv)
    }
    
    // ServeCodec is like [ServeConn] but uses the specified codec to
    // decode requests and encode responses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/coderepo_test.go

    			err = rmErr
    		}
    	}()
    
    	cfg.GOMODCACHE = filepath.Join(dir, "modcache")
    	if err := os.Mkdir(cfg.GOMODCACHE, 0755); err != nil {
    		return err
    	}
    
    	srv, err := vcstest.NewServer()
    	if err != nil {
    		return err
    	}
    	defer func() {
    		if closeErr := srv.Close(); err == nil {
    			err = closeErr
    		}
    	}()
    
    	m.Run()
    	return nil
    }
    
    const (
    	vgotest1git = "github.com/rsc/vgotest1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    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
    }
    
    // TLSConfig provides the authentication information to connect to konnectivity server
    // Only used with TCPTransport
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top