Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 615 for wire (0.13 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/test/JavaModuleBackboxTestExcutionIntegrationTest.groovy

            testModuleClass('org.junit.Assert.assertEquals("consumer", consumer.MainModule.class.getModule().getName())')
    
            then:
            succeeds ':test'
        }
    
        // This test shows how to wire up the tests such that all modules run as Jars, so that resources form other folders than 'classes' are part of the corresponding module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    }
    
    type jsonFrameReader struct {
    	r         io.ReadCloser
    	decoder   *json.Decoder
    	remaining []byte
    }
    
    // NewJSONFramedReader returns an io.Reader that will decode individual JSON objects off
    // of a wire.
    //
    // The boundaries between each frame are valid JSON objects. A JSON parsing error will terminate
    // the read.
    func NewJSONFramedReader(r io.ReadCloser) io.ReadCloser {
    	return &jsonFrameReader{
    		r:       r,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator.go

    	if err != nil {
    		websocketStreams.writeStatus(apierrors.NewInternalError(err)) //nolint:errcheck
    		metrics.IncStreamTranslatorRequest(req.Context(), strconv.Itoa(http.StatusInternalServerError))
    		return
    	}
    
    	// Wire the WebSocket server streams output to the SPDY client input. The stdin/stdout/stderr streams
    	// can be throttled if the transfer rate exceeds the "MaxBytesPerSec" (zero means unset). Throttling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/net/dnsclient.go

    	// terminal empty label is optional here because we assume fully-qualified
    	// (absolute) input. We must therefore reserve space for the first and last
    	// labels' length octets in wire format, where they are necessary and the
    	// maximum total length is 255.
    	// So our _effective_ maximum is 253, but 254 is not rejected if the last
    	// character is a dot.
    	l := len(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/net/http/httptest/recorder.go

    	// at https://httpwg.org/specs/rfc7231.html#status.codes)
    	// and we might block under 200 (once we have more mature 1xx support).
    	// But for now any three digits.
    	//
    	// We used to send "HTTP/1.1 000 0" on the wire in responses but there's
    	// no equivalent bogus thing we can realistically send in HTTP/2,
    	// so we'll consistently panic instead and help people find their bugs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/crypto/ecdh/ecdh.go

    	// constructed due to clamping; for NIST curves, it is rejected by
    	// NewPrivateKey.
    	privateKeyToPublicKey(*PrivateKey) *PublicKey
    }
    
    // PublicKey is an ECDH public key, usually a peer's ECDH share sent over the wire.
    //
    // These keys can be parsed with [crypto/x509.ParsePKIXPublicKey] and encoded
    // with [crypto/x509.MarshalPKIXPublicKey]. For NIST curves, they then need to
    // be converted with [crypto/ecdsa.PublicKey.ECDH] after parsing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. src/internal/testenv/exec.go

    		if cancelCtx != nil && ctx.Err() == context.DeadlineExceeded {
    			// The command timed out due to running too close to the test's deadline.
    			// There is no way the test did that intentionally — it's too close to the
    			// wire! — so mark it as a test failure. That way, if the test expects the
    			// command to fail for some other reason, it doesn't have to distinguish
    			// between that reason and a timeout.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    	}, nil
    }
    
    // SetAuthenticationInfoResolverWrapper sets the
    // AuthenticationInfoResolverWrapper.
    // TODO find a better way wire this, but keep this pull small for now.
    func (a *Webhook) SetAuthenticationInfoResolverWrapper(wrapper webhookutil.AuthenticationInfoResolverWrapper) {
    	a.clientManager.SetAuthenticationInfoResolverWrapper(wrapper)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. src/encoding/gob/encoder.go

    	info, err := getTypeInfo(ut)
    	if err != nil {
    		enc.setError(err)
    		return
    	}
    	// Send the pair (-id, type)
    	// Id:
    	state.encodeInt(-int64(info.id))
    	// Type:
    	enc.encode(state.b, reflect.ValueOf(info.wire), wireTypeUserInfo)
    	enc.writeMessage(w, state.b)
    	if enc.err != nil {
    		return
    	}
    
    	// Remember we've sent this type, both what the user gave us and the base type.
    	enc.sent[ut.base] = info.id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	util "k8s.io/apimachinery/pkg/util/runtime"
    
    	"github.com/fxamacker/cbor/v2"
    )
    
    type metaFactory interface {
    	// Interpret should return the version and kind of the wire-format of the object.
    	Interpret(data []byte) (*schema.GroupVersionKind, error)
    }
    
    type defaultMetaFactory struct{}
    
    func (mf *defaultMetaFactory) Interpret(data []byte) (*schema.GroupVersionKind, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top