Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 25h (0.01 sec)

  1. src/cmd/go/testdata/script/test_flags.txt

    # unrecognized flags are non-boolean.
    
    go test -v -x ./x -timeout 24h -boolflag=true foo -timeout 25h
    stdout 'args: foo -timeout 25h'
    stdout 'timeout: 24h0m0s$'  # -timeout is unambiguously not a flag, so the real flag wins.
    
    go test -v -x ./x -timeout 24h -boolflag foo -timeout 25h
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

            .port(8080)
            .addEncodedPathSegment("g:\u0001@/\\?#%25h")
            .encodedQuery("i:\u0001@/\\?#%25j")
            .encodedFragment("k:\u0001@/\\?#%25l")
            .build()
        assertThat(url.toString())
          .isEqualTo(
            "http://a%3A%01%40%2F%5C%3F%23%25b:c%3A%01%40%2F%5C%3F%23%25d@ef:8080/" +
              "g:%01@%2F%5C%3F%23%25h?i:%01@/\\?%23%25j#k:%01@/\\?#%25l",
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top