Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for xHello (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            }
            """)
    
            when:
            fails("hello")
    
            then:
            outputContains """
    > Task :subproject1:hello
    Hello, subproject1
    """
            outputContains """
    > Task :subproject2:hello FAILED
    """
            failureDescriptionContains("Execution failed for task ':subproject2:hello'.")
            failureCauseContains("assert MyService == myService.type")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello-openshift.yaml.47.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/hello-image-pull-secret.yaml.11.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. src/text/template/exec_test.go

    	"", "", // default
    	"{{", "}}", // same as default
    	"<<", ">>", // distinct
    	"|", "|", // same
    	"(日)", "(本)", // peculiar
    }
    
    func TestDelims(t *testing.T) {
    	const hello = "Hello, world"
    	var value = struct{ Str string }{hello}
    	for i := 0; i < len(delimPairs); i += 2 {
    		text := ".Str"
    		left := delimPairs[i+0]
    		trueLeft := left
    		right := delimPairs[i+1]
    		trueRight := right
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks.yaml.15.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/hello-existing-cncf-networks-json.yaml.16.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. src/net/url/url_test.go

    	{
    		"http://hello.世界.com/foo",
    		&URL{
    			Scheme: "http",
    			Host:   "hello.世界.com",
    			Path:   "/foo",
    		},
    		"http://hello.%E4%B8%96%E7%95%8C.com/foo",
    	},
    	{
    		"http://hello.%e4%b8%96%e7%95%8c.com/foo",
    		&URL{
    			Scheme: "http",
    			Host:   "hello.世界.com",
    			Path:   "/foo",
    		},
    		"http://hello.%E4%B8%96%E7%95%8C.com/foo",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    	tg.parallel()
    	tg.tempFile("main.go", `package main
    		var extern string
    		func main() {
    			println(extern)
    		}`)
    	tg.run("run", "-ldflags", `-X "main.extern=hello world"`, tg.path("main.go"))
    	tg.grepStderr("^hello world", `ldflags -X "main.extern=hello world"' failed`)
    }
    
    func TestLdFlagsLongArgumentsIssue42295(t *testing.T) {
    	// Test the extremely long command line arguments that contain '\n' characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. src/os/os_test.go

    	}
    	if string(b) != "hello" {
    		t.Fatalf("Read: have %q want %q", string(b), "hello")
    	}
    }
    
    // Verify that ReadAt doesn't allow negative offset.
    func TestReadAtNegativeOffset(t *testing.T) {
    	t.Parallel()
    
    	f := newFile("TestReadAtNegativeOffset", t)
    	defer Remove(f.Name())
    	defer f.Close()
    
    	const data = "hello, world\n"
    	io.WriteString(f, data)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top