Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for 100kb (0.74 sec)

  1. cluster/gce/config-common.sh

    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-master-root-disk-size() {
      local suggested_master_root_disk_size="20GB"
      if [[ "$(get-num-nodes)" -gt "500" ]]; then
        suggested_master_root_disk_size="100GB"
      fi
      if [[ "$(get-num-nodes)" -gt "3000" ]]; then
        suggested_master_root_disk_size="500GB"
      fi
      echo "${suggested_master_root_disk_size}"
    }
    
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. internal/s3select/csv/reader_contrib_test.go

    		recordDelimiter string
    		fieldDelimiter  string
    		header          bool
    		wantColumns     []string
    		wantTenFields   string
    		totalFields     int
    	}{
    		{
    			file:            "nyc-taxi-data-100k.csv",
    			recordDelimiter: "\n",
    			fieldDelimiter:  ",",
    			header:          true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 38.5K bytes
    - Viewed (0)
  3. pkg/probe/exec/exec.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/util/ioutils"
    	"k8s.io/kubernetes/pkg/probe"
    
    	"k8s.io/klog/v2"
    	"k8s.io/utils/exec"
    )
    
    const (
    	maxReadLength = 10 * 1 << 10 // 10KB
    )
    
    // New creates a Prober.
    func New() Prober {
    	return execProber{}
    }
    
    // Prober is an interface defining the Probe object for container readiness/liveness checks.
    type Prober interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/quantity_test.go

    			expectValue: trueVal,
    		},
    		{
    			name:        "arith_chain_1",
    			expr:        `quantity("50k").add(20).sub(quantity("100k")).asInteger()`,
    			expectValue: types.Int(-49980),
    		},
    		{
    			name:        "arith_chain",
    			expr:        `quantity("50k").add(20).sub(quantity("100k")).sub(-50000).asInteger()`,
    			expectValue: types.Int(20),
    		},
    		{
    			name:        "as_integer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/MemoryUtilTest.java

            assertEquals("1.024KB", MemoryUtil.byteCountToDisplaySize(FileUtils.ONE_KB));
            assertEquals("999.999KB", MemoryUtil.byteCountToDisplaySize(999_999L));
            assertEquals("1000KB", MemoryUtil.byteCountToDisplaySize(1000_000L));
            assertEquals("1.024MB", MemoryUtil.byteCountToDisplaySize(FileUtils.ONE_MB));
            assertEquals("976.562MB", MemoryUtil.byteCountToDisplaySize(999_999_999L));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. docs/extensions/s3zip/README.md

    - This API behavior is limited for following **read** operations on files inside a zip archive:
      - `HeadObject`
      - `GetObject`
      - `ListObjectsV2`
    - If the ZIP file directory isn't located within the last 100MB the file will not be parsed.
    - A maximum of 100M inside a single zip is allowed. However, a reasonable limit of 100,000 files inside a single ZIP archive is recommended for best performance and memory usage trade-off.
    
    ## Content-Type
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 10 16:28:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/values.yaml

      # Pod resource configuration
      resources:
        requests:
          cpu: 200m
          # Ztunnel memory scales with the size of the cluster and traffic load
          # While there are many factors, this is enough for ~200k pod cluster or 100k concurrently open connections.
          memory: 512Mi
    
      # List of secret names to add to the service account as image pull secrets
      imagePullSecrets: []
    
      # A `key: value` mapping of environment variables to add to the pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/probe/exec/exec_test.go

    }
    
    func (f *fakeExitError) ExitStatus() int {
    	return f.statusCode
    }
    
    func TestExec(t *testing.T) {
    	prober := New()
    
    	tenKilobyte := strings.Repeat("logs-123", 128*10)      // 8*128*10=10240 = 10KB of text.
    	elevenKilobyte := strings.Repeat("logs-123", 8*128*11) // 8*128*11=11264 = 11KB of text.
    
    	tests := []struct {
    		expectedStatus   probe.Result
    		expectError      bool
    		execProbeTimeout bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/metrics.go

    	// an image pulled is between 1GB and 5GB, the label will be "1GB-5GB".
    	imageSizeBuckets = []imageSizeBucket{
    		{0, "0-10MB"},
    		{10 * 1024 * 1024, "10MB-100MB"},
    		{100 * 1024 * 1024, "100MB-500MB"},
    		{500 * 1024 * 1024, "500MB-1GB"},
    		{1 * 1024 * 1024 * 1024, "1GB-5GB"},
    		{5 * 1024 * 1024 * 1024, "5GB-10GB"},
    		{10 * 1024 * 1024 * 1024, "10GB-20GB"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  10. internal/grid/grid.go

    // this isn't abandoned if the channel is no longer being read from.
    func WriterToChannel(ctx context.Context, ch chan<- []byte) io.Writer {
    	return &writerWrapper{ch: ch, ctx: ctx}
    }
    
    // bytesOrLength returns small (<=100b) byte slices as string, otherwise length.
    func bytesOrLength(b []byte) string {
    	if len(b) > 100 {
    		return fmt.Sprintf("%d bytes", len(b))
    	}
    	return fmt.Sprint(b)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 02 15:56:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top