Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 636 for tent (0.04 sec)

  1. 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)
  2. 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)
  3. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

      @Throws(IOException::class)
      override fun onReadMessage(text: String) {
        listener.onMessage(this, text)
      }
    
      @Throws(IOException::class)
      override fun onReadMessage(bytes: ByteString) {
        listener.onMessage(this, bytes)
      }
    
      @Synchronized override fun onReadPing(payload: ByteString) {
        // Don't respond to pings after we've failed or sent the close frame.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-test.png

    java-library-ignore-deprecated-test.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. src/net/http/response.go

    //
    // The Response Body is closed after it is sent.
    func (r *Response) Write(w io.Writer) error {
    	// Status line
    	text := r.Status
    	if text == "" {
    		text = StatusText(r.StatusCode)
    		if text == "" {
    			text = "status code " + strconv.Itoa(r.StatusCode)
    		}
    	} else {
    		// Just to reduce stutter, if user set r.Status to "200 OK" and StatusCode to 200.
    		// Not important.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. 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)
  9. docs/metrics/v3.md

    | `minio_notification_events_sent_total`        | `counter` | Total number of events sent to the targets                                               | `server` |
    | `minio_notification_events_skipped_total`     | `counter` | Events that were skipped to be sent to the targets due to the in-memory queue being full | `server` |
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K 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