Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,383 for wereld (0.16 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/SampleIncludeProcessorTest.groovy

    task hello {
        doLast {
            println "hello world"
        }
    }
    """
    
            String asciidocContent = """
    = Doctitle
    :samples-dir: ${tmpDir.root.canonicalPath}
    
    include::sample[dir="src/samples",files="build.gradle[]"]
    """
    
            when:
            String content = asciidoctor.convert(asciidocContent, [:])
    
            then:
            content.contains('println "hello world"')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/fossil/hello.txt

    fossil add hello.go
    fossil commit --no-prompt --nosign --date-override 2017-09-22T01:19:07Z --comment 'hello world'
    
    fossil timeline --oneline
    cmp stdout .fossil-timeline
    
    -- .fossil-timeline --
    d4c7dcdc29 hello world
    58da0d15e9 initial empty check-in
    +++ no more data (2) +++
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 470 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/listProperty/tests/listPropertyGroovy.out

    > Task :producerOne
    Wrote 'Hello, World!' to /home/user/gradle/samples/output/one.txt
    
    > Task :producerTwo
    Wrote 'Hello, World!' to /home/user/gradle/samples/output/two.txt
    
    > Task :consumer
    Read 'Hello, World!' from /home/user/gradle/samples/output/one.txt
    Read 'Hello, World!' from /home/user/gradle/samples/output/two.txt
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 381 bytes
    - Viewed (0)
  4. maven-builder-support/src/test/java/org/apache/maven/building/StringSourceTest.java

            StringSource source = new StringSource("Hello World!");
    
            try (InputStream is = source.getInputStream();
                    Scanner scanner = new Scanner(is)) {
                assertEquals("Hello World!", scanner.nextLine());
            }
        }
    
        @Test
        void testGetLocation() {
            StringSource source = new StringSource("Hello World!");
            assertEquals("(memory)", source.getLocation());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/listProperty/tests/listPropertyKotlin.out

    > Task :producerOne
    Wrote 'Hello, World!' to /home/user/gradle/samples/kotlin/output/one.txt
    
    > Task :producerTwo
    Wrote 'Hello, World!' to /home/user/gradle/samples/kotlin/output/two.txt
    
    > Task :consumer
    Read 'Hello, World!' from /home/user/gradle/samples/kotlin/output/one.txt
    Read 'Hello, World!' from /home/user/gradle/samples/kotlin/output/two.txt
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
  6. src/runtime/lockrank_on.go

    	stopped := worldIsStopped.Load()
    	if stopped > 1 {
    		systemstack(func() {
    			print("inconsistent world stop count=", stopped, "\n")
    			throw("inconsistent world stop count")
    		})
    	}
    
    	return stopped == 1
    }
    
    // assertWorldStopped throws if the world is not stopped. It does not check
    // which M stopped the world.
    //
    // nosplit to ensure it can be called in as many contexts as possible.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. cmd/gotemplate/gotemplate_test.go

    			expectedErr: noFileErr.Error(),
    		},
    		"data": {
    			in:       `{{.Hello}} {{.World}}`,
    			data:     map[string]string{"Hello": "world", "World": "hello"},
    			expected: "world hello",
    		},
    		"include": {
    			in:       `{{include "test.txt" | indent 2}}`,
    			files:    map[string]string{"test.txt": "hello\nworld"},
    			expected: "hello\n  world",
    		},
    	} {
    		cwd, err := os.Getwd()
    		require.NoError(t, err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 22 13:43:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionCustomTestSourceSet/kotlin/src/functionalTest/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

        def setup() {
            settingsFile = new File(testProjectDir,'settings.gradle')
            buildFile = new File(testProjectDir,'build.gradle')
        }
    
        def "hello world task prints hello world"() {
            given:
            settingsFile << "rootProject.name = 'hello-world'"
            buildFile << """
                plugins {
                    id 'org.gradle.sample.helloworld'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

            file("src/main/groovy/org/gradle/class2.java") << "package org.gradle; class class2 { }"
        }
    
        private badResources() {
            file("src/main/resources/bad.properties") << """hello=World"""
        }
    
        private sampleStylesheet() {
            normaliseFileSeparators(resources.getResource('/checkstyle-custom-stylesheet.xsl').getAbsolutePath())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesBetweenBuildsFileSystemWatchingIntegrationTest.groovy

            def mainSourceFile = file(mainSourceFileRelativePath)
            mainSourceFile.text = sourceFileWithGreeting("Hello World!")
    
            when:
            runWithWatchingEnabled("run")
            then:
            outputContains "Hello World!"
            executedAndNotSkipped ":compileJava", ":classes", ":run"
    
            when:
            mainSourceFile.text = sourceFileWithGreeting("Hello VFS!")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top