Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for printCounts (0.3 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            when:
            succeeds("printCounts")
            then:
            executedAndNotSkipped(':myTask')
            outputContains("outputFileCount = 2, inputFileCount = 3, inputValueCount = 1, nestedInputCount = 3, nestedInputValueCount = 1")
    
            when:
            inputFile.text = "changed"
            withBuildCache().succeeds("printCounts")
            then:
            executedAndNotSkipped(':myTask')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/printers/yaml.go

    // to the given version first.
    // If PrintObj() is called multiple times, objects are separated with a '---' separator.
    type YAMLPrinter struct {
    	printCount int64
    }
    
    // PrintObj prints the data as YAML.
    func (p *YAMLPrinter) PrintObj(obj runtime.Object, w io.Writer) error {
    	// we use reflect.Indirect here in order to obtain the actual value from a pointer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 14:15:25 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

         *                     String s = (String)"Hello World";
         *                                ^
         * 1 error
         * 1 warning
         * </pre>
         *
         * @see com.sun.tools.javac.main.JavaCompiler#printCount(String, int)
         */
        void printDiagnosticCounts() {
            Log logger = Log.instance(new Context());
            printDiagnosticCount(logger, "error", errorCount);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - IPVS: Any ipvs scheduler can now be configured. If a un-usable scheduler is configured `kube-proxy` will re-start and the logs must be checked (same as before but different log printouts). ([#114878](https://github.com/kubernetes/kubernetes/pull/114878), [@uablrek](https://github.com/uablrek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top