Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for wirep (0.06 sec)

  1. src/crypto/tls/handshake_messages.go

    // they are read from, or written to, the wire. This is typically the case for
    // messages which are either not sent, or need to be hashed out of order from
    // when they are read/written.
    //
    // For most messages, the message is marshalled using their marshal method,
    // since their wire representation is idempotent. For clientHelloMsg and
    // serverHelloMsg, we store the original wire representation of the message and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	gomaxprocs func() int32
    }
    
    // init initializes a scavenger state and wires to the current G.
    //
    // Must be called from a regular goroutine that can allocate.
    func (s *scavengerState) init() {
    	if s.g != nil {
    		throw("scavenger state is already wired")
    	}
    	lockInit(&s.lock, lockRankScavenge)
    	s.g = getg()
    
    	s.timer = new(timer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	// return a handle for it.
    	//
    	// If WrapSession returns an error, the connection is terminated.
    	//
    	// Warning: the return value will be exposed on the wire and to clients in
    	// plaintext. The application is in charge of encrypting and authenticating
    	// it (and rotating keys) or returning high-entropy identifiers. Failing to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	ReadBufferSize int
    
    	// nextProtoOnce guards initialization of TLSNextProto and
    	// h2transport (via onceSetNextProtoDefaults)
    	nextProtoOnce      sync.Once
    	h2transport        h2Transport // non-nil if http2 wired up
    	tlsNextProtoWasNil bool        // whether TLSNextProto was nil when the Once fired
    
    	// ForceAttemptHTTP2 controls whether HTTP/2 is enabled when a non-zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

            }
        }
    }
    
    tasks.register("resolve") {
        val conf: FileCollection = configurations["runtimeClasspath"]
    
        // Wire build dependencies
        dependsOn(conf)
    
        // Resolve dependencies
        doLast {
            assert(conf.files.map { it.name } == listOf("foo-1.0.jar"))
        }
    }
    ----
    ======
    =====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    // This ensures mac addresses are unique for proper load balancing
    // There is a possibility of MAC collisions but this Mac address is used for remote endpoints only
    // and not sent on the wire.
    func conjureMac(macPrefix string, ip net.IP) string {
    	if ip4 := ip.To4(); ip4 != nil {
    		a, b, c, d := ip4[0], ip4[1], ip4[2], ip4[3]
    		return fmt.Sprintf("%v-%02x-%02x-%02x-%02x", macPrefix, a, b, c, d)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. src/net/http/request.go

    // had ended up blocked by some intrusion detection systems.
    // See https://codereview.appspot.com/7532043.
    const defaultUserAgent = "Go-http-client/1.1"
    
    // Write writes an HTTP/1.1 request, which is the header and body, in wire format.
    // This method consults the following fields of the request:
    //
    //	Host
    //	URL
    //	Method (defaults to "GET")
    //	Header
    //	ContentLength
    //	TransferEncoding
    //	Body
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    func (c *Conn) readFromUntil(r io.Reader, n int) error {
    	if c.rawInput.Len() >= n {
    		return nil
    	}
    	needs := n - c.rawInput.Len()
    	// There might be extra input waiting on the wire. Make a best effort
    	// attempt to fetch it so that it can be used in (*Conn).Read to
    	// "predict" closeNotify alerts.
    	c.rawInput.Grow(needs + bytes.MinRead)
    	_, err := c.rawInput.ReadFrom(&atLeastReader{r, int64(needs)})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    		}
    		recordingConn.WriteTo(out)
    		t.Logf("Wrote %s\n", path)
    	}
    }
    
    // peekError does a read with a short timeout to check if the next read would
    // cause an error, for example if there is an alert waiting on the wire.
    func peekError(conn net.Conn) error {
    	conn.SetReadDeadline(time.Now().Add(100 * time.Millisecond))
    	if n, err := conn.Read(make([]byte, 1)); n != 0 {
    		return errors.New("unexpectedly read data")
    	} else if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top