Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,815 for wire (0.11 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrPlugin.java

            Configuration apiConfiguration = project.getConfigurations().getByName(JvmConstants.API_CONFIGURATION_NAME);
            apiConfiguration.extendsFrom(antlrConfiguration);
    
            // Wire the antlr configuration into all antlr tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/propagate_quantize_type.cc

        // Skip the original dequant op and connect the op before dequantize to the
        // user op.
        user_op->setOperand(user_idx, op_before_dequantize);
    
        // Wire input/output nodes.
        new_dequantize_op->setOperand(0, user_op->getResult(0));
        new_dequantize_op->getResult(0).setType(user_op->getResult(0).getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    	// RootScopedKinds are the root scoped kinds for the primary GroupVersion
    	RootScopedKinds sets.String
    
    	// Serializer is used to determine how to convert responses from API methods into bytes to send over
    	// the wire.
    	Serializer     runtime.NegotiatedSerializer
    	ParameterCodec runtime.ParameterCodec
    
    	Typer                 runtime.ObjectTyper
    	Creater               runtime.ObjectCreater
    	Convertor             runtime.ObjectConvertor
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/net/http/httputil/persist.go

    func (sc *ServerConn) Close() error {
    	c, _ := sc.Hijack()
    	if c != nil {
    		return c.Close()
    	}
    	return nil
    }
    
    // Read returns the next request on the wire. An [ErrPersistEOF] is returned if
    // it is gracefully determined that there are no more requests (e.g. after the
    // first request on an HTTP/1.0 connection, or after a Connection:close on a
    // HTTP/1.1 connection).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. 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)
  9. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                component.getBinaries().whenElementKnown(binary -> components.add(binary));
    
                if (component instanceof ProductionComponent) {
                    // Add an assemble task for each binary and also wire the development binary in to the `assemble` task
                    component.getBinaries().whenElementFinalized(ComponentWithOutputs.class, binary -> {
                        // Determine which output to produce at development time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	// We intentionally did not add a flag for this option. Users of the
    	// apiserver library can wire it to a flag.
    	JSONPatchMaxCopyBytes int64
    	// The limit on the request body size that would be accepted and
    	// decoded in a write request. 0 means no limit.
    	// We intentionally did not add a flag for this option. Users of the
    	// apiserver library can wire it to a flag.
    	MaxRequestBodyBytes int64
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top