Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for xHello (0.29 sec)

  1. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/string_length.txt

    expression: "Hello, world".length
    constant: 12
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 70 bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

                }
            """)
    
            executer.noDeprecationChecks()
    
            when:
            configurationCacheFails(":help")
    
            then:
            failure.assertOutputContains("Hello")
            problems.assertFailureHasProblems(failure) {
                withProblem("Plugin 'test-convention-plugin': external process started")
            }
    
            where:
            snippetsFactory             | file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTransformIntegrationTest.groovy

                    ${TransformFixture.TRANSFORM_SOURCE_CONFIGURATION} project(":subproject")
                }
            """)
    
            when:
            configurationCacheRun(":$task")
    
            then:
            outputContains("Hello")
    
            where:
            [snippetsFactory, task] << [
                [
                    exec("getExecOperations()").java,
                    javaexec("getExecOperations()").java,
                    processBuilder().java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ExternalProcessFixture.groovy

     */
    class ExternalProcessFixture {
        private final TestFile testDirectory
        private final ShellScript testExecutable = ShellScript.builder()
            .printText("Hello from script")
            .writeTo(testDirectory, "test")
    
        ExternalProcessFixture(TestFile testDirectory) {
            this.testDirectory = testDirectory
        }
    
        private String getCommandLineAsVarargLiterals() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginBuildScriptIntegrationTest.groovy

                ${snippets.imports}
                ${snippets.body}
            """
    
            when:
            configurationCacheFails(":help")
    
            then:
            failure.assertOutputContains("Hello")
            problems.assertFailureHasProblems(failure) {
                if (file.endsWith(".gradle.kts")) {
                    withProblem("Settings file '${relativePath(file)}': external process started")
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            when:
            configurationCacheRun "greet"
    
            then:
            configurationCache.assertStateStored()
            output.contains("Hello!")
    
            when:
            configurationCacheRun "greet"
    
            then:
            configurationCache.assertStateLoaded()
            output.contains("Hello!")
        }
    
        def "#usage property from properties file used as build logic input"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

            given:
            settingsFile << """
                include("a")
            """
            buildKotlinFile << """
                project.extensions.extraProperties["myProperty"] = "hello"
            """
    
            // Requires a sub-project
            file("a/build.gradle.kts") << """
                val myProperty: $type by project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                        given:
                        settingsFile << "rootProject.name = 'hello-world'"
                        buildFile << '''
                            task helloWorld {
                                doLast {
                                    println 'Hello world!'
                                }
                            }
                        '''
    
                        when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInBuildScriptIntegrationTest.groovy

                ${snippets.imports}
                ${snippets.body}
            """
    
            when:
            configurationCacheFails(":help")
    
            then:
            failure.assertOutputContains("Hello")
            problems.assertFailureHasProblems(failure) {
                withProblem("${location.replace('/', File.separator)}: external process started")
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. docs/bucket/replication/test_del_marker_proxying.sh

    ./mc replicate add sitea/bucket --remote-bucket siteb/bucket
    
    # Run the test to make sure proxying of DEL marker doesn't happen
    loop_count=0
    while true; do
    	if [ $loop_count -eq 100 ]; then
    		break
    	fi
    	echo "Hello World" | ./mc pipe sitea/bucket/obj$loop_count
    	./mc rm sitea/bucket/obj$loop_count
    	RESULT=$({ ./mc stat sitea/bucket/obj$loop_count; } 2>&1)
    	if [[ ${RESULT} != *"Object does not exist"* ]]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top