Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,106 for wereld (0.2 sec)

  1. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    		t.Fatalf("Test_Run_Positive_DoNothing: actual state of world should be empty but it's not")
    	}
    	if len(dsw.GetPluginsToRegister()) != 0 {
    		t.Fatalf("Test_Run_Positive_DoNothing: desired state of world should be empty but it's not")
    	}
    }
    
    // Populates desiredStateOfWorld cache with one plugin.
    // Calls Run()
    // Verifies the actual state of world contains that plugin
    func Test_Run_Positive_Register(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/hg/hello.txt

    handle hg
    hg init
    
    hg add hello.go
    hg commit --user 'bwk' --date '2017-09-21T21:14:14-04:00' --message 'hello world'
    
    hg log -r ':' --template '{node|short} {desc|strip|firstline}\n'
    cmp stdout .hg-log
    
    -- .hg-log --
    e483a7d9f8c9 hello world
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 312 bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/DeployedPortalIntegrationSpec.groovy

    @Requires(UnitTestPreconditions.Online)
    @LeaksFileHandles
    class DeployedPortalIntegrationSpec extends AbstractIntegrationSpec {
    
        private final static String HELLO_WORLD_PLUGIN_ID = "org.gradle.hello-world"
        private final static String HELLO_WORLD_PLUGIN_VERSION = "0.2"
    
        def setup() {
            requireOwnGradleUserHomeDir()
        }
    
        def "Can access plugin classes when resolved but not applied"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    and were resting in the shade:  however, the moment they saw her,
    they hurried back to the game, the Queen merely remarking that a
    moment's delay would cost them their lives.
    
      All the time they were playing the Queen never left off
    quarrelling with the other players, and shouting `Off with his
    head!' or `Off with her head!'  Those whom she sentenced were
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/code6.txt

    -- input --
    Run this program:
    
    func main() {
    	fmt.Println("hello, world")
    }
    
    Or this:
    
    go func() {
    	fmt.Println("hello, world")
    }()
    -- gofmt --
    Run this program:
    
    	func main() {
    		fmt.Println("hello, world")
    	}
    
    Or this:
    
    	go func() {
    		fmt.Println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 270 bytes
    - Viewed (0)
  6. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/SampleIncludeProcessorTest.groovy

    task hello {
        doLast {
            println "hello world"
        }
    }
    """
    
            String asciidocContent = """
    = Doctitle
    :samples-dir: ${tmpDir.root.canonicalPath}
    
    include::sample[dir="src/samples",files="build.gradle[]"]
    """
    
            when:
            String content = asciidoctor.convert(asciidocContent, [:])
    
            then:
            content.contains('println "hello world"')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. src/go/printer/testdata/complit.x

    	// Mixed-mode declarations
    	V8	= T{
    		F1:	"hello",
    		F3:	"world",
    		// contains filtered or unexported fields
    	}
    	V9	= T{
    		F1: "hello",
    		// contains filtered or unexported fields
    	}
    	V10	= T{
    		F1:	"hello",
    
    		F4:	"world",
    		// contains filtered or unexported fields
    	}
    
    	// Other miscellaneous declarations
    	V11	= T{
    		t{
    			A: "world",
    			// contains filtered or unexported fields
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 01 19:53:32 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/fossil/hello.txt

    fossil add hello.go
    fossil commit --no-prompt --nosign --date-override 2017-09-22T01:19:07Z --comment 'hello world'
    
    fossil timeline --oneline
    cmp stdout .fossil-timeline
    
    -- .fossil-timeline --
    d4c7dcdc29 hello world
    58da0d15e9 initial empty check-in
    +++ no more data (2) +++
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 470 bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/text.txt

    {"TextPrefix":"|", "TextCodePrefix": "@"}
    -- input --
    Hello, world
     Code block here.
    More text.
    Tight list
     - one
     - two
     - three
    Loose list
     - one
    
     - two
    
     - three
    
    # Heading
    
    More text.
    -- gofmt --
    Hello, world
    
    	Code block here.
    
    More text.
    Tight list
      - one
      - two
      - three
    
    Loose list
    
      - one
    
      - two
    
      - three
    
    # Heading
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 521 bytes
    - Viewed (0)
  10. src/cmd/go/internal/cache/hash_test.go

    	oldSalt := hashSalt
    	hashSalt = nil
    	defer func() {
    		hashSalt = oldSalt
    	}()
    
    	h := NewHash("alice")
    	h.Write([]byte("hello world"))
    	sum := fmt.Sprintf("%x", h.Sum())
    	want := "b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9"
    	if sum != want {
    		t.Errorf("hash(hello world) = %v, want %v", sum, want)
    	}
    }
    
    func TestHashFile(t *testing.T) {
    	f, err := os.CreateTemp("", "cmd-go-test-")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top