Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for wirep (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    	delegateServer.AddPostStartHookOrDie("delegate-post-start-hook", func(context PostStartHookContext) error {
    		defer close(delegatePostStartHookChan)
    		return nil
    	})
    
    	// this wires up swagger
    	delegateServer.PrepareRun()
    
    	wrappingConfig := NewConfig(codecs)
    	wrappingConfig.ExternalAddress = "192.168.10.4:443"
    	wrappingConfig.PublicAddress = netutils.ParseIPSloppy("192.168.10.4")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    func v1beta1FuzzerFuncs(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(r *metav1beta1.TableOptions, c fuzz.Continue) {
    			c.FuzzNoCustom(r)
    			// NoHeaders is not serialized to the wire but is allowed within the versioned
    			// type because we don't use meta internal types in the client and API server.
    			r.NoHeaders = false
    		},
    		func(r *metav1beta1.TableRow, c fuzz.Continue) {
    			c.Fuzz(&r.Object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // model contains TF::DumpTensorOp.
    // NEXT ID: 4
    message DebuggerConfig {
      // Type of quantization debugger. Depending on the type, inputs and outputs
      // are wired differently.
      // NEXT ID: 4
      enum DebuggerType {
        DEBUGGER_TYPE_UNSPECIFIED = 0;
        // DEBUGGER_TYPE_WHOLE_MODEL creates two tf.Savedmodel - unquantized and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    === Integration with tasks relying on a Java executable or Java home
    
    Any task that can be configured with a path to a Java executable, or a Java home location, can benefit from toolchains.
    
    While you will not be able to wire a toolchain tool directly, they all have the metadata that gives access to their full path or to the path of the Java installation they belong to.
    
    For example, you can configure the `java` executable for a task as follows:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top