Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 407 for xHello (0.1 sec)

  1. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

            "float"      | "0.1f"        | "+ 0.2f"
            "double"     | "0.1"         | "+ 0.2"
            "short"      | "1"           | "+ 1"
            "byte"       | "1"           | "+ 1"
            "String"     | "\"hello\""   | "+ \"world\""
            "int"        | "1"           | "+ 2"
            "boolean"    | "true"        | "& false"
        }
    
        def "collect all constants from class fields"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ExternalProcessFixture.groovy

     */
    class ExternalProcessFixture {
        private final TestFile testDirectory
        private final ShellScript testExecutable = ShellScript.builder()
            .printText("Hello from script")
            .writeTo(testDirectory, "test")
    
        ExternalProcessFixture(TestFile testDirectory) {
            this.testDirectory = testDirectory
        }
    
        private String getCommandLineAsVarargLiterals() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. cmd/post-policy_test.go

    		{
    			objectName:         "test",
    			data:               []byte("Hello, World"),
    			expectedRespStatus: http.StatusForbidden,
    			accessKey:          "",
    			secretKey:          "",
    			malformedBody:      false,
    		},
    		// Bad case malformed input.
    		{
    			objectName:         "test",
    			data:               []byte("Hello, World"),
    			expectedRespStatus: http.StatusBadRequest,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

            .build(),
        )
        val webSocket: WebSocket = newWebSocket()
        clientListener.assertOpen()
        val server = serverListener.assertOpen()
        webSocket.send("Hello, WebSockets!")
        serverListener.assertTextMessage("Hello, WebSockets!")
        closeWebSockets(webSocket, server)
      }
    
      @Test
      fun binaryMessage() {
        webServer.enqueue(
          MockResponse.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. src/encoding/gob/codec_test.go

    		if string(data) != "hello" {
    			t.Errorf(`bytes a = %q not "hello"`, string(data))
    		}
    	}
    
    	// string
    	{
    		var data string
    		instr := &decInstr{decString, 6, nil, ovfl}
    		state := newDecodeStateFromData(bytesResult)
    		execDec(instr, state, t, reflect.ValueOf(&data))
    		if data != "hello" {
    			t.Errorf(`bytes a = %q not "hello"`, data)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

                dependencies {
                    runtime "org.test:first:latest.integration"
                }
    
                task resolve {
                    dependsOn configurations.runtime
                    ext.message = "hello world"
                    ext.dependencies = []
                    ext.assertions = []
                    doLast {
                        def resolved = configurations.runtime.files
                        println "Looking for " + message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. docs/it/docs/index.md

    ### Crea un file
    
    * Crea un file `main.py` con:
    
    ```Python
    from fastapi import FastAPI
    from typing import Optional
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: str = Optional[None]):
        return {"item_id": item_id, "q": q}
    ```
    
    <details markdown="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pkg/controller/controller_ref_manager_test.go

    			ownerUID:     []types.UID{`ss1"hello`},
    			dependentUID: "ss2",
    			finalizers:   []string{},
    			want:         []byte(`{"metadata":{"uid":"ss2","ownerReferences":[{"$patch":"delete","uid":"ss1\"hello"}]}}`),
    		},
    		{
    			name:         "check if revision uid uid is escaped",
    			ownerUID:     []types.UID{`ss1`},
    			dependentUID: `ss2"hello`,
    			finalizers:   []string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 17:19:26 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  9. src/crypto/hmac/hmac_test.go

    		t.Fatalf("1st Sum after hello world = %x, want %x", sum, sumHelloWorld)
    	}
    	if sum := h.Sum(nil); !bytes.Equal(sum, sumHelloWorld) {
    		t.Fatalf("2nd Sum after hello world = %x, want %x", sum, sumHelloWorld)
    	}
    
    	h.Reset()
    	h.Write([]byte("hello"))
    	if sum := h.Sum(nil); !bytes.Equal(sum, sumHello) {
    		t.Fatalf("Sum after Reset + hello = %x, want %x", sum, sumHello)
    	}
    }
    
    func BenchmarkHMACSHA256_1K(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 18:38:14 UTC 2020
    - 21.8K bytes
    - Viewed (0)
  10. pkg/log/scope.go

    //	s = s.WithLabels("foo", "bar", "baz", 123, "qux", 0.123)
    //	s.Info("Hello")                      // <time>   info   MyScope   Hello  foo=bar baz=123 qux=0.123
    //
    // The output format can be globally configured to be JSON instead, using Options in this package.
    //
    //	e.g. <time>   info   MyScope   { "message":"Hello","foo":"bar","baz":123 }
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top