Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 32MB (0.04 sec)

  1. src/cmd/internal/obj/loong64/asm_test.go

    // license that can be found in the LICENSE file.
    
    package loong64
    
    import (
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"testing"
    )
    
    const genBufSize = (1024 * 1024 * 32) // 32MB
    
    // TestLargeBranch generates a large function with a very far conditional
    // branch, in order to ensure that it assembles successfully.
    func TestLargeBranch(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:39:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Numeric tag filter examples: 1kb, 1kb:10kb, memory=32mb:",
    		"String tag filter examples: foo, foo.*bar, mytag=foo.*bar"),
    	"tagignore": helpText(
    		"Discard samples with tags in range or matched by regexp",
    		"Use name=value syntax to limit the matching to a specific tag.",
    		"Numeric tag filter examples: 1kb, 1kb:10kb, memory=32mb:",
    		"String tag filter examples: foo, foo.*bar, mytag=foo.*bar"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/helper/helpers_test.go

    	tests := []struct {
    		size     int64
    		expected string
    		wantErr  bool
    	}{
    		{
    			size:     1024,
    			expected: "1KB",
    			wantErr:  false,
    		},
    		{
    			size:     33554432,
    			expected: "32MB",
    			wantErr:  false,
    		},
    		{
    			size:     3221225472,
    			expected: "3GB",
    			wantErr:  false,
    		},
    		{
    			size:     1024 * 1024 * 1023 * 3,
    			expected: "3069MB",
    			wantErr:  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	//
    	//       Platform  Addr bits  Arena size  L1 entries   L2 entries
    	// --------------  ---------  ----------  ----------  -----------
    	//       */64-bit         48        64MB           1    4M (32MB)
    	// windows/64-bit         48         4MB          64    1M  (8MB)
    	//      ios/arm64         33         4MB           1  2048  (8KB)
    	//       */32-bit         32         4MB           1  1024  (4KB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top