Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 396 for executors (0.17 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/BaseBuildScanPluginCheckInFixture.groovy

                }
            """
        }
    
        String plugins() {
            """
                plugins { id "$id" version "$runtimeVersion" }
            """
        }
    
        void publishDummyPlugin(GradleExecuter executer) {
            executer.beforeExecute {
                publishDummyPluginNow()
            }
        }
    
        private String getPropertyPrefix() {
            simpleClassName.uncapitalize()
        }
    
        void publishDummyPluginNow() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

    import org.gradle.integtests.fixtures.StaleOutputJavaProject
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.gradle.integtests.fixtures.executer.ExecutionResult
    import org.gradle.integtests.fixtures.executer.GradleExecuter
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    import org.gradle.integtests.fixtures.versions.ReleasedVersionDistributions
    import org.gradle.internal.jvm.Jvm
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. guava-gwt/pom.xml

                  </target>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>gwt-maven-plugin</artifactId>
            <version>${gwt.plugin.version}</version>
            <executions>
              <execution>
                <id>gwt-compile</id>
                <goals>
                  <goal>compile</goal>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.BuildOperationsFixture
    import org.gradle.integtests.fixtures.executer.ExecutionFailure
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    
    class ConfigurationCacheFixture {
        static final String ISOLATED_PROJECTS_MESSAGE = "Isolated projects is an incubating feature."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.integtests.fixtures.executer.OutputScrapingExecutionResult
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            failures.empty
        }
    
        def "executes tasks in dependency order"() {
            Task a = task("a")
            Task b = task("b", a)
            Task c = task("c", b, a)
            Task d = task("d", c)
    
            when:
            populateAndExecute([d])
    
            then:
            executedTasks == [a, b, c, d]
            failures.empty
        }
    
        def "executes dependencies in name order"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

            given:
            resources.maybeCopy('MavenConversionIntegrationTest/multiModule')
            def workingDir = temporaryFolder.createDir("workingDir")
    
            when:
            executer.beforeExecute {
                executer.inDirectory(workingDir).usingProjectDirectory(targetDir)
            }
            run 'init', '--dsl', scriptDsl.id as String, '--incubating'
    
            then:
            targetDir.file(dsl.settingsFileName).exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

                    doLast {
                        println files.files
                    }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    // controller is responsible for managing the attach/detach operations for
    // this node, and therefore the volume manager should not
    //
    // loopSleepDuration - the amount of time the reconciler loop sleeps between
    // successive executions
    //
    // waitForAttachTimeout - the amount of time the Mount function will wait for
    // the volume to be attached
    //
    // nodeName - the Name for this node, used by Attach and Detach methods
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

            }
    
            then:
            1 * loadMetadata.originMetadata >> cachedOriginMetadata
            1 * loadMetadata.resultingSnapshots >> outputsFromCache
    
            0 * _
        }
    
        def "executes work and stores in cache on cache miss"() {
            given:
            def execution = Mock(Execution)
    
            when:
            def result = step.execute(work, context)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top