Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for hello12 (0.2 sec)

  1. src/reflect/all_test.go

    	{V(uint64(1 << 32)), V(string("\uFFFD"))},
    	{V(uintptr(0x110004)), V(string("\uFFFD"))},
    
    	// named string
    	{V(MyString("hello")), V(string("hello"))},
    	{V(string("hello")), V(MyString("hello"))},
    	{V(string("hello")), V(string("hello"))},
    	{V(MyString("hello")), V(MyString("hello"))},
    	{V(MyString("bytes1")), V([]byte("bytes1"))},
    	{V([]byte("bytes2")), V(MyString("bytes2"))},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    	}
    
    	_, err = rwc.Write([]byte("hello"))
    	if err != nil {
    		t.Fatalf("failed to write to body: %v", err)
    	}
    
    	b := make([]byte, 5)
    	_, err = io.ReadFull(rwc, b)
    	if err != nil {
    		t.Fatalf("failed to read from body: %v", err)
    	}
    
    	if string(b) != "hello" {
    		t.Fatalf("unexpected value read from body:\ngot: %q\nwant: %q", b, "hello")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    name: hi
    mergingList:
    - name: hello2
    `),
    			Modified: []byte(`
    name: hi
    mergingList:
    - name: hello
    - $patch: delete
      name: doesntexist
    `),
    			TwoWay: []byte(`
    mergingList:
    - name: hello
    - $patch: delete
      name: doesntexist
    `),
    			ThreeWay: []byte(`
    $setElementOrder/mergingList:
    - name: hello
    - name: doesntexist
    mergingList:
    - name: hello
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    				Check: check.And(
    					check.OK(),
    					check.Protocol("HTTP/2.0"),
    					check.RequestHeaders(map[string]string{
    						"X-Vhost-Inbound":  "hello world",
    						"X-Vhost-Outbound": "hello world",
    						"X-Lua-Inbound":    "hello world",
    						"X-Lua-Outbound":   "hello world",
    					}),
    				),
    			},
    		})
    	}
    }
    
    // hostCases tests different forms of host header to use
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CallTest.kt

        val request =
          Request(
            server.url("/"),
            body = "Hello".toRequestBody("text/plain".toMediaType()),
          )
        val response = client.newCall(request).execute()
        assertThat(response.body.string()).isEqualTo("Body")
        val request1 = server.takeRequest()
        assertThat(request1.body.readUtf8()).isEqualTo("Hello")
        val request2 = server.takeRequest()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    <pre>
    string([]byte{'h', 'e', 'l', 'l', '\xc3', '\xb8'})   // "hellø"
    string([]byte{})                                     // ""
    string([]byte(nil))                                  // ""
    
    type MyBytes []byte
    string(MyBytes{'h', 'e', 'l', 'l', '\xc3', '\xb8'})  // "hellø"
    </pre>
    </li>
    
    <li>
    Converting a slice of runes to a string type yields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Alexandre Linte <******@****.***>
    tech.orange
    
    // Oursky Limited : https://authgear.com/, https://skygear.io/
    // Submitted by Authgear Team <hello@authgear.com>, Skygear Developer <hello@skygear.io>
    authgear-staging.com
    authgearapps.com
    skygearapp.com
    
    // OutSystems
    // Submitted by Duarte Santos <******@****.***>
    outsystemscloud.com
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInput()
    
                    void transform(TransformOutputs outputs) {
                        println "Hello?"
                        def output = outputs.${method}(new File(input.get().asFile, "some/dir/does-not-exist"))
                        assert !output.parentFile.directory
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    	if err != nil {
    		t.Fatal("exec create", err)
    	}
    
    	o1 := ""
    	_, err = db.ExecContext(ctx, "INSERT|keys|dec1=?A,str1=?,out1=?O1,array1=?", Named("A", decimalInt{123}), "hello", Named("O1", Out{Dest: &o1}), []int64{42, 128, 707}, doNotInclude{})
    	if err != nil {
    		t.Fatal("exec insert", err)
    	}
    	var (
    		str1 string
    		dec1 decimalInt
    		arr1 []int64
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    reinvocationPolicy: Never rewriteAppHTTPProbe: true # Templates defines a set of custom injection templates that can be used. For example, defining: # # templates: # hello: | # metadata: # labels: # hello: world # # Then starting a pod with the `inject.istio.io/templates: hello` annotation, will result in the pod # being injected with the hello=world labels. # This is intended for advanced configuration only; most users should use the built in template templates: {} # Default templates specifies a set...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top