Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for server_info (0.24 sec)

  1. tools/bug-report/pkg/common/common.go

    			"debug/syncz",
    			"debug/telemetryz",
    			"metrics",
    		},
    		proxyDebugURLs: []string{
    			"certs",
    			"clusters",
    			"config_dump?include_eds",
    			"listeners",
    			"memory",
    			"server_info",
    			"stats/prometheus",
    			"runtime",
    		},
    		ztunnelDebugURLs: []string{
    			"config_dump",
    		},
    	},
    }
    
    // IstiodDebugURLs returns a list of Istiod debug URLs for the given version.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/jcifs/internal/smb1/net/NetServerEnum2Response.java

        protected int readDataWireFormat ( byte[] buffer, int bufferIndex, int len ) {
            int start = bufferIndex;
            ServerInfo1 e = null;
            ServerInfo1[] results = new ServerInfo1[getNumEntries()];
            for ( int i = 0; i < getNumEntries(); i++ ) {
                results[ i ] = e = new ServerInfo1();
                e.name = readString(buffer, bufferIndex, 16, false);
                bufferIndex += 16;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java

        }
        int readDataWireFormat( byte[] buffer, int bufferIndex, int len ) {
            int start = bufferIndex;
            ServerInfo1 e = null;
    
            results = new ServerInfo1[numEntries];
            for( int i = 0; i < numEntries; i++ ) {
                results[i] = e = new ServerInfo1();
                e.name = readString( buffer, bufferIndex, 16, false );
                bufferIndex += 16;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 4.4K bytes
    - Viewed (0)
Back to top