Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 100kb (0.05 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/encoder_with_allocator_test.go

    				return carpWithPayload(carpPayload)
    			}(),
    		},
    		{
    			name: "an obj with 10kB payload",
    			obj: func() runtime.Object {
    				carpPayload := make([]byte, 10000) // 10 kB
    				if _, err := rand.Read(carpPayload); err != nil {
    					panic(err)
    				}
    				return carpWithPayload(carpPayload)
    			}(),
    		},
    		{
    			name: "an obj with 100kB payload",
    			obj: func() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. cluster/addons/fluentd-gcp/README.md

    ## Troubleshooting
    
    In Kubernetes clusters in version 1.10.0 or later, fluentd-gcp DaemonSet can be
    manually scaled. This is useful e.g. when applications running in the cluster
    are sending a large volume of logs (i.e. over 100kB/s), causing fluentd-gcp to
    fail with OutOfMemory errors. Conversely, if the applications aren't generating
    a lot of logs, it may be useful to reduce the amount of resources consumed by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  3. internal/s3select/select_benchmark_test.go

    			s3Select.Close()
    		}
    	})
    }
    
    func benchmarkSelectAll(b *testing.B, count int) {
    	benchmarkSelect(b, count, "select * from S3Object")
    }
    
    // BenchmarkSelectAll_100K - benchmark * function with 100k records.
    func BenchmarkSelectAll_100K(b *testing.B) {
    	benchmarkSelectAll(b, 100*humanize.KiByte)
    }
    
    // BenchmarkSelectAll_1M - benchmark * function with 1m records.
    func BenchmarkSelectAll_1M(b *testing.B) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 14 13:54:47 UTC 2022
    - 5K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/util/WarmupEc2Agent.kt

        features {
            freeDiskSpace {
                // Lower the limit such that the agent work directories aren't cleaned during the AMI baking process
                requiredSpace = "100mb"
            }
        }
    
        params {
            param("defaultBranchName", "master")
            param("env.JAVA_HOME", javaHome(BuildToolBuildJvm, Os.LINUX))
        }
    
        steps {
            gradleWrapper {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top