Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for KeepAliveInterval (0.14 sec)

  1. src/net/tcpsockopt_windows.go

    		// Given that we can't set KeepAliveInterval alone, and this code path
    		// is new, it doesn't exist before, so we just return an error.
    		return syscall.WSAENOPROTOOPT
    	case idle >= 0 && interval < 0:
    		// Although we can't set KeepAliveTime alone either, this existing code
    		// path had been backing up [SetKeepAlivePeriod] which used to be set both
    		// KeepAliveTime and KeepAliveInterval to 15 seconds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pkg/keepalive/options.go

    // the necessary set of flags to configure the grpc keepalive options.
    func (o *Options) AttachCobraFlags(cmd *cobra.Command) {
    	cmd.PersistentFlags().DurationVar(&o.Time, "keepaliveInterval", o.Time,
    		"The time interval if no activity on the connection it pings the peer to see if the transport is alive")
    	cmd.PersistentFlags().DurationVar(&o.Timeout, "keepaliveTimeout", o.Timeout,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. internal/event/target/mqtt.go

    	User                 string         `json:"username"`
    	Password             string         `json:"password"`
    	MaxReconnectInterval time.Duration  `json:"reconnectInterval"`
    	KeepAlive            time.Duration  `json:"keepAliveInterval"`
    	RootCAs              *x509.CertPool `json:"-"`
    	QueueDir             string         `json:"queueDir"`
    	QueueLimit           uint64         `json:"queueLimit"`
    }
    
    // Validate MQTTArgs fields
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top