Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for ServerInfo (0.21 sec)

  1. cmd/notification.go

    	for _, sinfo := range replies {
    		storageInfo.Disks = append(storageInfo.Disks, sinfo.Disks...)
    	}
    
    	return storageInfo
    }
    
    // ServerInfo - calls ServerInfo RPC call on all peers.
    func (sys *NotificationSys) ServerInfo(ctx context.Context, metrics bool) []madmin.ServerProperties {
    	reply := make([]madmin.ServerProperties, len(sys.peerClients))
    	var wg sync.WaitGroup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    	if len(test.extensions) > 0 {
    		var serverInfo bytes.Buffer
    		for _, ext := range test.extensions {
    			pem.Encode(&serverInfo, &pem.Block{
    				Type:  fmt.Sprintf("SERVERINFO FOR EXTENSION %d", byteorder.BeUint16(ext)),
    				Bytes: ext,
    			})
    		}
    		serverInfoPath := tempFile(serverInfo.String())
    		defer os.Remove(serverInfoPath)
    		command = append(command, "-serverinfo", serverInfoPath)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. internal/http/headers.go

    	ContentLanguage    = "Content-Language"
    	ContentRange       = "Content-Range"
    	Connection         = "Connection"
    	AcceptRanges       = "Accept-Ranges"
    	AmzBucketRegion    = "X-Amz-Bucket-Region"
    	ServerInfo         = "Server"
    	RetryAfter         = "Retry-After"
    	Location           = "Location"
    	CacheControl       = "Cache-Control"
    	ContentDisposition = "Content-Disposition"
    	Authorization      = "Authorization"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. cmd/peer-rest-client.go

    		peerRESTMetrics: strconv.FormatBool(metrics),
    	}))
    	return resp.ValueOrZero(), err
    }
    
    // ServerInfo - fetch server information for a remote node.
    func (client *peerRESTClient) ServerInfo(ctx context.Context, metrics bool) (info madmin.ServerProperties, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. src/net/smtp/smtp.go

    func (c *Client) Auth(a Auth) error {
    	if err := c.hello(); err != nil {
    		return err
    	}
    	encoding := base64.StdEncoding
    	mech, resp, err := a.Start(&ServerInfo{c.serverName, c.tls, c.auth})
    	if err != nil {
    		c.Quit()
    		return err
    	}
    	resp64 := make([]byte, encoding.EncodedLen(len(resp)))
    	encoding.Encode(resp64, resp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. cmd/api-router.go

    }
    
    // corsHandler handler for CORS (Cross Origin Resource Sharing)
    func corsHandler(handler http.Handler) http.Handler {
    	commonS3Headers := []string{
    		xhttp.Date,
    		xhttp.ETag,
    		xhttp.ServerInfo,
    		xhttp.Connection,
    		xhttp.AcceptRanges,
    		xhttp.ContentRange,
    		xhttp.ContentEncoding,
    		xhttp.ContentLength,
    		xhttp.ContentType,
    		xhttp.ContentDisposition,
    		xhttp.LastModified,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    		if query.Get("minioinfo") == "true" {
    			infoMessage := getServerInfo(healthCtx, false, true, nil)
    			servers := make([]madmin.ServerInfo, 0, len(infoMessage.Servers))
    			for _, server := range infoMessage.Servers {
    				anonEndpoint := anonAddr(server.Endpoint)
    				servers = append(servers, madmin.ServerInfo{
    					State:    server.State,
    					Endpoint: anonEndpoint,
    					Uptime:   server.Uptime,
    					Version:  server.Version,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	CbStruct          uint32
    	Flags             uint32
    	Mode              uint32
    	TickCountDeadline uint32
    	TrackFlags        uint32
    	ClassContext      uint32
    	Locale            uint32
    	ServerInfo        *COSERVERINFO
    	Hwnd              HWND
    }
    
    const (
    	CLSCTX_INPROC_SERVER          = 0x1
    	CLSCTX_INPROC_HANDLER         = 0x2
    	CLSCTX_LOCAL_SERVER           = 0x4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    		admClient, err := getAdminClient(v.Endpoint, v.AccessKey, v.SecretKey)
    		if err != nil {
    			return psi, errSRPeerResp(fmt.Errorf("unable to create admin client for %s: %w", v.Name, err))
    		}
    
    		info, err := admClient.ServerInfo(ctx)
    		if err != nil {
    			return psi, errSRPeerResp(fmt.Errorf("unable to fetch server info for %s: %w", v.Name, err))
    		}
    
    		s3Client, err := getS3Client(v)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Client.Text", Field, 0},
    		{"Dial", Func, 0},
    		{"NewClient", Func, 0},
    		{"PlainAuth", Func, 0},
    		{"SendMail", Func, 0},
    		{"ServerInfo", Type, 0},
    		{"ServerInfo.Auth", Field, 0},
    		{"ServerInfo.Name", Field, 0},
    		{"ServerInfo.TLS", Field, 0},
    	},
    	"net/textproto": {
    		{"(*Conn).Close", Method, 0},
    		{"(*Conn).Cmd", Method, 0},
    		{"(*Conn).DotReader", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top