Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for 10485760 (0.28 sec)

  1. android/guava-tests/test/com/google/common/base/Utf8Test.java

          expected[i] = 5300224;
        }
        // 97-111 are all 2342912
        for (int i = 97; i <= 111; i++) {
          expected[i] = 2342912;
        }
        // 113-117 are all 1048576
        for (int i = 113; i <= 117; i++) {
          expected[i] = 1048576;
        }
        // One offs
        expected[112] = 786432;
        expected[118] = 786432;
        expected[119] = 1048576;
        expected[120] = 458752;
        expected[121] = 524288;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/ld_test.go

    	}
    
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    	t.Parallel()
    	dir := t.TempDir()
    
    	// NB: the use of -ldflags=-debugtextsize=1048576 tells the linker to
    	// split text sections at a size threshold of 1M instead of the
    	// architected limit of 67M or larger. The choice of building cmd/go
    	// is arbitrary; we just need something sufficiently large that uses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. pkg/api/v1/resource/helpers_test.go

    		},
    		{
    			fs: &v1.ResourceFieldSelector{
    				Resource: "requests.memory",
    			},
    			cName:         "foo",
    			pod:           getPod("foo", podResources{memoryRequest: "100Mi"}),
    			expectedValue: "104857600",
    		},
    		{
    			fs: &v1.ResourceFieldSelector{
    				Resource: "requests.memory",
    				Divisor:  resource.MustParse("1Mi"),
    			},
    			cName:         "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  4. pkg/volume/util/fsquota/common/quota_common_linux.go

    	// FSQuotaEnforcing for quotas for enforcement
    	FSQuotaEnforcing QuotaType = 1 << iota
    )
    
    // FirstQuota is the quota ID we start with.
    // XXXXXXX Need a better way of doing this...
    var FirstQuota QuotaID = 1048577
    
    // MountsFile is the location of the system mount data
    var MountsFile = "/proc/self/mounts"
    
    // MountParseRegexp parses out /proc/sys/self/mounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/go/printer/testdata/linebreaks.golden

    					Typeflag:	'0',
    					Uname:		"dsymonds",
    					Gname:		"eng",
    				},
    				contents:	"Google.com\n",
    			},
    		},
    	},
    	// The truncated test file was produced using these commands:
    	//   dd if=/dev/zero bs=1048576 count=16384 > /tmp/16gig.txt
    	//   tar -b 1 -c -f- /tmp/16gig.txt | dd bs=512 count=8 > writer-big.tar
    	&writerTest{
    		file:	"testdata/writer-big.tar",
    		entries: []*writerTestEntry{
    			&writerTestEntry{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  6. src/cmd/internal/goobj/objfile_test.go

    	if err != nil {
    		t.Fatalf("can't create temp directory: %v\n", err)
    	}
    	defer os.RemoveAll(tmpdir)
    
    	// Emit testcase.
    	var w bytes.Buffer
    	fmt.Fprintf(&w, issue41621prolog)
    	for i := 0; i < 1048576+13; i++ {
    		fmt.Fprintf(&w, "\t\"%d\",\n", i)
    	}
    	fmt.Fprintf(&w, issue41621epilog)
    	err = os.WriteFile(tmpdir+"/large.go", w.Bytes(), 0666)
    	if err != nil {
    		t.Fatalf("can't write output: %v\n", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:12 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm.s

    	ADD	$0x000fffff, R0, R1 // ADD $1048575, R0, R1    // 011680e2011041e2
    	ADC	$0x000fffff, R0, R1 // ADC $1048575, R0, R1    // 0116a0e2011041e2
    	SUB	$0x000fffff, R0, R1 // SUB $1048575, R0, R1    // 011640e2011081e2
    	SBC	$0x000fffff, R0, R1 // SBC $1048575, R0, R1    // 0116c0e2011081e2
    	RSB	$0x000fffff, R0, R1 // RSB $1048575, R0, R1    // 011660e2011041e2
    	RSC	$0x000fffff, R0, R1 // RSC $1048575, R0, R1    // 0116e0e2011041e2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    		},
    		{
    			Name:        "stringArray",
    			InputSchema: arraySchema("string", "", nil),
    			// expected JSON is ["","",...] so our length should be (maxRequestSizeBytes - 2) / 3
    			ExpectedMaxElements: 1048575,
    		},
    		{
    			Name: "stringMap",
    			InputSchema: &schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/openapi/schemas_test.go

    		},
    		{
    			Name:        "stringArray",
    			InputSchema: arraySchema("string", "", nil),
    			// expected JSON is ["","",...] so our length should be (maxRequestSizeBytes - 2) / 3
    			ExpectedMaxElements: 1048575,
    		},
    		{
    			Name: "stringMap",
    			InputSchema: &spec.Schema{
    				SchemaProps: spec.SchemaProps{
    					Type: []string{"object"},
    					AdditionalProperties: &spec.SchemaOrBool{
    						Schema: &spec.Schema{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    			s.Sources[src].Places = append(s.Sources[src].Places, StackSlot{i, j})
    		}
    	}
    }
    
    func (s *StackSet) assignColors() {
    	// Assign different color indices to different packages.
    	const numColors = 1048576
    	for i, src := range s.Sources {
    		pkg := packageName(src.FullName)
    		h := sha256.Sum256([]byte(pkg))
    		index := binary.LittleEndian.Uint32(h[:])
    		s.Sources[i].Color = int(index % numColors)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top