Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 202 for INTEGRATION (0.27 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionResolveIntegrationTest.groovy

    class IvyDynamicRevisionResolveIntegrationTest extends AbstractModuleDependencyResolveTest {
    
        @Issue("GRADLE-2502")
        def "latest.integration selects highest version regardless of status"() {
            given:
            buildFile << """
                dependencies {
                    conf 'org.test:projectA:latest.integration'
                }
    """
    
            when:
            repositoryInteractions {
                'org.test:projectA' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/config.go

    	// for integration tests
    	IntegrationTestDefaultsIOP = "tests/integration/iop-integration-test-defaults.yaml"
    
    	// IntegrationTestDefaultsIOPWithQUIC is the path of the default IstioOperator spec to
    	// use for integration tests involving QUIC
    	IntegrationTestDefaultsIOPWithQUIC = "tests/integration/iop-integration-test-defaults-with-quic.yaml"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/BUILD

            "@llvm-project//llvm:not",
            "@llvm-project//mlir:run_lit.sh",
        ],
    )
    
    cc_library(
        name = "tfr_decompose_ctx",
        srcs = ["integration/tfr_decompose_ctx.cc"],
        hdrs = ["integration/tfr_decompose_ctx.h"],
        deps = [
            ":passes",
            ":tfr",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:convert_attr",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ExternalModuleVariantsIntegrationTest.groovy

            outputContains("test-1.2-util.jar {artifactType=jar, org.gradle.status=integration}")
            outputContains("test-1.2-util.aar {artifactType=aar, org.gradle.status=integration}")
            outputContains("test-api-1.2.jar {artifactType=custom, org.gradle.status=integration}")
            outputContains("test-api-1.2 {artifactType=, org.gradle.status=integration}")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            ivyHttpRepo.module('group', 'projectA', '1.2').withStatus('integration').publish()
            def release = ivyHttpRepo.module("group", "projectA", "2.0").withStatus('release').publish()
            def milestone = ivyHttpRepo.module('group', 'projectA', '2.1').withStatus('milestone').publish()
            def integration = ivyHttpRepo.module('group', 'projectA', '2.2').withStatus('integration').publish()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

            with(capturedDetails) {
                id.group == "group"
                id.name == "module"
                id.version == "version"
                status == "integration"
                statusScheme == ["integration", "release"]
            }
        }
    
        def "supports rule with typed IvyModuleDescriptor parameter"() {
            def metadata = ivyMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

                apply plugin: 'xcode'
                group = 'org.gradle'
                version = '2.0'
    
                dependencies {
                    implementation "org.test:greeter:latest.integration"
                }
            """
            fixture.executable.writeToProject(testDirectory)
    
            when:
            succeeds ':xcode'
    
            then:
            result.assertTasksExecuted(":greeter:compileDebugSwift",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top