Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,134 for Consumes (0.17 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumerTest.groovy

    class DaemonOutputConsumerTest extends ConcurrentSpec {
        def consumer = new DaemonOutputConsumer()
    
        def "consumes process output until EOF"() {
            def process = process('hey Joe!')
    
            when:
            consumer.connectStreams(process, "cool process", executor)
            consumer.start()
            consumer.stop()
            then:
            consumer.processOutput.trim() == 'hey Joe!'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. samples/bookinfo/swagger.yaml

        get:
          tags:
          - "product"
          summary: "List all products"
          description: "List all products available in the application with a minimum amount of information."
          operationId: "getProducts"
          consumes:
          - "application/json"
          produces:
          - "application/json"
          responses:
            200:
              description: "successful operation"
              schema:
                type: "array"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/error_util.h

      // Returns Status corresponding to the diagnostics reported. This consumes
      // the diagnostics reported and returns a Status of type Unknown. It is
      // required to consume the error status, if there is one, before destroying
      // the object.
      Status ConsumeStatus();
    
      // Returns the combination of the passed in status and consumed diagnostics.
      // This consumes the diagnostics reported and either appends the diagnostics
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/ConsumingStandardInputCrossVersionSpec.groovy

            if (!dist.toolingApiStdinInEmbeddedModeSupported) {
                // Did not work in embedded mode in older versions
                toolingApi.requireDaemons()
            }
        }
    
        @Timeout(90)
        def "consumes input when building model"() {
            given:
            file('build.gradle')  << """
    description = System.in.text
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. releasenotes/notes/48461.yaml

        Its default value is 1 and will not be executed concurrently. 
        When `initSidecarScopes` consumes a lot of time and you want to reduce time consumption by increasing CPU consumption,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 10:56:07 UTC 2024
    - 559 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/intstr/generated.proto

    option go_package = "k8s.io/apimachinery/pkg/util/intstr";
    
    // IntOrString is a type that can hold an int32 or a string.  When used in
    // JSON or YAML marshalling and unmarshalling, it produces or consumes the
    // inner type.  This allows you to have, for example, a JSON field that can
    // accept a name or number.
    // TODO: Rename to Int32OrString
    //
    // +protobuf=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 23:57:45 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/util/intstr/generated.proto

    option go_package = "k8s.io/apimachinery/pkg/util/intstr";
    
    // IntOrString is a type that can hold an int32 or a string.  When used in
    // JSON or YAML marshalling and unmarshalling, it produces or consumes the
    // inner type.  This allows you to have, for example, a JSON field that can
    // accept a name or number.
    // TODO: Rename to Int32OrString
    //
    // +protobuf=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/loader.h

      virtual const protobuf::Map<string, SignatureDef>& GetSignatures() const = 0;
    };
    
    /// SavedModel representation once the SavedModel is loaded from storage.
    ///
    /// NOTE: Prefer to use SavedModelBundleLite in new code, as it consumes less
    /// RAM.
    struct SavedModelBundle : public SavedModelBundleInterface {
      /// A TensorFlow Session does not Close itself on destruction. To avoid
      /// resource leaks, we explicitly call Close on Sessions that we create.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/routes/version.go

    	versionWS.Doc("git code version from which this is built")
    	versionWS.Route(
    		versionWS.GET("/").To(v.handleVersion).
    			Doc("get the code version").
    			Operation("getCodeVersion").
    			Produces(restful.MIME_JSON).
    			Consumes(restful.MIME_JSON).
    			Writes(version.Info{}))
    
    	c.Add(versionWS)
    }
    
    // handleVersion writes the server's version information.
    func (v Version) handleVersion(req *restful.Request, resp *restful.Response) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    type Interface interface {
    	// Stop tells the producer that the consumer is done watching, so the
    	// producer should stop sending events and close the result channel. The
    	// consumer should keep watching for events until the result channel is
    	// closed.
    	//
    	// Because some implementations may create channels when constructed, Stop
    	// must always be called, even if the consumer has not yet called
    	// ResultChan().
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
Back to top