Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,106 for wereld (0.14 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apimachinery/pkg/watch/mux_test.go

    	return &clone
    }
    
    func TestBroadcaster(t *testing.T) {
    	table := []Event{
    		{Type: Added, Object: &myType{"foo", "hello world 1"}},
    		{Type: Added, Object: &myType{"bar", "hello world 2"}},
    		{Type: Modified, Object: &myType{"foo", "goodbye world 3"}},
    		{Type: Deleted, Object: &myType{"bar", "hello world 4"}},
    	}
    
    	// The broadcaster we're testing
    	m := NewBroadcaster(0, WaitIfChannelFull)
    
    	// Add a bunch of watchers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 15:26:25 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. pkg/kubelet/pluginmanager/cache/actual_state_of_world.go

    	// Note that this is different from desired world cache's AddOrUpdatePlugin
    	// because for the actual state of world cache, there won't be a scenario where
    	// we need to update an existing plugin if the timestamps don't match. This is
    	// because the plugin should have been unregistered in the reconciler and therefore
    	// removed from the actual state of world cache first before adding it back into
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 21:20:24 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. 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)
  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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top