Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for gwrite (0.56 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "MOVSSstoreidx4", argLength: 4, reg: fpstoreidx, asm: "MOVSS", scale: 4, aux: "SymOff", symEffect: "Write"},
    		{name: "MOVSDstoreidx1", argLength: 4, reg: fpstoreidx, asm: "MOVSD", scale: 1, aux: "SymOff", symEffect: "Write"},
    		{name: "MOVSDstoreidx8", argLength: 4, reg: fpstoreidx, asm: "MOVSD", scale: 8, aux: "SymOff", symEffect: "Write"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/net/http/serve_test.go

    		w.WriteHeader(200)
    		if _, err := w.Write([]byte("x")); err == nil {
    			t.Errorf("Write to body after 101 Switching Protocols unexpectedly succeeded")
    		}
    
    		c, _, err := NewResponseController(w).Hijack()
    		if err != nil {
    			t.Errorf("Hijack: %v", err)
    			return
    		}
    		defer c.Close()
    		if _, err := c.Write([]byte(wantBody)); err != nil {
    			t.Errorf("Write to hijacked body: %v", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen.go

    // EncodeMsg implements msgp.Encodable
    func (z *CheckPartsHandlerParams) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 4
    	// write "id"
    	err = en.Append(0x84, 0xa2, 0x69, 0x64)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(z.DiskID)
    	if err != nil {
    		err = msgp.WrapError(err, "DiskID")
    		return
    	}
    	// write "v"
    	err = en.Append(0xa1, 0x76)
    	if err != nil {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  4. src/net/http/server.go

    		w.Write(headerContentLength)
    		w.Write(h.contentLength)
    		w.Write(crlf)
    	}
    	for i, v := range []string{h.contentType, h.connection, h.transferEncoding} {
    		if v != "" {
    			w.Write(extraHeaderKeys[i])
    			w.Write(colonSpace)
    			w.WriteString(v)
    			w.Write(crlf)
    		}
    	}
    }
    
    // writeHeader finalizes the header sent to the client and writes it
    // to cw.res.conn.bufw.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    func (test *transport100ContinueTest) respond(lines ...string) {
    	for _, line := range lines {
    		if _, err := test.conn.Write([]byte(line + "\r\n")); err != nil {
    			test.t.Fatalf("Write: %v", err)
    		}
    	}
    	if _, err := test.conn.Write([]byte("\r\n")); err != nil {
    		test.t.Fatalf("Write: %v", err)
    	}
    }
    
    // wantBodySent ensures the transport has sent the request body to the server.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

         * A queue of elements currently in the map, ordered by write time. Elements are added to the
         * tail of the queue on write.
         */
        @GuardedBy("this")
        final Queue<ReferenceEntry<K, V>> writeQueue;
    
        /**
         * A queue of elements currently in the map, ordered by access time. Elements are added to the
         * tail of the queue on access (note that writes count as accesses).
         */
        @GuardedBy("this")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      fi
    
      CA_CERT_BUNDLE_PATH="${pki_dir}/ca-certificates.crt"
      write-pki-data "${CA_CERT_BUNDLE}" "${CA_CERT_BUNDLE_PATH}"
    
      if [[ -n "${KUBELET_CERT:-}" && -n "${KUBELET_KEY:-}" ]]; then
        KUBELET_CERT_PATH="${pki_dir}/kubelet.crt"
        write-pki-data "${KUBELET_CERT}" "${KUBELET_CERT_PATH}"
    
        KUBELET_KEY_PATH="${pki_dir}/kubelet.key"
        write-pki-data "${KUBELET_KEY}" "${KUBELET_KEY_PATH}"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

         * A queue of elements currently in the map, ordered by write time. Elements are added to the
         * tail of the queue on write.
         */
        @GuardedBy("this")
        final Queue<ReferenceEntry<K, V>> writeQueue;
    
        /**
         * A queue of elements currently in the map, ordered by access time. Elements are added to the
         * tail of the queue on access (note that writes count as accesses).
         */
        @GuardedBy("this")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. cmd/data-usage-cache_gen.go

    // EncodeMsg implements msgp.Encodable
    func (z *dataUsageCache) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 2
    	// write "Info"
    	err = en.Append(0x82, 0xa4, 0x49, 0x6e, 0x66, 0x6f)
    	if err != nil {
    		return
    	}
    	err = z.Info.EncodeMsg(en)
    	if err != nil {
    		err = msgp.WrapError(err, "Info")
    		return
    	}
    	// write "Cache"
    	err = en.Append(0xa5, 0x43, 0x61, 0x63, 0x68, 0x65)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    			bugLogIf(ctx, err)
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    
    		// Write a version for making *incompatible* changes.
    		// The AdminClient will reject any version it does not know.
    		if publicKey == nil {
    			w.Write([]byte{1})
    			w.Write(key[:])
    		}
    
    		stream, err := sio.AES_256_GCM.Stream(key[:])
    		if err != nil {
    			bugLogIf(ctx, err)
    			return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top