Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for 416 (0.12 sec)

  1. src/net/textproto/reader.go

    		strs = make([]string, hint)
    	}
    
    	m := make(MIMEHeader, hint)
    
    	// Account for 400 bytes of overhead for the MIMEHeader, plus 200 bytes per entry.
    	// Benchmarking map creation as of go1.20, a one-entry MIMEHeader is 416 bytes and large
    	// MIMEHeaders average about 200 bytes per entry.
    	maxMemory -= 400
    	const mapEntryOverhead = 200
    
    	// The first line cannot start with a leading space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. src/net/netip/netip.go

    			if ellipsis < 0 && i != 12 {
    				// Not the right place.
    				return Addr{}, parseAddrError{in: in, msg: "embedded IPv4 address must replace the final 2 fields of the address", at: s}
    			}
    			if i+4 > 16 {
    				// Not enough room.
    				return Addr{}, parseAddrError{in: in, msg: "too many hex fields to fit an embedded IPv4 at the end of the address", at: s}
    			}
    
    			end := len(in)
    			if len(zone) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. src/net/http/fs.go

    		if size == 0 {
    			// Some clients add a Range header to all requests to
    			// limit the size of the response. If the file is empty,
    			// ignore the range header and respond with a 200 rather
    			// than a 416.
    			ranges = nil
    			break
    		}
    		w.Header().Set("Content-Range", fmt.Sprintf("bytes */%d", size))
    		fallthrough
    	default:
    		serveError(w, err.Error(), StatusRequestedRangeNotSatisfiable)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_ppc64x.s

    	// Do VCIPHERLAST on the last for each encryption
    	// stream and XOR the result with the corresponding
    	// value from the input block.
    	VCIPHERLAST4_XOR_INPUT
    	// Store the results (4*16) and update BLK_OUT by 64.
    	STORE_OUTPUT_BLOCK64(BLK_OUT)
    	ADD	$-64, IN_LEN		// decrement input block length
    	CMP	IN_LEN, $0		// check for remaining length
    	BEQ	done
    block16_loop:
    	CMP	IN_LEN, $16		// More input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages.go

    		y = y[3+len(slice):]
    	}
    
    	return x, nil
    }
    
    func (m *certificateMsg) unmarshal(data []byte) bool {
    	if len(data) < 7 {
    		return false
    	}
    
    	certsLen := uint32(data[4])<<16 | uint32(data[5])<<8 | uint32(data[6])
    	if uint32(len(data)) != certsLen+7 {
    		return false
    	}
    
    	numCerts := 0
    	d := data[7:]
    	for certsLen > 0 {
    		if len(d) < 4 {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. hack/tools/go.sum

    github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3/go.mod h1:ON8b8w4BN/kE1EOhwT0o+d62W65a6aPw1nouo9LMgyY=
    github.com/tetafro/godot v1.4.16 h1:4ChfhveiNLk4NveAZ9Pu2AN8QZ2nkUGFuadM9lrr5D0=
    github.com/tetafro/godot v1.4.16/go.mod h1:2oVxTBSftRTh4+MVfUaUXR6bn2GDXCaMcOG4Dk3rfio=
    github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966 h1:quvGphlmUVU+nhpFa4gg4yJyTRJ13reZMDHrKwYw53M=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    	c := ts.Client()
    	res, err := c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	out, _ := io.ReadAll(res.Body)
    	res.Body.Close()
    
    	if g, e := res.StatusCode, 416; g != e {
    		t.Errorf("got status = %d; want %d", g, e)
    	}
    	if g, e := string(out), "invalid range: failed to overlap\n"; g != e {
    		t.Errorf("got body = %q; want %q", g, e)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_GETPID                          = 0x19D // 413
    	SYS_GETPPID                         = 0x19E // 414
    	SYS_GETPWNAM                        = 0x19F // 415
    	SYS_GETPWUID                        = 0x1A0 // 416
    	SYS_GETUID                          = 0x1A1 // 417
    	SYS_W_IOCTL                         = 0x1A2 // 418
    	SYS_ISATTY                          = 0x1A3 // 419
    	SYS_KILL                            = 0x1A4 // 420
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multimaps.java

       *     }
       * };
       * Multimap<String, String> transformed =
       *     Multimaps.transformValues(multimap, square);
       *   System.out.println(transformed);
       * }</pre>
       *
       * ... prints {@code {a=[4, 16], b=[9, 9], c=[36]}}.
       *
       * <p>Changes in the underlying multimap are reflected in this view. Conversely, this view
       * supports removal operations, and these are reflected in the underlying multimap.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Multimaps.java

       *     }
       * };
       * Multimap<String, String> transformed =
       *     Multimaps.transformValues(multimap, square);
       *   System.out.println(transformed);
       * }</pre>
       *
       * ... prints {@code {a=[4, 16], b=[9, 9], c=[36]}}.
       *
       * <p>Changes in the underlying multimap are reflected in this view. Conversely, this view
       * supports removal operations, and these are reflected in the underlying multimap.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top