Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Hellox (0.25 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        }.artifacts
                    }
                }
            """
    
            def targetJarsFor = { lib ->
                (0..1).collectMany { yellow ->
                    (0..1).collect { green ->
                        "${lib}-green-${green}-blue-yellow-${yellow}-orange.jar"
                    }
                }
            }
    
            when:
            succeeds ":util:resolve", ":app:resolve"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. samples/addons/grafana.yaml

    ,"uid":"${datasource}"},"fieldConfig":{"defaults":{"color":{"mode":"thresholds"},"custom":{"align":"auto","cellOptions":{"type":"auto"},"inspect":false},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"red","value":null},{"color":"yellow","value":0.95},{"color":"green","value":1}]}},"overrides":[{"matcher":{"id":"byName","options":"destination_workload"},"properties":[{"id":"displayName","value":"Workload"},{"id":"unit","value":"short"},{"id":"decimals","value":2},{"id":"custom.a...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/istio-service-dashboard.json

                "mode": "absolute",
                "steps": [
                  {
                    "color": "dark-red",
                    "value": null
                  },
                  {
                    "color": "dark-yellow",
                    "value": 0.95
                  },
                  {
                    "color": "dark-green",
                    "value": 0.99
                  }
                ]
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/kubelet/eviction/eviction_manager_test.go

    			newDiskAfterHardEviction = setDiskStatsBasedOnFs(tc.inducePressureOnWhichFs, tc.hardDiskPressure, diskStatStart)
    			summaryProvider.result = summaryStatsMaker(newDiskAfterHardEviction)
    			// make GC return disk usage bellow the threshold, but not satisfying minReclaim
    			gcBelowThreshold := setDiskStatsBasedOnFs(tc.inducePressureOnWhichFs, "1.1G", newDiskAfterHardEviction)
    			diskGC.summaryAfterGC = summaryStatsMaker(gcBelowThreshold)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top