Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,143 for somme (0.04 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            then:
            assertMainModuleIsPublished('some.group', 'deck', '1.2', targetMachines, ["some.group:card:1.2"])
            assertVariantsArePublished('some.group', 'deck', '1.2', ['debug', 'release'], targetMachines, ["some.group:shuffle:1.2", "some.group:card:1.2"])
    
            and:
            assertMainModuleIsPublished('some.group', 'card', '1.2', targetMachines)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyJvmLibraryArtifactResolutionIntegrationTest.groovy

            failure.assertHasCause("""Could not find some-artifact-1.0-my-sources.jar (some.group:some-artifact:1.0).
    Searched in the following locations:
        ${sourceArtifact.uri}""")
            failure.assertHasCause("""Could not find some-artifact-1.0-my-javadoc.jar (some.group:some-artifact:1.0).
    Searched in the following locations:
        ${javadocArtifact.uri}""")
        }
    
        def "resolves when some artifacts are missing"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/TreeFormatterTest.groovy

            when:
            formatter.node("Some thing.")
    
            then:
            formatter.toString() == "Some thing."
        }
    
        def "formats root with no children"() {
            when:
            formatter.node("Some thing.")
            formatter.startChildren()
            formatter.endChildren()
    
            then:
            formatter.toString() == "Some thing."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            configurationCache.assertStateLoaded()
            outputContains("some.property = $propertyValue")
    
            where:
            propertyValue | propertySetter
            "some.value"  | """System.setProperty("some.property", "$propertyValue")"""
            "some.value"  | """System.properties["some.property"]="$propertyValue" """
            "1"           | """System.properties["some.property"]=$propertyValue"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenJvmLibraryArtifactResolutionIntegrationTest.groovy

        }
    }
    """
    
            def snapshotModule = repo.module("some.group", "some-artifact", "1.0-SNAPSHOT")
            def snapshotSources = snapshotModule.artifact(classifier: "sources")
            snapshotModule.publish()
    
            fixture.withComponentVersion("some.group", "some-artifact", "1.0-SNAPSHOT")
                    .withSnapshotTimestamp(snapshotModule.uniqueSnapshotVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

                execute("some string", ["array"], file("test"))
    
                execute(["some", "string"] as String[])
                execute(["some", "string"] as String[], ["array"] as String[], file("test"))
                execute(["some", "string"] as String[], ["array"], file("test"))
    
                execute(["some", "string"])
                execute(["some", "string"], ["array"] as String[], file("test"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

            result.add(new TestMethodResult(1, "some test", "some test displayName", SUCCESS, 15, startTime + 25))
            result.add(new TestMethodResult(2, "some test two", "some test two displayName", SUCCESS, 15, startTime + 30))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

            message.contains('some.GradleScript.foo')
    
            message.contains('SimulatedJavaCallLocation.create')
            message.count('java.lang.reflect.Method.invoke') == 3
            message.contains('some.Class.withoutSource')
            message.contains('some.Class.withNativeMethod')
            message.contains('some.KotlinGradleScript')
    
            where:
            fakeStackTrace = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

                }
            """
    
            when:
            configurationCacheRun "some"
    
            then:
            result.groupedOutput.task(":some").assertOutputContains("FIRST").assertOutputContains("LAST")
    
            when:
            configurationCacheRun "some"
    
            then:
            result.groupedOutput.task(":some").assertOutputContains("FIRST").assertOutputContains("LAST")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginCrossVersionSmokeTest.kt

                    kotlinOptions.freeCompilerArgs += "-Xskip-metadata-version-check"
                }
                """
            )
            withFile("buildSrc/src/main/kotlin/some.gradle.kts", """println("some!")""")
    
            withDefaultSettings()
            withBuildScript("""plugins { id("some") }""")
    
            expectConventionDeprecations()
            expectKotlinDslPluginDeprecation()
            if (GradleContextualExecuter.isConfigCache()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top