Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,106 for wereld (0.16 sec)

  1. src/go/doc/testdata/examples/import_groups.golden

    -- .Play --
    package main
    
    import (
    	"fmt"
    )
    
    func main() {
    	fmt.Println("Hello, world!")
    }
    -- .Output --
    Hello, world!
    -- Limiter.Play --
    package main
    
    import (
    	"fmt"
    	"time"
    
    	"golang.org/x/time/rate"
    )
    
    func main() {
    	// Uses fmt, time and rate.
    	l := rate.NewLimiter(rate.Every(time.Second), 1)
    	fmt.Println(l)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 317 bytes
    - Viewed (0)
  2. tests/test_tutorial/test_response_headers/test_tutorial002.py

    
    def test_path_operation():
        response = client.get("/headers-and-object/")
        assert response.status_code == 200, response.text
        assert response.json() == {"message": "Hello World"}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 09 18:06:12 UTC 2020
    - 378 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180214005133-e7a685a342c0.txt

    // Package quote collects pithy sayings.
    package quote // import "rsc.io/quote"
    
    // Hello returns a greeting.
    func Hello() string {
    	return "Hello, world."
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func Go() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_response_headers/test_tutorial001.py

    client = TestClient(app)
    
    
    def test_path_operation():
        response = client.get("/headers/")
        assert response.status_code == 200, response.text
        assert response.json() == {"message": "Hello World"}
        assert response.headers["X-Cat-Dog"] == "alone in the world"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 09 18:06:12 UTC 2020
    - 426 bytes
    - Viewed (0)
  5. 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)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/JGitPluginSmokeTest.groovy

                        sourceFile.text = "goodbye world"
                        grgit.add(patterns: [ 'sourceFile' ])
                        grgit.commit {
                            message = "second commit"
                        }
                    }
                }
    
                task checkout {
                    dependsOn tag
                    doLast {
                        assert sourceFile.text == 'goodbye world'
                        grgit.checkout {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/go/doc/testdata/examples/import_groups.go

    // license that can be found in the LICENSE file.
    
    package foo_test
    
    import (
    	"fmt"
    	"time"
    
    	"golang.org/x/time/rate"
    )
    
    func Example() {
    	fmt.Println("Hello, world!")
    	// Output: Hello, world!
    }
    
    func ExampleLimiter() {
    	// Uses fmt, time and rate.
    	l := rate.NewLimiter(rate.Every(time.Second), 1)
    	fmt.Println(l)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 429 bytes
    - Viewed (0)
  8. test/fixedbugs/issue4585.go

    	copy((*[12]byte)(unsafe.Pointer(&a))[:], "hello world!")
    	a.A, a.B = 1, 2
    	b.A, b.B = 1, 2
    	if a != b {
    		panic("broken equality: a != b")
    	}
    }
    
    func test4() {
    	var a, b V
    	m := make(map[V]int)
    
    	copy((*[20]byte)(unsafe.Pointer(&a))[:], "Hello World, Gopher!")
    	a.A1, a.A2, a.A3, a.B, a.C = 1, 2, 3, 4, 5
    	b.A1, b.A2, b.A3, b.B, b.C = 1, 2, 3, 4, 5
    
    	if a != b {
    		panic("broken equality: a != b")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorNestingIntegrationTest.groovy

                task runInWorker(type: NestingWorkerTask)
            """.stripIndent()
    
            when:
            succeeds("runInWorker")
    
            then:
            outputContains("Hello World")
    
            where:
            nestedIsolationMode << ISOLATION_MODES
        }
    
        def "workers with no isolation can wait on spawned work"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/rsc.io_quote_v1.2.0.txt

    // Package quote collects pithy sayings.
    package quote // import "rsc.io/quote"
    
    // Hello returns a greeting.
    func Hello() string {
    	return "Hello, world."
    }
    
    // Glass returns a useful phrase for world travelers.
    func Glass() string {
    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func Go() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.6K bytes
    - Viewed (0)
Back to top