Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,318 for wereld (0.25 sec)

  1. 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)
  2. 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)
  3. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            def textFile = repo.workTree.file('source.txt')
            textFile << 'Hello world!'
            c1 = repo.commit('Initial commit')
            repo.createBranch('release')
            repo.createLightWeightTag('1.0.1')
            repo.createAnnotatedTag('v1.0.1', 'Release 1.0.1')
            def anotherSource = repo.workTree.file('dir/another.txt')
            anotherSource << 'Goodbye world!'
            c2 = repo.commit('Second Commit')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. cmd/xl-storage_test.go

    		{
    			volume, "myobject", 0, 16,
    			[]byte("hello, world"),
    			io.ErrUnexpectedEOF,
    		},
    		// Reading from an offset success. - 7
    		{
    			volume, "myobject", 7, 5,
    			[]byte("world"), nil,
    		},
    		// Reading from an object but buffer size greater. - 8
    		{
    			volume, "myobject",
    			7, 8,
    			[]byte("world"),
    			io.ErrUnexpectedEOF,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/internal/deployment/JavaApplicationDeploymentIntegrationTest.groovy

            succeeds("run")
            then:
            assertApplicationReady()
            assertLogHasMessage("[APP] > Hello, World!")
        }
    
        def "deployment is automatically restarted"() {
            when:
            succeeds("run")
            then:
            assertApplicationReady()
            assertLogHasMessage("[APP] > Hello, World!")
    
            when:
            file("ready").delete()
            messageSrc.text = messageSrc.text.replace("APP", "NEW")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/property/tests/propertyGroovy.out

    Hello, World from a Property!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 15:37:47 UTC 2024
    - 60 bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/server_test.go

    		},
    		// invalid probe type
    		{
    			probe: `{"/app-health/hello-world/readyz": {"exec": {"command": [ "true" ]}}}`,
    			err:   "invalid prober type",
    		},
    		// tcp probes are valid as well
    		{
    			probe: `{"/app-health/hello-world/readyz": {"tcpSocket": {"port": 8888}}}`,
    		},
    		// probes must be one of tcp, http or gRPC
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginUnixShellsIntegrationTest.groovy

            then:
            outputContains('Hello World!')
        }
    
        @Requires([UnitTestPreconditions.UnixDerivative, PluginTestPreconditions.DashAvailable])
        def "can execute generated Unix start script in Dash"() {
            given:
            succeeds('installDist')
    
            when:
            runViaUnixStartScript("dash")
    
            then:
            outputContains('Hello World!')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/property/tests/propertyKotlin.out

    Hello, World from a Property!
    Hello, World from a Provider!
    
    ------------------------------------------------------------
    Root project 'property-provider'
    ------------------------------------------------------------
    
    classpath
    No dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 15:37:47 UTC 2024
    - 328 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/generate_workspace.txt

    module example.com/mod
    -- mod/gen.go --
    //go:generate go run gen.go got.txt
    
    package main
    
    import "os"
    
    func main() {
        outfile := os.Args[1]
        os.WriteFile(outfile, []byte("Hello World!\n"), 0644)
    }
    -- want.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 437 bytes
    - Viewed (0)
Back to top