Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for b5 (0.02 sec)

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

            .body("abcd")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .code(HttpURLConnection.HTTP_NOT_MODIFIED)
            .addHeader("B: b4")
            .addHeader("B: b5")
            .addHeader("C: c6")
            .build(),
        )
        val response1 = get(server.url("/"))
        assertThat(response1.body.string()).isEqualTo("abcd")
        assertThat(response1.headers).isEqualTo(
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    var x, y int
    var (
    	// The result of a comparison is an untyped boolean.
    	// The usual assignment rules apply.
    	b3        = x == y // b3 has type bool
    	b4 bool   = x == y // b4 has type bool
    	b5 MyBool = x == y // b5 has type MyBool
    )
    </pre>
    
    <h3 id="Logical_operators">Logical operators</h3>
    
    <p>
    Logical operators apply to <a href="#Boolean_types">boolean</a> values
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top