Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for multiplexed (0.4 sec)

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

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package httpstream adds multiplexed streaming support to HTTP requests and
    // responses via connection upgrades.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 20:10:42 UTC 2017
    - 758 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    	Dial(protocols ...string) (Connection, string, error)
    }
    
    // UpgradeRoundTripper is a type of http.RoundTripper that is able to upgrade
    // HTTP requests to support multiplexed bidirectional streams. After RoundTrip()
    // is invoked, if the upgrade is successful, clients may retrieve the upgraded
    // connection by calling UpgradeRoundTripper.Connection().
    type UpgradeRoundTripper interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/upgrade.go

    func NewResponseUpgraderWithPings(pingPeriod time.Duration) httpstream.ResponseUpgrader {
    	return responseUpgrader{pingPeriod: pingPeriod}
    }
    
    // UpgradeResponse upgrades an HTTP response to one that supports multiplexed
    // streams. newStreamHandler will be called synchronously whenever the
    // other end of the upgraded connection creates a new stream.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Protocol.kt

       *
       * [rfc_7540_34]: https://tools.ietf.org/html/rfc7540.section-3.4
       */
      H2_PRIOR_KNOWLEDGE("h2_prior_knowledge"),
    
      /**
       * QUIC (Quick UDP Internet Connection) is a new multiplexed and secure transport atop UDP,
       * designed from the ground up and optimized for HTTP/2 semantics. HTTP/1.1 semantics are layered
       * on HTTP/2.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. docs/contribute/concurrency.md

    #### Framed protocols
    
    Framed protocols like http/2 don't lend themselves to blocking APIs. Each application-layer thread wants to do blocking I/O for a specific stream, but the streams are multiplexed on the socket. You can't just talk to the socket, you need to cooperate with the other application-layer threads that you're sharing it with.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    	return &info, nil
    }
    
    // IoctlKCMAttach attaches a TCP socket and associated BPF program file
    // descriptor to a multiplexor.
    func IoctlKCMAttach(fd int, info KCMAttach) error {
    	return ioctlPtr(fd, SIOCKCMATTACH, unsafe.Pointer(&info))
    }
    
    // IoctlKCMUnattach unattaches a TCP socket file descriptor from a multiplexor.
    func IoctlKCMUnattach(fd int, info KCMUnattach) error {
    	return ioctlPtr(fd, SIOCKCMUNATTACH, unsafe.Pointer(&info))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. src/internal/abi/stack.go

    // license that can be found in the LICENSE file.
    
    package abi
    
    const (
    	// StackNosplitBase is the base maximum number of bytes that a chain of
    	// NOSPLIT functions can use.
    	//
    	// This value must be multiplied by the stack guard multiplier, so do not
    	// use it directly. See runtime/stack.go:stackNosplit and
    	// cmd/internal/objabi/stack.go:StackNosplit.
    	StackNosplitBase = 800
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/ytab.go

    }
    
    // Returns true if yt is compatible with args.
    //
    // Elements from args and yt.args are used
    // to index ycover table like `ycover[args[i]+yt.args[i]]`.
    // This means that args should contain values that already
    // multiplied by Ymax.
    func (yt *ytab) match(args []int) bool {
    	// Trailing Yxxx check is required to avoid a case
    	// where shorter arg list is matched.
    	// If we had exact yt.args length, it could be `yt.argc != len(args)`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 06 15:40:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. pkg/apis/authentication/types.go

    	// It can be repeated multiplied times for multiple groups.
    	ImpersonateGroupHeader = "Impersonate-Group"
    
    	// ImpersonateUserExtraHeaderPrefix is a prefix for any header used to impersonate an entry in the
    	// extra map[string][]string for user.Info.  The key will be every after the prefix.
    	// It can be repeated multiplied times for multiple map keys and the same key can be repeated multiple
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. hack/serve-prom-scrapes.sh

    # <timestamp>.scrape
    # where <timestamp> is seconds since Jan 1, 1970 UTC.
    # Each such file is taken to be a scrape that lacks timestamps,
    # and the timestamp from the filename is multiplied by the necessary 1000
    # and added to the data in that file.
    
    # This requires an `nc` command that this script knows how to wrangle.
    
    if (( $# != 2 )); then
        echo "Usage: $0 port_num scrapes_dir" >&2
        exit 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 06:33:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top