Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 354 for spent (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

       *
       * A push promise contains all the headers that pertain to a server-initiated request, and a
       * `promisedStreamId` to which response frames will be delivered. Push promise frames are sent as
       * a part of the response to `streamId`. The `promisedStreamId` has a priority of one greater than
       * `streamId`.
       *
       * @param streamId client-initiated stream ID.  Must be an odd number.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

        Note over client,operation: Response is already sent, can't change it anymore
        opt Tasks
            operation -->> tasks: Send background tasks
        end
        opt Raise other exception
            tasks -->> tasks: Handle exceptions in the background task code
        end
    ```
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	return map_ExpressionWarning
    }
    
    var map_MatchCondition = map[string]string{
    	"":           "MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  9. src/net/tcpsock.go

    // SetLinger sets the behavior of Close on a connection which still
    // has data waiting to be sent or to be acknowledged.
    //
    // If sec < 0 (the default), the operating system finishes sending the
    // data in the background.
    //
    // If sec == 0, the operating system discards any unsent or
    // unacknowledged data.
    //
    // If sec > 0, the data is sent in the background as with sec < 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    				2. client verifies the apiserver certificate sent against its cluster certificate authority data
    				3. client sending its client certificate along with its public key to the apiserver
    				>4. apiserver verifies the client certificate sent against its cluster certificate authority data
    
    		    	description:
    					here, with this function,
    					client certificate and pub key sent during the handshake process
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top