Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 246 for wire (0.14 sec)

  1. src/encoding/gob/type.go

    		switch ut.externalEnc {
    		case xGob:
    			info.wire.GobEncoderT = gt
    		case xBinary:
    			info.wire.BinaryMarshalerT = gt
    		case xText:
    			info.wire.TextMarshalerT = gt
    		}
    		rt = ut.user
    	} else {
    		t := info.id.gobType()
    		switch typ := rt; typ.Kind() {
    		case reflect.Array:
    			info.wire.ArrayT = t.(*arrayType)
    		case reflect.Map:
    			info.wire.MapT = t.(*mapType)
    		case reflect.Slice:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContext.java

    public class OutputEventListenerBackedLoggerContext implements ILoggerFactory {
    
        private static final LogLevel DEFAULT_LOG_LEVEL = LogLevel.LIFECYCLE;
    
        static final String HTTP_CLIENT_WIRE_LOGGER_NAME = "org.apache.http.wire";
        static final String META_INF_EXTENSION_MODULE_LOGGER_NAME = "org.codehaus.groovy.runtime.m12n.MetaInfExtensionModule";
        private static final String GROOVY_VM_PLUGIN_FACTORY = "org.codehaus.groovy.vmplugin.VMPluginFactory";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. cmd/storage-rest_test.go

    		{"foo", "myobject", testData, false, false},
    		{"foo", "myobject-0byte", []byte{}, false, false},
    		// volume not found error.
    		{"foo-bar", "myobject", testData, true, false},
    		// Test some weird characters over the wire.
    		{"foo", "newline\n", testData, false, true},
    		{"foo", "newline\t", testData, false, true},
    		{"foo", "newline \n", testData, false, true},
    		{"foo", "newline$$$\n", testData, false, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    This allows you to wire together `Provider` and `Property` instances before the values are configured.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/InetAddresses.java

     *
     * <p>"IPv4 mapped" addresses were originally a representation of IPv4 addresses for use on an IPv6
     * socket that could receive both IPv4 and IPv6 connections (by disabling the {@code IPV6_V6ONLY}
     * socket option on an IPv6 socket). Yes, it's confusing. Nevertheless, these "mapped" addresses
     * were never supposed to be seen on the wire. That assumption was dropped, some say mistakenly, in
    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

     *
     * <p>"IPv4 mapped" addresses were originally a representation of IPv4 addresses for use on an IPv6
     * socket that could receive both IPv4 and IPv6 connections (by disabling the {@code IPV6_V6ONLY}
     * socket option on an IPv6 socket). Yes, it's confusing. Nevertheless, these "mapped" addresses
     * were never supposed to be seen on the wire. That assumption was dropped, some say mistakenly, in
    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/traceruntime.go

    	// writer but it's not guaranteed, even if inSyscall is true. Although it might seem like from a
    	// syscall context we're always stealing a P for ourselves, we may have not wired it up yet (so
    	// it wouldn't be visible to eventWriter) or we may not even intend to wire it up to ourselves
    	// at all (e.g. entersyscall_gcwait).
    	if !pp.trace.statusWasTraced(tl.gen) && pp.trace.acquireStatus(tl.gen) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K 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