Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,106 for wereld (0.18 sec)

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

    -- .Play --
    package main
    
    func Foo(x int) {
    }
    
    func main() {
    	fmt.Println("Hello, world!")
    }
    -- .Output --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 121 bytes
    - Viewed (0)
  2. 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)
  3. src/internal/diff/testdata/same.txt

    -- old --
    hello world
    -- new --
    hello world
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 55 bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/pluginmanager/cache/desired_state_of_world_test.go

    	dswPlugins := dsw.GetPluginsToRegister()
    	if len(dswPlugins) != 1 {
    		t.Fatalf("Desired state of world length should be one but it's %d", len(dswPlugins))
    	}
    	if dswPlugins[0].SocketPath != socketPath {
    		t.Fatalf("Expected\n%s\nin desired state of world, but got\n%v\n", socketPath, dswPlugins[0])
    	}
    
    	// Check PluginExists returns true
    	if !dsw.PluginExists(socketPath) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. maven-embedder/src/examples/simple-project/src/main/java/org/apache/maven/embedder/App.java

    package org.apache.maven.embedder;
    
    /**
     * Hello world!
     *
     */
    public class App
    {
        public static void main( String[] args )
        {
            System.out.println( "Hello World!" );
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 187 bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleCompositeBuildGroupedTaskFunctionalTest.groovy

        private static final String HELLO_WORLD_MESSAGE = 'Hello world'
        private static final String BYE_WORLD_MESSAGE = 'Bye world'
    
        def setup() {
            file("$PROJECT_A_NAME/build.gradle") << javaProject()
            file("$PROJECT_A_NAME/build.gradle") <<
                """
                    task helloWorld {
                        doLast {
                            logger.quiet 'Hello world'
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/snippets/providers/implicitTaskInputDependency/tests/implicitTaskInputDependencyKotlin.out

    > Task :producer
    Wrote 'Hello, World!' to /home/user/gradle/samples/kotlin/build/file.txt
    
    > Task :consumer
    Hello, World!
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/run_vendor.txt

    # Run
    env GO111MODULE=off
    cd vend/hello
    go run hello.go
    stdout 'hello, world'
    
    -- vend/hello/hello.go --
    package main
    
    import (
    	"fmt"
    	"strings" // really ../vendor/strings
    )
    
    func main() {
    	fmt.Printf("%s\n", strings.Msg)
    }
    -- vend/hello/hello_test.go --
    package main
    
    import (
    	"strings" // really ../vendor/strings
    	"testing"
    )
    
    func TestMsgInternal(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 532 bytes
    - Viewed (0)
Back to top