Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,140 for spent (0.07 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    // byte indicating the channel number (zero indexed) the message was sent on. Messages in both
    // directions should prefix their messages with this channel byte. Used for remote execution,
    // the channel numbers are by convention defined to match the POSIX file-descriptors assigned
    // to STDIN, STDOUT, and STDERR (0, 1, and 2). No other conversion is performed on the raw
    // subprotocol - writes are sent as they are received by the server.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/net/smtp/auth.go

    	// and optionally data to include in the initial AUTH message
    	// sent to the server.
    	// If it returns a non-nil error, the SMTP client aborts
    	// the authentication attempt and closes the connection.
    	Start(server *ServerInfo) (proto string, toServer []byte, err error)
    
    	// Next continues the authentication. The server has just sent
    	// the fromServer data. If more is true, the server expects a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    		return
    	}
    	// Check the random data sent on STDIN was the same returned on STDOUT.
    	if !bytes.Equal(stdoutBytes, randomData) {
    		t.Errorf("unexpected data received: %d sent: %d", len(stdoutBytes), len(randomData))
    	}
    	stderrBytes, err := io.ReadAll(bytes.NewReader(stderr.Bytes()))
    	if err != nil {
    		t.Errorf("error reading the stream: %v", err)
    		return
    	}
    	// Check the random data sent on STDIN was the same returned on STDERR.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/controller.go

    		f(w, event)
    	}
    }
    
    // Event represents a registry update event
    type Event int
    
    const (
    	// EventAdd is sent when an object is added
    	EventAdd Event = iota
    
    	// EventUpdate is sent when an object is modified
    	// Captures the modified object
    	EventUpdate
    
    	// EventDelete is sent when an object is deleted
    	// Captures the object at the last known state
    	EventDelete
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 25 06:54:32 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    	// In that case, the watch stream will begin with synthetic events to
    	// produce the current state of objects in the collection. Once all such
    	// events have been sent, a synthetic "Bookmark" event  will be sent.
    	// The bookmark will report the ResourceVersion (RV) corresponding to the
    	// set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/results/results_manager.go

    	// Get returns the cached result for the container with the given ID.
    	Get(kubecontainer.ContainerID) (Result, bool)
    	// Set sets the cached result for the container with the given ID.
    	// The pod is only included to be sent with the update.
    	Set(kubecontainer.ContainerID, Result, *v1.Pod)
    	// Remove clears the cached result for the container with the given ID.
    	Remove(kubecontainer.ContainerID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 13 07:12:54 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  7. test/typeparam/issue47713.out

    Sent asdf...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 24 18:30:13 UTC 2021
    - 10 bytes
    - Viewed (0)
  8. pkg/test/echo/proto/echo.proto

      string message = 6;
      // Method for the request. Valid only for HTTP
      string method = 9;
      // If true, requests will be sent using h2c prior knowledge
      bool http2 = 7;
      // If true, requests will be sent using http3
      bool http3 = 15;
      // If true, requests will not be sent until magic string is received
      bool serverFirst = 8;
      // If true, 301 redirects will be followed
      bool followRedirects = 14;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

     *    either peer may not have been transmitted to the other.
     *
     * Note that the state progression is independent for each peer. Arriving at a gracefully-closed
     * state indicates that a peer has sent all of its outgoing messages and received all of its
     * incoming messages. But it does not guarantee that the other peer will successfully receive all of
     * its incoming messages.
     */
    interface WebSocket {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/chans.go

    // A sender is used to send values to a Receiver.
    type Sender[T any] struct {
    	values chan<- T
    	done <-chan bool
    }
    
    // Send sends a value to the receiver. It returns whether any more
    // values may be sent; if it returns false the value was not sent.
    func (s *Sender[T]) Send(v T) bool {
    	select {
    	case s.values <- v:
    		return true
    	case <-s.done:
    		return false
    	}
    }
    
    // Close tells the receiver that no more values will arrive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top