Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,372 for wereld (0.53 sec)

  1. src/internal/zstd/testdata/f2a8e35c.helloworld-11000x.zst

    hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world hello world...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 47 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    	it to be interpreted differently than if it were the main module.
    -- exclude-err --
    go: example.com/cmd/a@v1.0.0-exclude (in example.com/cmd@v1.0.0-exclude):
    	The go.mod file for the module providing named packages contains one or
    	more exclude directives. It must not contain directives that would cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

            "hello/other"           | 0      | "hello/world"      | 0
            "/var/hello/other"      | 5      | "hello/world"      | 0
            "/var/hello/world"      | 5      | "hello/world"      | 0
            "/var/hello\\world"     | 5      | "hello/world"      | 0
            "/var/hello/world/next" | 5      | "hello/world"      | 0
            "/var/hello1/other"     | 5      | "hello/world"      | 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java

         * {@code <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the
         * exception is thrown so this information is merely meant to assist the user.
         *
         * @return The identifier of the POM or an empty string if not known, never {@code null}.
         */
        public String getModelId() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/hello.txt

    -- input --
    	Hello,
    	world
    
    	This is
    	a test.
    -- dump --
    Doc
    	Paragraph
    		Plain
    			"Hello,\n"
    			"world"
    	Paragraph
    		Plain
    			"This is\n"
    			"a test."
    -- gofmt --
    Hello,
    world
    
    This is
    a test.
    -- html --
    <p>Hello,
    world
    <p>This is
    a test.
    -- markdown --
    Hello, world
    
    This is a test.
    -- text --
    Hello, world
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 326 bytes
    - Viewed (0)
  6. src/io/pipe_test.go

    func TestPipe1(t *testing.T) {
    	c := make(chan int)
    	r, w := Pipe()
    	var buf = make([]byte, 64)
    	go checkWrite(t, w, []byte("hello, world"), c)
    	n, err := r.Read(buf)
    	if err != nil {
    		t.Errorf("read: %v", err)
    	} else if n != 12 || string(buf[0:12]) != "hello, world" {
    		t.Errorf("bad read: got %q", buf[0:n])
    	}
    	<-c
    	r.Close()
    	w.Close()
    }
    
    func reader(t *testing.T, r Reader, c chan int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/io/fs/readfile_test.go

    	data, err := ReadFile(readFileOnly{testFsys}, "hello.txt")
    	if string(data) != "hello, world" || err != nil {
    		t.Fatalf(`ReadFile(readFileOnly, "hello.txt") = %q, %v, want %q, nil`, data, err, "hello, world")
    	}
    
    	// Test that ReadFile uses Open when the method is not present.
    	data, err = ReadFile(openOnly{testFsys}, "hello.txt")
    	if string(data) != "hello, world" || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:25:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprog/lockosthread.go

    	runtime.UnlockOSThread()
    	println("OK")
    }
    
    func LockOSThreadTemplateThreadRace() {
    	// This test attempts to reproduce the race described in
    	// golang.org/issue/38931. To do so, we must have a stop-the-world
    	// (achieved via ReadMemStats) racing with two LockOSThread calls.
    	//
    	// While this test attempts to line up the timing, it is only expected
    	// to fail (and thus hang) around 2% of the time if the race is
    	// present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/go/printer/testdata/complit.input

    		F1: "hello",
    	}
    	V3 = T{
    		F1: "hello",
    		F2: T2{
    			A: "world",
    			b: "hidden",
    		},
    		f3: T2{
    			A: "world",
    		},
    	}
    	V4 = T{
    		f2: 1,
    	}
    
    	// Single-line declarations
    	V5 = T{F1: "hello", f2: 1}
    	V6 = T{f2: 1, F1: "hello"}
    	V7 = T{f2: 1}
    
    	// Mixed-mode declarations
    	V8 = T{
    		F1: "hello", f2: 1,
    		F3: "world",
    		f4: 2}
    	V9 = T{
    	f2: 1, F1: "hello",}
    	V10 = T{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 01 19:53:32 UTC 2018
    - 912 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testKit/spockQuickstart/groovy/src/test/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

            buildFile = new File(testProjectDir, 'build.gradle')
        }
    
        def "hello world task prints hello world"() {
            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 Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top