Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 104 for someTaskB (0.15 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/configurationCacheProblemsKotlin.sample.conf

    commands: [{
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expect-failure: true
      expected-output-file: fail.out
      allow-additional-output: true
      allow-disordered-output: true
    },{
      executable: gradle
      args: "--rerun-tasks --configuration-cache-problems=warn someTask -DsomeDestination=dest"
      expect-failure: false
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/store.out

    Calculating task graph as no cached configuration is available for tasks: someTask
    > Task :someTask
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 154 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/store.out

    Calculating task graph as no cached configuration is available for tasks: someTask
    > Task :someTask
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 154 bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                task someOtherDep
                task someTask(dependsOn: [someDep, someOtherDep])
            """
    
            expect:
            2.times {
                executer.withTasks("someTask").withArguments("-x", "sODep").run().assertTasksExecuted(":someDep", ":someTask")
                executer.withTasks("someTask").withArguments("-x", ":sODep").run().assertTasksExecuted(":someDep", ":someTask")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            given:
            buildFile << """
                abstract class SomeTask extends DefaultTask {
                    @Internal
                    abstract Property<String> getProp()
    
                    @TaskAction
                    def go() {
                        prop.get()
                    }
                }
    
                tasks.register('thing', SomeTask)
            """
    
            when:
            fails("thing")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/groovy/producer/build.gradle

    artifacts {
        instrumentedJars(instrumentedJar)
    }
    // end::attach-outgoing-artifact[]
    
    /*
    // tag::attach-outgoing-artifact-explicit[]
    artifacts {
        instrumentedJars(someTask.outputFile) {
            builtBy(someTask)
        }
    }
    // end::attach-outgoing-artifact-explicit[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 785 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/NestedBeanJavaInterOpIntegrationTest.groovy

        def setup() {
            pluginDir.file("src/main/java/SomeTask.java") << """
                import ${DefaultTask.name};
                import ${ObjectFactory.name};
                import ${TaskAction.name};
                import ${Nested.name};
                import ${Inject.name};
    
                public class SomeTask extends DefaultTask {
                    private final Params params;
    
                    @Nested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/fail.out

    * What went wrong:
    Configuration cache problems found in this build.
    
    1 problem was found storing the configuration cache.
    - Task `:someTask` of type `org.gradle.api.DefaultTask`: invocation of 'Task.project' at execution time is unsupported.
      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 845 bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/TaskFromPluginValidationIntegrationTest.groovy

            withPrecompiledScriptPlugins()
            def pluginFile = file("buildSrc/src/main/groovy/test.gradle.demo.plugin.gradle")
            writeTaskInto(pluginFile)
            pluginFile << """
                tasks.register("myTask", SomeTask) {
                    input.set("hello")
                    output.set(layout.buildDirectory.file("out.txt"))
                }
            """
    
            buildFile """plugins {
                id 'test.gradle.demo.plugin'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/load.out

    Reusing configuration cache.
    > Task :someTask
    
    1 problem was found reusing the configuration cache.
    - Task `:someTask` of type `org.gradle.api.DefaultTask`: invocation of 'Task.project' at execution time is unsupported.
      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 534 bytes
    - Viewed (0)
Back to top