Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 135 for INTEGRATION (0.21 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

                }
            '''
            fixture.prepare()
        }
    
        @ToBeFixedForConfigurationCache
        def "selects and builds from master for latest.integration selector"() {
            given:
            buildFile << """
                dependencies { compile 'test:test:latest.integration' }
            """
            repo.commit("v1")
            repoSettingsFile.replace("version = '1.0'", "version = '2.0'")
            repo.commit("v2")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

                        println("Uses native integration in worker: " + NativeServices.instance.createNativeCapabilities().useNativeIntegrations())
                    }
                }
            """)
    
            when:
            succeeds("doWork")
    
            then:
            outputContains("Uses native integration in daemon: $usesNativeIntegration")
            outputContains("Uses native integration in worker: $usesNativeIntegration")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

    import java.util.Locale;
    import java.util.Map;
    
    import static org.gradle.internal.nativeintegration.filesystem.services.JdkFallbackHelper.newInstanceOrFallback;
    
    /**
     * Provides various native platform integration services.
     */
    public class NativeServices extends DefaultServiceRegistry implements ServiceRegistry {
        private static final Logger LOGGER = LoggerFactory.getLogger(NativeServices.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                        phase("test"),
                        phase("prepare-package"),
                        phase("package"),
                        phase("pre-integration-test"),
                        phase("integration-test"),
                        phase("post-integration-test"),
                        phase("verify"),
                        phase("install"),
                        phase("deploy"));
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("incubating/java/modules-multi-project-with-integration-tests")
                displayName = "Building Java Modules with Blackbox Tests with Test Suites (Incubating)"
                description = "Build Java Modules with blackbox integration tests using the new Test Suites API."
                category = "Java Modules"
                common {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  6. tests/integration/helm/upgrade/util.go

    	"istio.io/istio/pkg/test/helm"
    	kubetest "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/shell"
    	"istio.io/istio/pkg/test/util/retry"
    	helmtest "istio.io/istio/tests/integration/helm"
    	"istio.io/istio/tests/util/sanitycheck"
    )
    
    const (
    	gcrHub            = "gcr.io/istio-release"
    	prodTag           = "prod"
    	canaryTag         = "canary"
    	latestRevisionTag = "latest"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    Since build scripts are Kotlin or Groovy scripts, you can execute an Ant build as an external process.
    Your build script may contain statements like: `"ant clean compile".execute()`.footnote:[In Groovy you can execute Strings.]
    
    Gradle's Ant integration allows you to migrate your build from Ant to Gradle smoothly:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. pkg/test/framework/suite.go

    		".*/istio.io/istio/tests/integration/",
    		".*/istio.io/istio/",
    
    		// These are also used for istio.io/istio, but make help to satisfy
    		// the feature label enforcement when running with BUILD_WITH_CONTAINER=1.
    		"^/work/tests/integration/",
    		"^/work/",
    
    		// Outside of standard Istio  GOPATH
    		".*/istio/tests/integration/",
    	)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        if (testType == TestType.INTEGRATION && executer == "isolatedProjects") {
            isEnabled = false
        }
    }
    
    
    private
    fun IntegrationTest.setUpAgentIfNeeded(testType: TestType, executer: String) {
        if (executer == "embedded") {
            // Apply the instrumentation agent to the test process when running integration tests with embedded Gradle executer.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    
    [[migmvn:integration_tests]]
    == Configuring integration tests
    
    Many Maven builds incorporate integration tests of some sort, which Maven supports through an extra set of phases: `pre-integration-test`, `integration-test`, `post-integration-test`, and `verify`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top