Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,905 for Consumes (0.18 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. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.NodeAddress"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.NodeAddress"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

                }
                buffer.consumeWhitespace();
                if (!buffer.consume('#')) {
                    continue;
                }
                buffer.consumeWhitespace();
                if (buffer.consume("define")) {
                    parseDefineDirectiveBody(buffer, macros, macroFunctions);
                } else if (buffer.consume("include")) {
                    parseIncludeOrImportDirectiveBody(buffer, false, includes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  8. 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)
  9. src/fmt/doc.go

    except newline.
    
    In the format string, a verb introduced by the % character
    consumes and parses input; these verbs are described in more
    detail below. A character other than %, space, or newline in
    the format consumes exactly that input character, which must
    be present. A newline with zero or more spaces before it in
    the format string consumes zero or more spaces in the input
    followed by a single newline or the end of the input. A space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. 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)
Back to top