Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for 1024m (0.15 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

                ) as DefaultGradleRunner
            gradleRunner.withJvmArguments(["-Xmx8g", "-XX:MaxMetaspaceSize=1024m", "-XX:+HeapDumpOnOutOfMemoryError"])
            return new SmokeTestGradleRunner(gradleRunner)
                .withBuildOperationTracing(file("operations").absolutePath)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/volume/emptydir/empty_dir_test.go

    			},
    			{
    				Device: "/dev/hugepages",
    				Type:   "hugetlbfs",
    				Path:   "/mnt/hugepages-1Gi",
    				Opts:   []string{"rw", "relatime", "pagesize=1024M"},
    			},
    			{
    				Device: "/dev/hugepages",
    				Type:   "hugetlbfs",
    				Path:   "/mnt/noopt",
    				Opts:   []string{"rw", "relatime"},
    			},
    			{
    				Device: "/dev/hugepages",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/helper/helpers.go

    // <size><unit-prefix>B (1024 = "1KB", 1048576 = "1MB", etc).
    func HugePageUnitSizeFromByteSize(size int64) (string, error) {
    	// hugePageSizeUnitList is borrowed from opencontainers/runc/libcontainer/cgroups/utils.go
    	var hugePageSizeUnitList = []string{"B", "KB", "MB", "GB", "TB", "PB"}
    	idx := 0
    	len := len(hugePageSizeUnitList) - 1
    	for size%1024 == 0 && idx < len {
    		size /= 1024
    		idx++
    	}
    	if size > 1024 && idx < len {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/nettest/conntest.go

    	defer wg.Wait()
    
    	c1.SetReadDeadline(time.Now().Add(time.Millisecond))
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    
    			b1 := make([]byte, 1024)
    			b2 := make([]byte, 1024)
    			for j := 0; j < 100; j++ {
    				_, err := c1.Read(b1)
    				copy(b1, b2) // Mutate b1 to trigger potential race
    				if err != nil {
    					checkForTimeoutError(t, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		if !ok {
    			continue
    		}
    		portnum := int(rport)
    		if tp == 0 && portnum > 1024 {
    			// Target port defaults to port. If its >1024, it is safe.
    			continue
    		}
    		if tp < 1024 {
    			// nolint: lll
    			errs = util.AppendErr(errs, fmt.Errorf("port %v is invalid: targetPort is set to %v, which requires root. Set targetPort to be greater than 1024 or configure values.gateways.istio-ingressgateway.runAsRoot=true", portnum, tp))
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/quota_linux_test.go

    	{
    		"SupportsQuotaOnQuotaVolume",
    		"/quota1/a", "", 1024, "Supports", "", "",
    		true, true, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1,
    	},
    	{
    		"AssignQuotaFirstTime",
    		"/quota1/a", "", 1024, "Set", projects1, projid1,
    		true, true, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0,
    	},
    	{
    		"AssignQuotaFirstTime",
    		"/quota1/b", "x", 1024, "Set", projects2, projid2,
    		true, true, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1,
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    	if q.IsZero() {
    		return zeroBytes, nil
    	}
    
    	var rounded CanonicalValue
    	format := q.Format
    	switch format {
    	case DecimalExponent, DecimalSI:
    	case BinarySI:
    		if q.CmpInt64(-1024) > 0 && q.CmpInt64(1024) < 0 {
    			// This avoids rounding and hopefully confusion, too.
    			format = DecimalSI
    		} else {
    			var exact bool
    			if rounded, exact = q.AsScale(0); !exact {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

        assertThat(recordedRequest.path)
          .isEqualTo("/lookup?ct")
      }
    
      @Test
      fun usesCacheOnlyIfFresh() {
        val cache = Cache(File("./target/DnsOverHttpsTest.cache"), 100 * 1024L)
        val cachedClient = bootstrapClient.newBuilder().cache(cache).build()
        val cachedDns = buildLocalhost(cachedClient, false)
        server.enqueue(
          dnsResponse(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. cmd/object-api-datatypes.go

    	{"GREATER_THAN_512_MB", humanize.MiByte * 512, math.MaxInt64},
    }
    
    // ObjectsHistogramIntervals is the list of all intervals
    // of object sizes to be included in objects histogram.
    // Note: this histogram expands 1024B-1MB to incl. 1024B-64KB, 64KB-256KB, 256KB-512KB and 512KB-1MiB
    var ObjectsHistogramIntervals = [dataUsageBucketLen]objectHistogramInterval{
    	{"LESS_THAN_1024_B", 0, humanize.KiByte - 1},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    const (
    
    	/*
    
    	   > rootCACert
    
    	   openssl genrsa -out root.key 1024 && \
    	   openssl rsa -in ./root.key -outform PEM -pubout -out ./root.pub && \
    	   CONFIG="[ v3_req ]\n" && \
    	   CONFIG="${CONFIG}subjectKeyIdentifier=hash\n" && \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top