Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/os/os_windows_test.go

    	//LanmanWorkstation is the service name, and Workstation is the display name.
    	srv, err := windows.OpenService(mar, syscall.StringToUTF16Ptr("LanmanWorkstation"), windows.SERVICE_QUERY_STATUS)
    	if err != nil {
    		return
    	}
    	defer syscall.CloseHandle(srv)
    	var state windows.SERVICE_STATUS
    	err = windows.QueryServiceStatus(srv, &state)
    	if err != nil {
    		return
    	}
    	if state.CurrentState != windows.SERVICE_RUNNING {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. cmd/server-main.go

    		})
    
    		// Initialize Console UI
    		if globalBrowserEnabled {
    			bootstrapTrace("initConsoleServer", func() {
    				srv, err := initConsoleServer()
    				if err != nil {
    					logger.FatalIf(err, "Unable to initialize console service")
    				}
    
    				setConsoleSrv(srv)
    
    				go func() {
    					logger.FatalIf(newConsoleServerFn().Serve(), "Unable to initialize console server")
    				}()
    			})
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/status/server_test.go

    			NextProtos:   alpn,
    			MinVersion:   tls.VersionTLS12,
    		}
    		tlsListener := tls.NewListener(listener, serverTLSConfig)
    		h := &handler{lastAlpn: atomic.NewString("")}
    		srv := http.Server{Handler: h}
    		go srv.Serve(tlsListener)
    		appPort := listener.Addr().(*net.TCPAddr).Port
    
    		// Starts the pilot agent status server.
    		server := NewTestServer(t, Options{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top