Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for 416 (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertCached(true, 410)
        assertCached(false, 411)
        assertCached(false, 412)
        assertCached(false, 413)
        assertCached(true, 414)
        assertCached(false, 415)
        assertCached(false, 416)
        assertCached(false, 417)
        assertCached(false, 418)
        assertCached(false, 500)
        assertCached(true, 501)
        assertCached(false, 502)
        assertCached(false, 503)
        assertCached(false, 504)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %415 = "tf.Tile"(%244, %414) {device = ""} : (tensor<?x1xi64>, tensor<2xi32>) -> tensor<?x?xi64>
      %416 = "tf.Mul"(%413, %247) {device = ""} : (tensor<i32>, tensor<i32>) -> tensor<i32>
      %417 = "tf.Pack"(%416) {axis = 0 : i64, device = ""} : (tensor<i32>) -> tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    		(Zero [s-s%16] ptr mem))
    (Zero [s] ptr mem) && s%16 != 0 && s%16 > 8 && s > 16 =>
    	(Zero [16]
    		(OffPtr <ptr.Type> ptr [s-16])
    		(Zero [s-s%16] ptr mem))
    
    // medium zeroing uses a duff device
    // 4, 16, and 64 are magic constants, see runtime/mkduff.go
    (Zero [s] ptr mem)
    	&& s%16 == 0 && s > 64 && s <= 16*64
    	&& !config.noDuffDevice =>
    	(DUFFZERO [4 * (64 - s/16)] ptr mem)
    
    // large zeroing uses a loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // -----
    
    // CHECK-LABEL: @unpack
    func.func @unpack(%input: tensor<4x3x6xf32>) -> (tensor<4x6xf32>, tensor<4x6xf32>, tensor<4x6xf32>) {
      // CHECK: %[[SLICE1:.*]] = "mhlo.slice"(%{{.*}}) <{limit_indices = dense<[4, 1, 6]> : tensor<3xi64>, start_indices = dense<0> : tensor<3xi64>, strides = dense<1> : tensor<3xi64>}> : (tensor<4x3x6xf32>) -> tensor<4x1x6xf32>
      // CHECK: %[[RES1:.*]] = mhlo.reshape %[[SLICE1]] : (tensor<4x1x6xf32>) -> tensor<4x6xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/opGen.go

    		symEffect:      SymWrite,
    		asm:            s390x.ASTMG,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{1, 2},     // R1
    				{2, 4},     // R2
    				{3, 8},     // R3
    				{4, 16},    // R4
    				{0, 56318}, // R1 R2 R3 R4 R5 R6 R7 R8 R9 R11 R12 R14 SP
    			},
    		},
    	},
    	{
    		name:           "STM2",
    		auxType:        auxSymOff,
    		argLen:         4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top