Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for ServerInfo (0.3 sec)

  1. src/net/smtp/auth.go

    	// If Next returns a non-nil error, the SMTP client aborts
    	// the authentication attempt and closes the connection.
    	Next(fromServer []byte, more bool) (toServer []byte, err error)
    }
    
    // ServerInfo records information about an SMTP server.
    type ServerInfo struct {
    	Name string   // SMTP server name
    	TLS  bool     // using TLS, with valid certificate for Name
    	Auth []string // advertised authentication mechanisms
    }
    
    type plainAuth struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    	if err != nil {
    		t.Fatalf("Error creating storage: %v", err)
    	}
    	t.Cleanup(dFunc)
    
    	tests := []struct {
    		testName     string
    		servers      []serverInfo
    		expectLeases []string
    	}{
    		{
    			testName: "existing IP satisfy",
    			servers: []serverInfo{{
    				existingIP:     "4.3.2.1",
    				id:             "server-1",
    				ports:          []corev1.EndpointPort{{Name: "foo", Port: 8080, Protocol: "TCP"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl

    		[string] wchar_t *name;
    	} ServerInfo100;
    
    	typedef [switch_type(int)] union {
    		[case(0)] ServerInfo100 *info0;
    	} ServerInfo;
    
    	[op(0x15)]
    	int ServerGetInfo([in,string,unique] wchar_t *servername,
    			[in] int level,
    			[out,switch_is(level)] ServerInfo *info);
    
    	typedef struct {
    		uint32_t elapsedt;  
    		uint32_t msecs;  
    		uint32_t hours;  
    		uint32_t mins;  
    		uint32_t secs;  
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. pkg/version/version.go

    	BuildStatus   string `json:"status"`
    	GitTag        string `json:"tag"`
    }
    
    // ServerInfo contains the version for a single control plane component
    type ServerInfo struct {
    	Component string
    	Revision  string
    	Info      BuildInfo
    }
    
    // MeshInfo contains the versions for all Istio control plane components
    type MeshInfo []ServerInfo
    
    // NodeType decides the responsibility of the proxy serves in the mesh
    type NodeType string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    		[string] wchar_t *name;
    	} ServerInfo100;
    
    	typedef [switch_type(int)] union {
    		[case(0)] ServerInfo100 *info0;
    	} ServerInfo;
    
    	[op(0x15)]
    	int ServerGetInfo([in,string,unique] wchar_t *servername,
    			[in] int level,
    			[out,switch_is(level)] ServerInfo *info);
    
    	typedef struct {
    		uint32_t elapsedt;  
    		uint32_t msecs;  
    		uint32_t hours;  
    		uint32_t mins;  
    		uint32_t secs;  
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/sidecar.go

    )
    
    // Sidecar provides an interface to execute queries against a single Envoy sidecar.
    type Sidecar interface {
    	// Info about the Envoy instance.
    	Info() (*admin.ServerInfo, error)
    	InfoOrFail(t test.Failer) *admin.ServerInfo
    
    	// Config of the Envoy instance.
    	Config() (*admin.ConfigDump, error)
    	ConfigOrFail(t test.Failer) *admin.ConfigDump
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/sidecar.go

    		cluster:      cluster,
    	}
    
    	return sidecar
    }
    
    func (s *sidecar) Info() (*admin.ServerInfo, error) {
    	msg := &admin.ServerInfo{}
    	if err := s.adminRequest("server_info", msg); err != nil {
    		return nil, err
    	}
    
    	return msg, nil
    }
    
    func (s *sidecar) InfoOrFail(t test.Failer) *admin.ServerInfo {
    	t.Helper()
    	info, err := s.Info()
    	if err != nil {
    		t.Fatal(err)
    	}
    	return info
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. pkg/kube/client.go

    		// Ref From common/scripts/report_build_info.sh
    		serverInfo.Version = strings.Join(versionParts[:nParts-2], "-")
    		serverInfo.GitRevision = versionParts[nParts-2]
    		serverInfo.BuildStatus = versionParts[nParts-1]
    		if serverInfo.GitRevision == "dirty" {
    			serverInfo.GitRevision = strings.Join([]string{versionParts[nParts-3], "dirty"}, "-")
    			serverInfo.Version = strings.Join(versionParts[:nParts-3], "-")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. src/net/smtp/smtp_test.go

    }
    
    func TestAuthPlain(t *testing.T) {
    
    	tests := []struct {
    		authName string
    		server   *ServerInfo
    		err      string
    	}{
    		{
    			authName: "servername",
    			server:   &ServerInfo{Name: "servername", TLS: true},
    		},
    		{
    			// OK to use PlainAuth on localhost without TLS
    			authName: "localhost",
    			server:   &ServerInfo{Name: "localhost", TLS: false},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. istioctl/pkg/version/version.go

    		if err != nil {
    			return nil, err
    		}
    		*outXDS = xdsResponse
    		if xdsResponse.ControlPlane == nil {
    			return &istioVersion.MeshInfo{
    				istioVersion.ServerInfo{
    					Component: "MISSING CP ID",
    					Info: istioVersion.BuildInfo{
    						Version: "MISSING CP ID",
    					},
    					Revision: "MISSING CP ID",
    				},
    			}, nil
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top