Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 871 for output1 (0.1 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            commandLineExecution.execute(executionListener)
    
            then:
            outputs.stdErr.contains('--broken')
            outputs.stdErr.contains('USAGE: gradle [option...] [task...]')
            outputs.stdErr.contains('--help')
            outputs.stdErr.contains('--some-option')
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    ----
    <1> *Register Output*: The `process` task writes its output to a log file.
    <2> *Modify Output*: The task writes to its output file as it executes.
    <3> *Task Failure*: The task throws a `VerificationException` and fails at this point.
    <4> *Continue to Modify Output*: This line never runs due to the exception stopping the task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            source "class A {}", "class B {}", "class C {}"
            outputs.snapshot { run language.compileTaskName }
    
            when:
            source "class B extends A {}"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses('B')
    
            when:
            outputs.snapshot()
            source "class A { /* change */ }"
            run language.compileTaskName
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

    """
            and:
            outputs.snapshot { run "mainExecutable" }
    
            when:
            otherHeaderFile << """
                // Some extra content
    """
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped compileTask
    
            and:
            outputs.recompiledFile sourceFile
            and:
            !output.contains("should not be used")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            def a = java "@Bean class A {}"
            java "@Bean class B {}"
            java "class Unrelated {}"
    
            outputs.snapshot { run "compileJava" }
    
            when:
            a.delete()
            run "compileJava"
    
            then:
            outputs.deletedClasses("A", "AHelper")
            outputs.recompiledFiles("ServiceRegistry", "ServiceRegistryResource.txt")
            serviceRegistryReferences("BHelper")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/OutputEventRendererTest.groovy

            then:
            outputs.stdOut.readLines() == ['message']
            outputs.stdErr == ''
        }
    
        def rendersErrorLogEventsToStdErr() {
            when:
            renderer.attachSystemOutAndErr()
            renderer.onOutput(event('message', LogLevel.ERROR))
    
            then:
            outputs.stdOut == ''
            outputs.stdErr.readLines() == ['message']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            run "compileJava"
            a.text = "@Helper class A { public void foo() {} }"
            outputs.snapshot { run "compileJava" }
    
            when:
            b.text = " class B { }"
            run "compileJava"
    
            then:
            outputs.deletedFiles("BHelper", "BHelperResource")
            outputs.recompiledFiles("B")
        }
    
        def "generated files are recompiled when annotated file is affected by a change"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/LoggingServiceRegistryTest.groovy

            then:
            outputs.stdOut == ''
            outputs.stdErr == ''
    
            when:
            loggingManager.levelInternal = LogLevel.WARN
            loggingManager.start()
            logger.warn("warning")
            logger.error("error")
    
            then:
            outputs.stdOut == TextUtil.toPlatformLineSeparators('warning\n')
            outputs.stdErr == TextUtil.toPlatformLineSeparators('error\n')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/gradients/math_grad_test.cc

                    absl::Span<AbstractTensorHandle*> outputs) {
      return ops::AddV2(ctx, inputs[0], inputs[1], &outputs[0], "Add");
    }
    
    Status ExpModel(AbstractContext* ctx,
                    absl::Span<AbstractTensorHandle* const> inputs,
                    absl::Span<AbstractTensorHandle*> outputs) {
      return ops::Exp(ctx, inputs[0], &outputs[0], "Exp");
    }
    
    Status SqrtModel(AbstractContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 17:32:14 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/main.go

    			}
    
    			// reg outputs
    			s = s[:0]
    			for i, r := range v.reg.outputs {
    				s = append(s, intPair{countRegs(r), i})
    			}
    			if len(s) > 0 {
    				sort.Sort(byKey(s))
    				fmt.Fprintln(w, "outputs: []outputInfo{")
    				for _, p := range s {
    					r := v.reg.outputs[p.val]
    					fmt.Fprintf(w, "{%d,%d},%s\n", p.val, r, a.regMaskComment(r))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top