Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,484 for output1 (0.14 sec)

  1. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Report.java

        /**
         * The type of output the report produces
         */
        enum OutputType {
    
            /**
             * The report outputs a single file.
             * <p>
             * That is, the {@link #getOutputLocation()} points to a single file.
             */
            FILE,
    
            /**
             * The report outputs files into a directory.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

                class MyPlugin : Plugin<Project> {
                    override fun apply(target: Project) {
                        target.tasks.register("myTask") { task ->
                            task.outputs.file("build/output.txt")
                            task.doLast(Action { println("Hello") })
                        }
                    }
                }
            """
    
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

                    configurations { create("default") }
                }
                project(":producer") {
                    task producer {
                        ext.output = objects.fileProperty()
                        outputs.file output
                        output.set(file("out"))
                    }
                    task longRunning {
                        dependsOn producer
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             *     <li>{@code NO-SOURCE} - executing the work was no necessary to produce the outputs</li>
             *     <li>{@code UP-TO-DATE} - the outputs have not changed, because the work is already up-to-date</li>
             *     <li>{@code FROM-CACHE} - the outputs have been loaded from the build cache</li>
             * </ul>
             */
            @Nullable
            String getSkipMessage();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_chatty_parallel_fail.txt

    # Check that each output is attributed to the right test.
    ! go test -json -parallel 3 chatty_parallel_test.go -v
    stdout -count=1 '"Test":"TestChattyParallel/sub-0","Output":"    chatty_parallel_test.go:38: error from sub-0\\n"'
    stdout -count=1 '"Test":"TestChattyParallel/sub-1","Output":"    chatty_parallel_test.go:38: error from sub-1\\n"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedPathSensitivityIntegrationTest.groovy

                task producer {
                    outputs.cacheIf { true }
                    outputs.file("build/outputs/producer.txt")
                    doLast {
                        file("build/outputs/producer.txt").text = "alma"
                    }
                }
    
                task consumer {
                    dependsOn producer
                    outputs.cacheIf { true }
                    inputs.file("build/outputs/producer.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyIncrementalCompilationIntegrationTest.groovy

    class A2{}
    """
            file('src/main/groovy/org/gradle/B.groovy') << 'package org.gradle; class B{}'
            outputs.snapshot { run "compileGroovy" }
    
            when:
            a.text = 'package org.gradle; class A1 {}'
            run "compileGroovy"
    
            then:
            outputs.recompiledClasses('A1')
            outputs.deletedClasses('A2')
        }
    
        def 'only recompile removed packages'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalNativeCompilerTest.groovy

        def delegateCompiler = Mock(Compiler)
        def outputs = Mock(TaskOutputsInternal)
        def compileStateCache = Mock(ObjectHolder)
        def incrementalCompilation = Mock(IncrementalCompilation)
        def deleter = TestFiles.deleter()
        def compiler = new IncrementalNativeCompiler(outputs, delegateCompiler, deleter, compileStateCache, incrementalCompilation)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactoryTest.groovy

            1 * task.getOutputs() >> outputs
            1 * outputs.getFiles() >> fileCollection
            1 * fileCollection.getSingleFile() >> Stub(File)
            0 * _
        }
    
        def "fails resolving lazy IvyArtifact for Provider<Task> notation when task has a multiple output files"() {
            def task = Mock(Task)
            def taskProvider = Mock(TestTaskProvider)
            def outputs = Mock(TaskOutputsInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r23/StandardStreamsCrossVersionSpec.groovy

            then:
            output.toString().contains("task logging")
            output.toString().contains("warn logging")
            output.toString().contains("lifecycle logging")
            output.toString().contains("quiet logging")
            if (targetVersion.baseVersion >= GradleVersion.version('4.7')) {
                // Changed handling of error log messages
                output.toString().contains("error logging")
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top