Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,383 for wereld (0.28 sec)

  1. src/cmd/go/testdata/vcstest/bzr/hello.txt

    bzr add hello.go
    bzr commit --commit-time='2017-09-21 21:20:12 -0400' -m 'hello world'
    bzr push ..
    cd ..
    rm b
    
    bzr log
    cmp stdout .bzr-log
    
    -- .bzr-log --
    ------------------------------------------------------------
    revno: 1
    committer: Russ Cox <******@****.***>
    branch nick: b
    timestamp: Thu 2017-09-21 21:20:12 -0400
    message:
      hello world
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 15:22:32 UTC 2023
    - 554 bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            then:
            succeeds installApp
            install.exec().out == "hello world"
    
            when:
            succeeds installApp
    
            then:
            install.exec().out == "hello world"
    
            and:
            allSkipped()
    
            when:
            systemHeaderInOtherDir.replace('"world"', '"universe"')
    
            and:
            appObjects.snapshot()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionQuickstart/kotlin/src/test/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

            buildFile = new File(testProjectDir, 'build.gradle')
        }
    
        // tag::functional-test-classpath-setup-automatic[]
        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
    - 1.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/kubelet/pluginmanager/cache/desired_state_of_world.go

    	}
    
    	// Update the PluginInfo object.
    	// Note that we only update the timestamp in the desired state of world, not the actual state of world
    	// because in the reconciler, we need to check if the plugin in the actual state of world is the same
    	// version as the plugin in the desired state of world
    	dsw.socketFileToInfo[socketPath] = PluginInfo{
    		SocketPath: socketPath,
    		Timestamp:  time.Now(),
    	}
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 12:47:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeContinuousBuildIntegrationTest.groovy

                        org.test.Library.print("World");
                    }
                }
            """
            when:
            succeeds("run")
            then:
            outputContains("Hello World")
    
            when:
            librarySource.text = librarySource.text.replace("Hello", "Goodbye")
            then:
            buildTriggeredAndSucceeded()
            outputContains("Goodbye World")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. src/compress/flate/deflate_test.go

    	data, err := io.ReadAll(r)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if string(data) != "hello again world" {
    		t.Fatalf("read returned %q want %q", string(data), text)
    	}
    }
    
    func TestWriterDict(t *testing.T) {
    	const (
    		dict = "hello world"
    		text = "hello again world"
    	)
    	var b bytes.Buffer
    	w, err := NewWriter(&b, 5)
    	if err != nil {
    		t.Fatalf("NewWriter: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  10. src/testing/iotest/logger_test.go

    	wl := NewWriteLogger("write:", lw)
    	if _, err := wl.Write([]byte("Hello, World!")); err != nil {
    		t.Fatalf("Unexpectedly failed to write: %v", err)
    	}
    
    	if g, w := lw.String(), "Hello, World!"; g != w {
    		t.Errorf("WriteLogger mismatch\n\tgot:  %q\n\twant: %q", g, w)
    	}
    	wantLogWithHex := fmt.Sprintf("lw: write: %x\n", "Hello, World!")
    	if g, w := lOut.String(), wantLogWithHex; g != w {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 07:03:10 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top