Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for wirep (1.04 sec)

  1. src/crypto/rsa/pss.go

    	em, err := encrypt(pub, sig)
    	if err != nil {
    		return ErrVerification
    	}
    
    	// Like in signPSSWithSalt, deal with mismatches between emLen and the size
    	// of the modulus. The spec would have us wire emLen into the encoding
    	// function, but we'd rather always encode to the size of the modulus and
    	// then strip leading zeroes if necessary. This only happens for weird
    	// modulus sizes anyway.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/nettest/conntest.go

    	}
    }
    
    // resyncConn resynchronizes the connection into a sane state.
    // It assumes that everything written into c is echoed back to itself.
    // It assumes that 0xff is not currently on the wire or in the read buffer.
    func resyncConn(t *testing.T, c net.Conn) {
    	t.Helper()
    	c.SetDeadline(neverTimeout)
    	errCh := make(chan error)
    	go func() {
    		_, err := c.Write([]byte{0xff})
    		errCh <- err
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // in the header instead.
    //
    // Likewise, if the handler didn't set a Content-Type, we sniff that
    // from the initial chunk of output.
    //
    // The Writers are wired together like:
    //
    //  1. *response (the ResponseWriter) ->
    //  2. (*response).w, a [*bufio.Writer] of bufferBeforeChunkingSize bytes ->
    //  3. chunkWriter.Writer (whose writeHeader finalizes Content-Length/Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    		// If this constant is changed, DefaultMaxRequestSizeBytes in k8s.io/apiserver/pkg/cel/limits.go
    		// should be changed to reflect the new value, if the two haven't
    		// been wired together already somehow.
    		MaxRequestBodyBytes: int64(3 * 1024 * 1024),
    
    		// Default to treating watch as a long-running operation
    		// Generic API servers have no inherent long-running subresources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    The Gradle build uses [Java Toolchain](https://docs.gradle.org/current/userguide/toolchains.html) support to compile and execute tests across multiple versions of Java.
    
    Available JDKs on your machine are automatically detected and wired for the various compile and test tasks.
    Some tests require multiple JDKs to be installed on your computer, be aware of this if you make changes related to anything toolchains related.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. pkg/controlplane/instance_test.go

    		IP:   net.IPv4(127, 0, 0, 1),
    		Port: 443,
    	}
    }
    
    // TestLegacyRestStorageStrategies ensures that all Storage objects which are using the generic registry Store have
    // their various strategies properly wired up. This surfaced as a bug where strategies defined Export functions, but
    // they were never used outside of unit tests because the export strategies were not assigned inside the Store.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/InetAddresses.java

     * were never supposed to be seen on the wire. That assumption was dropped, some say mistakenly, in
     * later RFCs with the apparent aim of making IPv4-to-IPv6 transition simpler.
     *
     * <p>Technically one <i>can</i> create a 128bit IPv6 address with the wire format of a "mapped"
     * address, as shown above, and transmit it in an IPv6 packet header. However, Java's InetAddress
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InetAddresses.java

     * were never supposed to be seen on the wire. That assumption was dropped, some say mistakenly, in
     * later RFCs with the apparent aim of making IPv4-to-IPv6 transition simpler.
     *
     * <p>Technically one <i>can</i> create a 128bit IPv6 address with the wire format of a "mapped"
     * address, as shown above, and transmit it in an IPv6 packet header. However, Java's InetAddress
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. src/runtime/cgocall.go

    	// used again if callback decide to make syscall.
    	winsyscall := mp.winsyscall
    
    	exitsyscall()
    
    	getg().m.winsyscall = winsyscall
    
    	// Note that raceacquire must be called only after exitsyscall has
    	// wired this M to a P.
    	if raceenabled {
    		raceacquire(unsafe.Pointer(&racecgosync))
    	}
    
    	// From the garbage collector's perspective, time can move
    	// backwards in the sequence above. If there's a callback into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. src/internal/trace/internal/oldtrace/parser.go

    func (p *parser) readRawEvent(flags uint, ev *rawEvent) error {
    	// The number of arguments is encoded using two bits and can thus only
    	// represent the values 0–3. The value 3 (on the wire) indicates that
    	// arguments are prefixed by their byte length, to encode >=3 arguments.
    	const inlineArgs = 3
    
    	// Read event type and number of arguments (1 byte).
    	b, ok := p.readByte()
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top