Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for hello1 (0.13 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            Request(
              url = server.url("/"),
              body = "Hello".toRequestBody(null),
            ),
          )
        assertThat(response.code).isEqualTo(200)
        assertThat(readAscii(response.body.byteStream(), Int.MAX_VALUE))
          .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: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&hbar;":                            "\u210f",
    	"&hcirc;":                           "\u0125",
    	"&hearts;":                          "\u2665",
    	"&heartsuit;":                       "\u2665",
    	"&hellip;":                          "\u2026",
    	"&hercon;":                          "\u22b9",
    	"&hfr;":                             "\U0001d525",
    	"&hksearow;":                        "\u2925",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    		},
    		{
    			name: "with string body",
    			directResponse: &networking.HTTPDirectResponse{
    				Status: 200,
    				Body: &networking.HTTPBody{
    					Specifier: &networking.HTTPBody_String_{String_: "hello"},
    				},
    			},
    			valid: true,
    		},
    		{
    			name: "with string body over 100kb",
    			directResponse: &networking.HTTPDirectResponse{
    				Status: 200,
    				Body: &networking.HTTPBody{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	m := map[string][]framework.PreEnqueuePlugin{"": {plugin.(framework.PreEnqueuePlugin)}}
    	q := NewTestQueue(ctx, newDefaultQueueSort(), WithPreEnqueuePluginMap(m))
    
    	gatedPod := st.MakePod().SchedulingGates([]string{"hello world"}).Obj()
    	if err := q.Add(logger, gatedPod); err != nil {
    		t.Error("Error calling Add")
    	}
    
    	if !q.unschedulablePods.get(gatedPod).Gated {
    		t.Error("expected pod to be gated")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top