Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for INTEGRATION (0.24 sec)

  1. cluster/images/etcd/Makefile

    integration-build-test: build-integration-test-image integration-test
    test: unit-test integration-build-test
    all: all-build test
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. build/dependencies.yaml

        - path: test/integration/benchmark-controller.json
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/integration/scheduler_perf/config/templates/pod-default.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/integration/scheduler_perf/config/templates/pod-with-node-affinity.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

            given:
            def versions = [
                '1': 'release',
                '2': 'milestone',
                '3': 'integration',
                '4': 'release',
                '5': 'integration'
            ]
            repository {
                versions.each { String version, String s ->
                    "org:test:$version" {
                        // Gradle metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            description = "Run all multi-version integration tests with all version to cover"
            group = ciGroup
        }
    
        register("parallelTest") {
            description = "Run all integration tests in parallel execution mode: each Gradle execution started in a test run with --parallel"
            group = ciGroup
        }
    
        register("noDaemonTest") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            0 * _
    
        }
    
        def "returns no match when no versions are chosen with metadata"() {
            given:
            def a = component('1.2', 'integration')
            def b = component('1.3', 'integration')
            def c = component('2.0', 'integration')
            def selectedComponentResult = Mock(ComponentSelectionContext)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. build/root/Makefile

    #   make test-integration WHAT=./test/integration/pods GOFLAGS="-v" KUBE_TEST_ARGS='-run ^TestPodUpdateActiveDeadlineSeconds$$'
    endef
    .PHONY: test-integration
    ifeq ($(PRINT_HELP),y)
    test-integration:
    	echo "$$TEST_IT_HELP_INFO"
    else
    test-integration:
    	# KUBE_TEST_ARGS is explicitly passed here in order to ensure that we are preserving any dollar signs in the value.
    	KUBE_TEST_ARGS='$(value KUBE_TEST_ARGS)' hack/make-rules/test-integration.sh $(WHAT)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top