Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,372 for wereld (0.28 sec)

  1. src/cmd/go/testdata/script/run_hello_pkg.txt

    go run m/hello
    stderr 'hello, world'
    
    cd hello
    go run .
    stderr 'hello, world'
    
    -- go.mod --
    module m
    
    go 1.16
    -- hello/hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 186 bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/testdata/script/test_vendor.txt

    	"testing"
    )
    
    func TestMsgInternal(t *testing.T) {
    	if strings.Msg != "hello, world" {
    		t.Fatalf("unexpected msg: %v", strings.Msg)
    	}
    }
    -- vend/hello/hellox_test.go --
    package main_test
    
    import (
    	"strings" // really ../vendor/strings
    	"testing"
    )
    
    func TestMsgExternal(t *testing.T) {
    	if strings.Msg != "hello, world" {
    		t.Fatalf("unexpected msg: %v", strings.Msg)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1000 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top