Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for oplus (0.06 sec)

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

          .assertSentRequestAtMillis(request1SentAt, request1ReceivedAt)
          .assertReceivedResponseAtMillis(request1SentAt, request1ReceivedAt)
    
        // Check the network response. It has the caller's request, plus some caching headers.
        cacheHit.networkResponse()
          .assertCode(304)
          .assertHeader("Donut", "b")
          .assertRequestHeader("Accept-Language", "en-US")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    //	-buildmode=c-archive
    //		Build the listed main package, plus all packages it imports,
    //		into a C archive file. The only callable symbols will be those
    //		functions exported using a cgo //export comment. Requires
    //		exactly one main package to be listed.
    //
    //	-buildmode=c-shared
    //		Build the listed main package, plus all packages it imports,
    //		into a C shared library. The only callable symbols will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    // LambdaAuto is a lambda auto parameter.
    type LambdaAuto struct {
    	Index int
    }
    
    func (la *LambdaAuto) print(ps *printState) {
    	// We print the index plus 1 because that is what the standard
    	// demangler does.
    	if ps.llvmStyle {
    		ps.writeString("auto")
    	} else {
    		fmt.Fprintf(&ps.buf, "auto:%d", la.Index+1)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    	    <a href="#Representability">representable</a> by
    	    a value of type <code>int</code>; and if it is typed
    	    it must be of integer type.
    	</li>
    	<li>An element without a key uses the previous element's index plus one.
    	    If the first element has no key, its index is zero.
    	</li>
    </ul>
    
    <p>
    <a href="#Address_operators">Taking the address</a> of a composite literal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CacheTest.kt

       * http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.4
       */
      @Test
      fun responseCachingByResponseCode() {
        // Test each documented HTTP/1.1 code, plus the first unused value in each range.
        // http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
    
        // We can't test 100 because it's not really a response.
        // assertCached(false, 100);
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	s.SetType(sym.SBUILDINFO)
    	s.SetAlign(16)
    	// The \xff is invalid UTF-8, meant to make it less likely
    	// to find one of these accidentally.
    	const prefix = "\xff Go buildinf:" // 14 bytes, plus 2 data bytes filled in below
    	data := make([]byte, 32)
    	copy(data, prefix)
    	data[len(prefix)] = byte(ctxt.Arch.PtrSize)
    	data[len(prefix)+1] = 0
    	if ctxt.Arch.ByteOrder == binary.BigEndian {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  7. src/cmd/internal/obj/s390x/asmz.go

    	{i: 49, as: ACPSDR, a1: C_FREG, a2: C_FREG, a6: C_FREG},
    	{i: 50, as: ALTDBR, a1: C_FREG, a6: C_FREG},
    	{i: 51, as: ATCDB, a1: C_FREG, a6: C_SCON},
    
    	// load symbol address (plus offset)
    	{i: 19, as: AMOVD, a1: C_SYMADDR, a6: C_REG},
    	{i: 93, as: AMOVD, a1: C_GOTADDR, a6: C_REG},
    	{i: 94, as: AMOVD, a1: C_TLS_LE, a6: C_REG},
    	{i: 95, as: AMOVD, a1: C_TLS_IE, a6: C_REG},
    
    	// system call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    // a client doing two subsequent requests could end up on different
    // connections. It's somewhat harmless but enough tests assume it's
    // not true in order to test other things that it's worth fixing.
    // Plus it's nice to be consistent and not have timing-dependent
    // behavior.
    func TestTransportReuseConnEmptyResponseBody(t *testing.T) {
    	run(t, testTransportReuseConnEmptyResponseBody)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top