Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 87 for multiplexed (0.19 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"tls":              "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      optional IngressBackend backend = 1;
    
      // TLS configuration. Currently the Ingress only supports a single TLS
      // port, 443. If multiple members of this list specify different hosts, they
      // will be multiplexed on the same port according to the hostname specified
      // through the SNI TLS extension, if the ingress controller fulfilling the
      // ingress supports SNI.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      optional IngressBackend backend = 1;
    
      // TLS configuration. Currently the Ingress only supports a single TLS
      // port, 443. If multiple members of this list specify different hosts, they
      // will be multiplexed on the same port according to the hostname specified
      // through the SNI TLS extension, if the ingress controller fulfilling the
      // ingress supports SNI.
      // +optional
      repeated IngressTLS tls = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

     *  Fix: Drop cookies that contain ASCII NULL and other bad characters. Previously such cookies
        would cause OkHttp to crash when they were included in a request.
     *  Fix: Release duplicated multiplexed connections. If we concurrently establish connections to an
        HTTP/2 server, close all but the first connection.
     *  Fix: Fail the HTTP/2 connection if first frame isn't `SETTINGS`.
     *  Fix: Forbid spaces in header names.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// TLS configuration. Currently the Ingress only supports a single TLS
    	// port, 443. If multiple members of this list specify different hosts, they
    	// will be multiplexed on the same port according to the hostname specified
    	// through the SNI TLS extension, if the ingress controller fulfilling the
    	// ingress supports SNI.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K 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/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    //                coefficients for first iteration
    //
    // So in this case we would have two iterations. In the first
    // both lanes are multiplied by r². In the second only the
    // first lane is multiplied by r² and the second lane is
    // instead multiplied by r. This gives use the odd and even
    // powers of r that we need from the original equation.
    //
    // Notation:
    //
    //   h - accumulator
    //   r - key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top