Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for testRuntime (0.15 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/repo/org.example/project2/1.0/ivy-1.0.xml

        <conf name="archives" visibility="public" description="Configuration for archive artifacts."/>
        <conf name="compile" visibility="private" description="Compile classpath for source set 'main'."/>
        <conf name="testRuntime" visibility="private" description="Runtime classpath for source set 'test'." extends="runtime,testCompile"/>
        <conf name="runtime" visibility="private" description="Runtime classpath for source set 'main'." extends="compile"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildProgressCrossVersionSpec.groovy

            testCompileClasspath.hasAncestor compileTestJava
    
            def testRuntimeClasspath = events.operation(
                "Resolve dependencies :testRuntime", "Resolve dependencies :testRuntimeClasspath",
                "Resolve dependencies of :testRuntime", "Resolve dependencies of :testRuntimeClasspath")
            testRuntimeClasspath.hasAncestor test
        }
    
        def "generates events for failed dependency resolution"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/resources/org/gradle/integtests/publish/maven/pomGeneration/expectedNewPom.txt

              <artifactId>*</artifactId>
              <groupId>*</groupId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
          <groupId>group6</groupId>
          <artifactId>testRuntime</artifactId>
          <version>1.0</version>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>group2</groupId>
          <artifactId>providedCompile</artifactId>
          <version>1.0</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/dependency-management-configurations.graffle/data.plist

    cpg1252\cocoartf1561\cocoasubrtf200 {\fonttbl\f0\fmodern\fcharset0 CourierNewPSMT;\f1\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0 \f0\fs32 \cf0 testRuntime \f1 \ configuration}WrapNOBounds{{128.62075055729849, 141.43130000000014}, {145, 75.318699999999993}}ClassShapedGraphicID{{128.62075055729849, 62.215650000000082}, {145, 47}}ClassShapedGraphicFi{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf200...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         * <pre class='autoTested'>
         * plugins {
         *     id 'java'
         *     id 'ivy-publish'
         * }
         *
         * publishing {
         *   publications {
         *     ivy(IvyPublication) {
         *       configurations {
         *           testCompile {}
         *           testRuntime {
         *               extend "testCompile"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    The `buildNeeded` task builds AND tests all the projects from the project dependencies of the `testRuntime` configuration:
    
    ====
    [.multi-language-sample]
    =====
    ----
    $ gradle :api:buildNeeded
    
    include::{snippetsPath}/multiproject/dependencies-java/tests/multitestingBuildNeeded.out[]
    ----
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    // the internal type (i.e., toKubeContainerStatus()) for containers in
    // different states.
    func TestToKubeContainerStatus(t *testing.T) {
    	cid := &kubecontainer.ContainerID{Type: "testRuntime", ID: "dummyid"}
    	meta := &runtimeapi.ContainerMetadata{Name: "cname", Attempt: 3}
    	imageSpec := &runtimeapi.ImageSpec{Image: "fimage"}
    	var (
    		createdAt  int64 = 327
    		startedAt  int64 = 999
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/integtests/resolve/consistency/JavaProjectResolutionConsistencyIntegrationTest.groovy

                    constraint("org:transitive:{strictly 1.0}", "org:transitive:1.0")
                }
            }
    
            when:
            resolve = resolveClasspath 'testRuntime'
            baz.pom.expectGet()
            baz.artifact.expectGet()
            succeeds 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module('org:foo:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    
    .Common configuration upgrades
    |===
    |Removed Configuration | New Configuration
    
    |`compile`
    |`api` or `implementation`
    
    |`runtime`
    |`runtimeOnly`
    
    |`testRuntime`
    |`testRuntimeOnly`
    
    |`testCompile`
    |`testImplementation`
    
    
    |`<sourceSet>Runtime`
    |`<sourceSet>RuntimeOnly`
    
    |`<sourceSet>Compile`
    |`<sourceSet>Implementation`
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    These configurations are used for compiling and running code from the `main` source set.
    Other sources sets create similar configurations (e.g. `testCompile` and `testRuntime` for the `test` source set), should not be used either.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top