Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 97 for 1024Mi (0.14 sec)

  1. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

        //
        // TODO(user): Consider scaling by number of mutator threads,
        // e.g. using Thread#activeCount()
        return Math.max(10L, Runtime.getRuntime().totalMemory() / (32L * 1024L * 1024L));
      }
    
      /**
       * Waits until the given future {@linkplain Future#isDone is done}, invoking the garbage collector
       * as necessary to try to ensure that this will happen.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.EnableDebuggingHandlers = true
    			obj.EnableSystemLogQuery = false
    			obj.FileCheckFrequency = metav1.Duration{Duration: 20 * time.Second}
    			obj.HealthzBindAddress = "127.0.0.1"
    			obj.HealthzPort = 10248
    			obj.HTTPCheckFrequency = metav1.Duration{Duration: 20 * time.Second}
    			obj.ImageMinimumGCAge = metav1.Duration{Duration: 2 * time.Minute}
    			obj.ImageMaximumGCAge = metav1.Duration{}
    			obj.ImageGCHighThresholdPercent = 85
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/util/ConsoleTransferListener.java

        }
    
        private String getStatus(long complete, long total) {
            if (total >= 1024) {
                return toKB(complete) + "/" + toKB(total) + " KB ";
            } else if (total >= 0) {
                return complete + "/" + total + " B ";
            } else if (complete >= 1024) {
                return toKB(complete) + " KB ";
            } else {
                return complete + " B ";
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. cmd/generic-handlers_test.go

    	}
    }
    
    var isHTTPHeaderSizeTooLargeTests = []struct {
    	header     http.Header
    	shouldFail bool
    }{
    	{header: generateHeader(0, 0), shouldFail: false},
    	{header: generateHeader(1024, 0), shouldFail: false},
    	{header: generateHeader(2048, 0), shouldFail: false},
    	{header: generateHeader(8*1024+1, 0), shouldFail: true},
    	{header: generateHeader(0, 1024), shouldFail: false},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. mockwebserver/README.md

        .addHeader("Cache-Control", "no-cache")
        .setBody("{}");
    ```
    
    MockResponse can be used to simulate a slow network. This is useful for
    testing timeouts and interactive testing.
    
    ```java
    response.throttleBody(1024, 1, TimeUnit.SECONDS);
    ```
    
    
    #### RecordedRequest
    
    Verify requests by their method, path, HTTP version, body, and headers.
    
    ```java
    RecordedRequest request = server.takeRequest();
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/AmountTest.groovy

            21    | Fruit.apples     | Fruit.apples     | 21
            2.1   | Fruit.oranges    | Fruit.apples     | 6.3
            1024  | Fruit.grapefruit | Fruit.apples     | 1024 * 5
            1     | Fruit.apples     | Fruit.grapefruit | 0.2
            1     | Fruit.apples     | Fruit.oranges    | 0.333333
        }
    
        def "amounts are equal when normalised values are the same"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/log/log_test.go

    	}
    	if n := strings.Count(output, "\n"); n != 2 {
    		t.Errorf("expected 2 lines, got %d", n)
    	}
    }
    
    func TestDiscard(t *testing.T) {
    	l := New(io.Discard, "", 0)
    	s := strings.Repeat("a", 102400)
    	c := testing.AllocsPerRun(100, func() { l.Printf("%s", s) })
    	// One allocation for slice passed to Printf,
    	// but none for formatting of long string.
    	if c > 1 {
    		t.Errorf("got %v allocs, want at most 1", c)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 20:04:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. src/math/big/decimal.go

    	// write extra digits that still fit
    	for n > 0 && w < len(x.mant) {
    		d := n >> s
    		n &= mask
    		x.mant[w] = byte(d + '0')
    		w++
    		n = n * 10
    	}
    	x.mant = x.mant[:w] // the number may be shorter (e.g. 1024 >> 10)
    
    	// append additional digits that didn't fit
    	for n > 0 {
    		d := n >> s
    		n &= mask
    		x.mant = append(x.mant, byte(d+'0'))
    		n = n * 10
    	}
    
    	trim(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+2456(SB)/8,$0x000000019e588d52
    
    	/* x^103488 mod p(x), x^103424 mod p(x) */
    DATA ·IEEEConst+2464(SB)/8,$0x00000001415598a0
    DATA ·IEEEConst+2472(SB)/8,$0x00000001180f0bbc
    
    	/* x^102464 mod p(x), x^102400 mod p(x) */
    DATA ·IEEEConst+2480(SB)/8,$0x00000000bf6c8c90
    DATA ·IEEEConst+2488(SB)/8,$0x00000000e1d9177a
    
    	/* x^101440 mod p(x), x^101376 mod p(x) */
    DATA ·IEEEConst+2496(SB)/8,$0x00000001788b0504
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          batch_sizes: Sequence[int],
          target_opset: quant_opts_pb2.OpSet,
      ):
        lhs_batch_size, rhs_batch_size = batch_sizes
        input_shape = (*lhs_batch_size, 1, 1024)
        filter_shape = (*rhs_batch_size, 1024, 3)
        static_input_shape = [dim if dim is not None else 2 for dim in input_shape]
        model = self._create_matmul_model(
            input_shape,
            filter_shape,
            self._input_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top