Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,308 for desert (0.19 sec)

  1. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/GroovyBasePluginIntegrationTest.groovy

            configurations.customRuntimeClasspath.state.toString()
        }
        doLast {
            assert customCompileClasspathState.get() == "UNRESOLVED"
            assert customRuntimeClasspathState.get() == "UNRESOLVED"
        }
    }
            """
    
            expect:
            succeeds("verify")
        }
    
        def "not specifying a groovy runtime produces decent error message"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaBasePluginIntegrationTest.groovy

                    doLast {
                        assert configurations.customCompileClasspath.state.toString() == "UNRESOLVED"
                        assert configurations.customRuntimeClasspath.state.toString() == "UNRESOLVED"
                    }
                }
            """
    
            expect:
            succeeds("verify")
        }
    
        def "not specifying a scala runtime produces decent error message"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/GradleConfigurabilityIntegrationSpec.groovy

            expect:
            buildSucceeds """
    assert providers.systemProperty('some-prop').get() == 'some-value'
    assert java.lang.management.ManagementFactory.runtimeMXBean.inputArguments.contains('-Xmx64m')
            """
        }
    
        def "shows decent message when awkward java home used"() {
            def dummyJdk = file("dummyJdk").createDir()
            assert dummyJdk.isDirectory()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

            given:
            file('build.gradle') << """
    task foo { doLast { assert false } }
    task bar { doLast { assert true } }
    """
    
            when:
            withConnection {
                it.newBuild().forTasks('foo').withArguments('bar').run()
            }
    
            then:
            noExceptionThrown()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. tests/integration/telemetry/testdata/istio-mtls-dest-rule.yaml

    zirain <******@****.***> 1665678622 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 318 bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

            def daemonDir = new File(baseDir, GradleVersion.current().version)
            assert daemonDir.exists()
            daemonDir.listFiles().findAll { it.name.endsWith('.log') }
        }
    
        String readLog(File baseDir) {
            def logs = getLogs(baseDir)
    
            //assert single log
            assert logs.size() == 1
    
            logs[0].text
        }
    
        void printAllLogs(File baseDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/BinaryTypeModelRuleExtractorTest.groovy

            then:
            1 * mockRegistry.configure(_, _) >> { ModelActionRole role, ModelAction action ->
                assert role == ModelActionRole.Mutate
                assert action.subject == ModelReference.of(ComponentSpecFactory)
            }
            0 * _
        }
    
        def "decent error message for rule declaration problem - #descr"() {
            def ruleMethod = ruleDefinitionForMethod(methodName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/registry/LanguageTypeModelRuleExtractorTest.groovy

            when:
            apply(registration, mockRegistry)
    
            then:
            1 * mockRegistry.configure(_, _) >> { ModelActionRole role, ModelAction action ->
                assert role == ModelActionRole.Mutate
                assert action.subject == ModelReference.of(ComponentSpecFactory)
            }
            0 * _
    
            where:
            methodName                 | _
            "validTypeRule"            | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/BinaryTasksModelRuleExtractorTest.groovy

            when:
            apply(registration, mockRegistry)
    
            then:
            1 * mockRegistry.configure(_, _) >> { ModelActionRole role, ModelAction action ->
                assert role == ModelActionRole.Defaults
                assert action.subject == ModelReference.of("binaries", BinaryContainer.class)
            }
            0 * _
        }
    
        static interface SomeBinarySpec extends BinarySpec {}
    
        class Rules {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpsIntegTest.groovy

            when:
            expectPublication()
            keyStore.configureServerAndClientCerts(executer)
            succeeds 'publish'
    
            then:
            verifyPublications()
        }
    
        def "decent error message when client can't authenticate server"() {
            keyStore.enableSslWithServerCert(server)
            initBuild()
    
            when:
            keyStore.configureIncorrectServerCert(executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top