Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for 1024m (0.08 sec)

  1. src/runtime/export_test.go

    	gp := getg()
    	systemstack(func() {
    		shrinkstack(gp)
    	})
    	// If our new stack contains frame pointers into the old stack, this will
    	// crash because the old stack has been poisoned.
    	FPCallers(make([]uintptr, 1024))
    }
    
    // BlockOnSystemStack switches to the system stack, prints "x\n" to
    // stderr, and blocks in a stack containing
    // "runtime.blockOnSystemStackInternal".
    func BlockOnSystemStack() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - golang.org/x/telemetry: b75ee88
    - k8s.io/gengo/v2: 51d4e06
    - sigs.k8s.io/knftables: v0.0.14
    
    ### Changed
    - github.com/docker/docker: [v20.10.24+incompatible → v20.10.27+incompatible](https://github.com/docker/docker/compare/v20.10.24...v20.10.27)
    - github.com/go-logr/logr: [v1.3.0 → v1.4.1](https://github.com/go-logr/logr/compare/v1.3.0...v1.4.1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    	maxSkip = 5
    
    	// maxProfStackDepth is the highest valid value for debug.profstackdepth.
    	// It's used for the bucket.stk func.
    	// TODO(fg): can we get rid of this?
    	maxProfStackDepth = 1024
    )
    
    type bucketType int
    
    // A bucket holds per-call-stack profiling information.
    // The representation is a bit sleazy, inherited from C.
    // This struct defines the bucket header. It is followed in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. doc/go_spec.html

    97                  rune        rune is an alias for int32, and 97 is in the set of 32-bit integers
    "foo"               string      "foo" is in the set of string values
    1024                int16       1024 is in the set of 16-bit integers
    42.0                byte        42 is in the set of unsigned 8-bit integers
    1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    // Use initial buffer size in flatbuffer builder to be same as the initial size
    // used by the TOCO export. (It does not explain rationale for this choice.)
    constexpr size_t kInitialBufferSize = 10240;
    
    // Flatbuffer fields to be padded to 16 bytes aligned.
    constexpr size_t kFbAlignment = 16;
    
    // Set `isSigned` to false if the `type` is an 8-bit unsigned integer type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    		// steal more and more bandwidth from A.
    		if openParent {
    			ws.writeThrottleLimit += 1024
    			if ws.writeThrottleLimit < 0 {
    				ws.writeThrottleLimit = math.MaxInt32
    			}
    		} else if ws.enableWriteThrottle {
    			ws.writeThrottleLimit = 1024
    		}
    		return true
    	})
    	return wr, ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    		// We set hi to &size, but there are things above
    		// it. The 1024 is supposed to compensate this,
    		// but is somewhat arbitrary.
    		size := gp.stack.hi
    		if size == 0 {
    			size = 16384 * sys.StackGuardMultiplier
    		}
    		gp.stack.hi = uintptr(noescape(unsafe.Pointer(&size)))
    		gp.stack.lo = gp.stack.hi - size + 1024
    	}
    	// Initialize stack guard so that we can start calling regular
    	// Go code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    func TestParseFormCleanup(t *testing.T) { run(t, testParseFormCleanup) }
    func testParseFormCleanup(t *testing.T, mode testMode) {
    	if mode == http2Mode {
    		t.Skip("https://go.dev/issue/20253")
    	}
    
    	const maxMemory = 1024
    	const key = "file"
    
    	if runtime.GOOS == "windows" {
    		// Windows sometimes refuses to remove a file that was just closed.
    		t.Skip("https://go.dev/issue/25965")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

    * 📝 Add hyperlink to `docs/en/docs/tutorial/static-files.md`. PR [#10243](https://github.com/tiangolo/fastapi/pull/10243) by [@hungtsetse](https://github.com/hungtsetse).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    // CHECK-LABEL: FuseTransposeReshapeIntoBatchMatmul
    func.func @FuseTransposeReshapeIntoBatchMatmul(%arg0: tensor<4x1024xf32>, %arg1: tensor<8x4x256xf32>, %arg2: none) -> tensor<4x8xf32> {
      %cst_0 = arith.constant dense<[1024, 8]> : tensor<2xi32>
      %cst_1 = arith.constant dense<[1, 2, 0]> : tensor<3xi32>
      %0 = "tfl.transpose"(%arg1, %cst_1) : (tensor<8x4x256xf32>, tensor<3xi32>) -> tensor<4x256x8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
Back to top