Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 603 for spent (0.06 sec)

  1. pkg/xds/server.go

    	// allow both wildcard and non-wildcard subscriptions.
    	Wildcard bool
    
    	// NonceSent is the nonce sent in the last sent response. If it is equal with NonceAcked, the
    	// last message has been processed. If empty: we never sent a message of this type.
    	NonceSent string
    
    	// NonceAcked is the last acked message.
    	NonceAcked string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/os/signal/doc.go

    loses its controlling terminal. The SIGINT signal is sent when the
    user at the controlling terminal presses the interrupt character,
    which by default is ^C (Control-C). The SIGQUIT signal is sent when
    the user at the controlling terminal presses the quit character, which
    by default is ^\ (Control-Backslash). In general you can cause a
    program to simply exit by pressing ^C, and you can cause it to exit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/admissionregistration/v1beta1";
    
    // MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/prog.go

    	// ObjectID is set for Type "put" and "output-file".
    	ObjectID []byte `json:",omitempty"` // or nil if not used
    
    	// Body is the body for "put" requests. It's sent after the JSON object
    	// as a base64-encoded JSON string when BodySize is non-zero.
    	// It's sent as a separate JSON value instead of being a struct field
    	// send in this JSON object so large values can be streamed in both directions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

      private var failed = false
    
      /** Total number of pings sent by this web socket. */
      private var sentPingCount = 0
    
      /** Total number of pings received by this web socket. */
      private var receivedPingCount = 0
    
      /** Total number of pongs received by this web socket. */
      private var receivedPongCount = 0
    
      /** True if we have sent a ping that is still awaiting a reply. */
      private var awaitingPong = false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    		//     for this specific bookmark, and we even haven't received one.
    		// (b) We have seen the bookmarkAfterResourceVersion, and it was sent already to the client.
    		//     We can simply terminate the watcher.
    
    		// we are graceful = true, when:
    		//
    		// (a) We have seen a bookmark, but it hasn't been sent to the client yet.
    		//     That means we should drain the input buffer which contains
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/admissionregistration/v1";
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. src/net/http/response.go

    	//
    	// Trailer must not be accessed concurrently with Read calls
    	// on the Body.
    	//
    	// After Body.Read has returned io.EOF, Trailer will contain
    	// any trailer values sent by the server.
    	Trailer Header
    
    	// Request is the request that was sent to obtain this Response.
    	// Request's Body is nil (having already been consumed).
    	// This is only populated for Client requests.
    	Request *Request
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. internal/grid/handlers.go

    	// Buffers sent on out can not be referenced once sent.
    	StreamHandlerFn func(ctx context.Context, payload []byte, in <-chan []byte, out chan<- []byte) *RemoteErr
    
    	// StreamHandler handles fully bidirectional streams,
    	// There is flow control in both directions.
    	StreamHandler struct {
    		// Handle an incoming request. Initial payload is sent.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/net/sendfile_test.go

    	b.SetBytes(int64(bench.chunkSize))
    	b.ResetTimer()
    
    	// Data go from file to socket via sendfile(2).
    	sent, err := io.Copy(server, f)
    	if err != nil {
    		b.Fatalf("failed to copy data with sendfile, error: %v", err)
    	}
    	if sent != int64(fileSize) {
    		b.Fatalf("bytes sent mismatch, got: %d, want: %d", sent, fileSize)
    	}
    }
    
    func createTempFile(b *testing.B, size int) *os.File {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top