Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 60 for xHello (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/storage/validation/validation_test.go

    			AttachmentMetadata: map[string]string{
    				"foo": "bar",
    			},
    			AttachError: &storage.VolumeError{
    				Time:    metav1.Time{},
    				Message: "hello world",
    			},
    			DetachError: &storage.VolumeError{
    				Time:    metav1.Time{},
    				Message: "hello world",
    			},
    		},
    	}, {
    		ObjectMeta: metav1.ObjectMeta{Name: "foo-with-inlinespec-and-status"},
    		Spec: storage.VolumeAttachmentSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    		{"bytes=--0", 416, "invalid range\n"},
    		{"bytes=---0", 416, "invalid range\n"},
    		{"bytes=-6", 206, "hello\n"},
    		{"bytes=6-", 206, "html says hello\n"},
    		{"bytes=-6-", 416, "invalid range\n"},
    		{"bytes=-0", 206, ""},
    		{"bytes=", 200, "index.html says hello\n"},
    	}
    
    	for _, tt := range tests {
    		tt := tt
    		t.Run(tt.r, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route_test.go

    		serviceRegistry := map[host.Name]*model.Service{
    			"*.example.org":             exampleWildcardService,
    			"goodbye.hello.example.org": exampleNestedWildcardService,
    		}
    
    		wildcardIndex := map[host.Name]types.NamespacedName{
    			"*.example.org":       virtualServiceWithWildcardHost.NamespacedName(),
    			"*.hello.example.org": virtualServiceWithNestedWildcardHost.NamespacedName(),
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

        def injectsGenericTypesFromParentIntoProviderFactoryMethod() {
            def parent = new DefaultServiceRegistry() {
                @Provides
                Callable<String> createStringCallable() {
                    return { "hello" }
                }
    
                @Provides
                Factory<String> createStringFactory() {
                    return { "world" } as Factory
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
Back to top