Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,905 for Consumes (0.22 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/README.adoc

    The project in this example contains three "code" subprojects: `application`, `list` and `utilities`.  All three projects apply the `jacoco` plugin, and `application` consumes both `list` and `utilities` via its implementation configuration.  A fourth subproject `code-coverage-report` is the standalone utility project used to collect the coverage results.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    The project in this example contains three "code" subprojects: `application`, `list` and `utilities`.  All three projects apply the `java` plugin, and `application` consumes both `list` and `utilities` via its implementation configuration.  A fourth subproject `test-results` is the standalone utility project used to collect the aggregated test results.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/README.adoc

    The project in this example contains three projects: `application`, `list` and `utilities`.  All three projects apply the `jacoco` plugin, and `application` consumes both `list` and `utilities` on its implementation configuration.  The `application` subproject is the final distribution of this software project, and applies `jacoco-report-aggregation` to perform the code coverage aggregation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper.go

    	ws.Path(prefix)
    	ws.Doc("get available API versions")
    	ws.Route(ws.GET("/").To(wrapped.restfulHandle).
    		Doc("get available API versions").
    		Operation("getAPIVersions").
    		Produces(mediaTypes...).
    		Consumes(mediaTypes...).
    		Writes(returnType))
    	return ws
    }
    
    // WrapAggregatedDiscoveryToHandler wraps a handler with an option to
    // emit the aggregated discovery by passing in the aggregated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/mime/mediatype.go

    	return encv, true
    }
    
    func isNotTokenChar(r rune) bool {
    	return !isTokenChar(r)
    }
    
    // consumeToken consumes a token from the beginning of provided
    // string, per RFC 2045 section 5.1 (referenced from 2183), and return
    // the token consumed and the rest of the string. Returns ("", v) on
    // failure to consume at least one character.
    func consumeToken(v string) (token, rest string) {
    	notPos := strings.IndexFunc(v, isNotTokenChar)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "description": "hints contains information associated with how an endpoint should be consumed."
            },
            "hostname": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingManagerInternal.java

         */
        @Override
        LoggingManagerInternal stop();
    
        /**
         * Consumes logging from System.out and System.err and Java util logging.
         */
        LoggingManagerInternal captureSystemSources();
    
        /**
         * Sets the log level to capture stdout at. Does not enable capture.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/regexp/syntax/prog.go

    	}
    	return flag
    }
    
    const noMatch = -1
    
    // MatchRune reports whether the instruction matches (and consumes) r.
    // It should only be called when i.Op == [InstRune].
    func (i *Inst) MatchRune(r rune) bool {
    	return i.MatchRunePos(r) != noMatch
    }
    
    // MatchRunePos checks whether the instruction matches (and consumes) r.
    // If so, MatchRunePos returns the index of the matching rune pair
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pkg/kubelet/qos/policy.go

    )
    
    // GetContainerOOMScoreAdjust returns the amount by which the OOM score of all processes in the
    // container should be adjusted.
    // The OOM score of a process is the percentage of memory it consumes
    // multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000
    // and 1000. Containers with higher OOM scores are killed if the system runs out of memory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cmdflag/flag.go

    // sets its value and returns the flag along with the remaining (unused) arguments.
    //
    // ParseOne always returns either a non-nil Flag or a non-nil error,
    // and always consumes at least one argument (even on error).
    //
    // Unlike (*flag.FlagSet).Parse, ParseOne does not log its own errors.
    func ParseOne(fs *flag.FlagSet, args []string) (f *flag.Flag, remainingArgs []string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 02:38:04 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top