Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 232 for 1024m (0.11 sec)

  1. src/cmd/cgo/internal/test/issue9400/asm_riscv64.s

    	// will clobber the test pattern created by the caller
    	ADD	$(1024*8), X2
    
    	// Ask signaller to setgid
    	MOV	$1, X5
    	FENCE
    	MOVW	X5, ·Baton(SB)
    	FENCE
    
    	// Wait for setgid completion
    loop:
    	FENCE
    	MOVW	·Baton(SB), X5
    	OR	X6, X6, X6	// hint that we're in a spin loop
    	BNE	ZERO, X5, loop
    	FENCE
    
    	// Restore stack
    	ADD	$(-1024*8), X2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 659 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

                inputStream.read(new byte[560])
                inputStream.read(new byte[1000])
                inputStream.read(new byte[1600])
                inputStream.read(new byte[1024])
                inputStream.read(new byte[1024])
                "result"
            }
            1 * context.progress(1562, 4096, 'bytes', '1.5 KiB/4 KiB downloaded')
            1 * context.progress(3162, 4096, 'bytes', '3 KiB/4 KiB downloaded')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/ContentLengthHelperTest.java

    import org.dbflute.utflute.core.PlainTestCase;
    
    /**
     * @author shinsuke
     *
     */
    public class ContentLengthHelperTest extends PlainTestCase {
        private static long DEFAULT_MAX_LENGTH = 10L * 1024L * 1024L;
    
        public ContentLengthHelper contentLengthHelper;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MemoryAmount.java

    import javax.annotation.Nullable;
    import java.util.Locale;
    
    public class MemoryAmount {
        private static final long KILO_FACTOR = 1024;
        private static final long MEGA_FACTOR = KILO_FACTOR * 1024;
        private static final long GIGA_FACTOR = MEGA_FACTOR * 1024;
        private static final long TERA_FACTOR = GIGA_FACTOR * 1024;
    
        public static MemoryAmount of(long bytes) {
            return new MemoryAmount(bytes, String.valueOf(bytes));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/internal/poll/writev.go

    	}
    
    	var iovecs []syscall.Iovec
    	if fd.iovecs != nil {
    		iovecs = *fd.iovecs
    	}
    	// TODO: read from sysconf(_SC_IOV_MAX)? The Linux default is
    	// 1024 and this seems conservative enough for now. Darwin's
    	// UIO_MAXIOV also seems to be 1024.
    	maxVec := 1024
    	if runtime.GOOS == "aix" || runtime.GOOS == "solaris" {
    		// IOV_MAX is set to XOPEN_IOV_MAX on AIX and Solaris.
    		maxVec = 16
    	}
    
    	var n int64
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/scalar_test.go

    	}
    	if err := quick.Check(f1, quickCheckConfig(1024)); err != nil {
    		t.Errorf("failed bytes->scalar->bytes round-trip: %v", err)
    	}
    
    	f2 := func(sc1, sc2 Scalar) bool {
    		if _, err := sc2.SetCanonicalBytes(sc1.Bytes()); err != nil {
    			return false
    		}
    		return sc1 == sc2
    	}
    	if err := quick.Check(f2, quickCheckConfig(1024)); err != nil {
    		t.Errorf("failed scalar->bytes->scalar round-trip: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. manifests/charts/gateway/values.yaml

        # allocateLoadBalancerNodePorts: false
    
      resources:
        requests:
          cpu: 100m
          memory: 128Mi
        limits:
          cpu: 2000m
          memory: 1024Mi
    
      autoscaling:
        enabled: true
        minReplicas: 1
        maxReplicas: 5
        targetCPUUtilizationPercentage: 80
        targetMemoryUtilizationPercentage: {}
        autoscaleBehavior: {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/runtime/memmove_test.go

    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [512 / 4]uint32{}
    	}
    }
    
    func BenchmarkClearFat1024(b *testing.B) {
    	p := new([1024 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [1024 / 4]uint32{}
    	}
    }
    
    func BenchmarkClearFat1032(b *testing.B) {
    	p := new([1032 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/DataAmount.java

        public static final Units<DataAmount> BYTES = Units.base(DataAmount.class, "B");
        public static final Units<DataAmount> KILO_BYTES = BYTES.times(1024, "kB");
        public static final Units<DataAmount> MEGA_BYTES = KILO_BYTES.times(1024, "MB");
        public static final Units<DataAmount> GIGA_BYTES = MEGA_BYTES.times(1024, "GB");
    
        public static Amount<DataAmount> bytes(long value) {
            return Amount.valueOf(value, BYTES);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/escape/Platform.java

      private Platform() {}
    
      /** Returns a thread-local 1024-char array. */
      static char[] charBufferFromThreadLocal() {
        // requireNonNull accommodates Android's @RecentlyNullable annotation on ThreadLocal.get
        return requireNonNull(DEST_TL.get());
      }
    
      /**
       * A thread-local destination buffer to keep us from creating new buffers. The starting size is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top