Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 186 for unwrapping (0.23 sec)

  1. okhttp/src/test/java/okhttp3/FallbackTestClientSocketFactory.kt

     * that will not accept the [TLS_FALLBACK_SCSV] cipher, thus bypassing server-side fallback
     * checks on platforms that support it. Unfortunately this wrapping will disable any
     * reflection-based calls to SSLSocket from Platform.
     */
    class FallbackTestClientSocketFactory(
      delegate: SSLSocketFactory,
    ) : DelegatingSSLSocketFactory(delegate) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/bootstraptoken/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // +groupName=bootstraptoken.kubeadm.k8s.io
    
    // Package bootstraptoken contains an API and utilities wrapping the
    // "bootstrap.kubernetes.io/token" Secret type to ease its usage in kubeadm.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 01 21:11:49 UTC 2021
    - 851 bytes
    - Viewed (0)
  3. src/internal/zstd/bits.go

    	return r
    }
    
    // backup steps back to the last byte we used.
    func (br *bitReader) backup() {
    	for br.cnt >= 8 {
    		br.off--
    		br.cnt -= 8
    	}
    }
    
    // makeError returns an error at the current offset wrapping a string.
    func (br *bitReader) makeError(msg string) error {
    	return br.r.makeError(int(br.off), msg)
    }
    
    // reverseBitReader reads a bit stream in reverse.
    type reverseBitReader struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/net/sock_bsd.go

    	}
    	if n == 0 || err != nil {
    		return syscall.SOMAXCONN
    	}
    	// FreeBSD stores the backlog in a uint16, as does Linux.
    	// Assume the other BSDs do too. Truncate number to avoid wrapping.
    	// See issue 5030.
    	if n > 1<<16-1 {
    		n = 1<<16 - 1
    	}
    	return int(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 918 bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/README.md

    operator in the script should be in the "math" category, and it will be
    generated in the output file `c/experimental/ops/math_ops.cc`.
    
    Running this script should be a no-op, generating identical code other than
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 17:21:01 UTC 2021
    - 993 bytes
    - Viewed (0)
  6. src/net/sock_linux.go

    package net
    
    import (
    	"internal/syscall/unix"
    	"syscall"
    )
    
    // Linux stores the backlog as:
    //
    //   - uint16 in kernel version < 4.1,
    //   - uint32 in kernel version >= 4.1
    //
    // Truncate number to avoid wrapping.
    //
    // See issue 5030 and 41470.
    func maxAckBacklog(n int) int {
    	major, minor := unix.KernelVersion()
    	size := 16
    	if major > 4 || (major == 4 && minor >= 1) {
    		size = 32
    	}
    
    	var max uint = 1<<size - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 03 18:39:45 UTC 2022
    - 993 bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/WrappingExecutorService.java

     * wrap} tasks before they are submitted to the underlying executor.
     *
     * <p>Note that task wrapping may occur even if the task is never executed.
     *
     * <p>For delegation without task-wrapping, see {@link ForwardingExecutorService}.
     *
     * @author Chris Nokleberg
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/WrappingExecutorService.java

     * wrap} tasks before they are submitted to the underlying executor.
     *
     * <p>Note that task wrapping may occur even if the task is never executed.
     *
     * <p>For delegation without task-wrapping, see {@link ForwardingExecutorService}.
     *
     * @author Chris Nokleberg
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. src/sync/export_test.go

    	PopHead() (any, bool)
    	PopTail() (any, bool)
    }
    
    func NewPoolDequeue(n int) PoolDequeue {
    	d := &poolDequeue{
    		vals: make([]eface, n),
    	}
    	// For testing purposes, set the head and tail indexes close
    	// to wrapping around.
    	d.headTail.Store(d.pack(1<<dequeueBits-500, 1<<dequeueBits-500))
    	return d
    }
    
    func (d *poolDequeue) PushHead(val any) bool {
    	return d.pushHead(val)
    }
    
    func (d *poolDequeue) PopHead() (any, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/RegularImmutableList.java

      private final List<E> delegate;
      @Nullable E forSerialization;
    
      RegularImmutableList(List<E> delegate) {
        // TODO(cpovirk): avoid redundant unmodifiableList wrapping
        this.delegate = unmodifiableList(delegate);
      }
    
      @Override
      List<E> delegateList() {
        return delegate;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top