Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for 100kb (0.05 sec)

  1. src/unicode/utf8/utf8_test.go

    	}
    }
    
    func BenchmarkValidStringLongJapanese(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		ValidString(longStringJapanese)
    	}
    }
    
    var longStringMostlyASCII string // ~100KB, ~97% ASCII
    var longStringJapanese string    // ~100KB, non-ASCII
    
    func init() {
    	const japanese = "日本語日本語日本語日"
    	var b strings.Builder
    	for i := 0; b.Len() < 100_000; i++ {
    		if i%100 == 0 {
    			b.WriteString(japanese)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_ja.properties

    labels.facet_contentLength_10k=&nbsp; - 10KB
    labels.facet_contentLength_10kto100k=10KB - 100KB
    labels.facet_contentLength_100kto500k=100KB - 500KB
    labels.facet_contentLength_500kto1m=500KB - 1MB
    labels.facet_contentLength_1m=1MB - &nbsp;
    labels.facet_contentLength_10kto50k=10KB - 50KB
    labels.facet_contentLength_50kto100k=50KB - 100KB
    labels.facet_contentLength_100kto250k=100KB - 250KB
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_de.properties

    labels.facet_timestamp_1month=Letzter Monat
    labels.facet_timestamp_1year=Letztes Jahr
    labels.facet_contentLength_title=Größe
    labels.facet_contentLength_10k=&nbsp; - 10kb
    labels.facet_contentLength_10kto100k=10kb - 100kb
    labels.facet_contentLength_100kto500k=100kb - 500kb
    labels.facet_contentLength_500kto1m=500kb - 1mb
    labels.facet_contentLength_1m=1mb - &nbsp;
    labels.facet_filetype_title=Dateityp
    labels.facet_filetype_html=HTML
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    func NewAuditTruncateOptions() AuditTruncateOptions {
    	return AuditTruncateOptions{
    		Enabled: false,
    		TruncateConfig: plugintruncate.Config{
    			MaxBatchSize: 10 * 1024 * 1024, // 10MB
    			MaxEventSize: 100 * 1024,       // 100KB
    		},
    	}
    }
    
    // Validate checks invalid config combination
    func (o *AuditOptions) Validate() []error {
    	if o == nil {
    		return nil
    	}
    
    	var allErrors []error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: &amp;nbsp; - 10kb */
        public static final String LABELS_facet_contentLength_10k = "{labels.facet_contentLength_10k}";
    
        /** The key of the message: 10kb - 100kb */
        public static final String LABELS_facet_contentLength_10kto100k = "{labels.facet_contentLength_10kto100k}";
    
        /** The key of the message: 100kb - 500kb */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    				Status: 200,
    				Body: &networking.HTTPBody{
    					Specifier: &networking.HTTPBody_String_{String_: "hello"},
    				},
    			},
    			valid: true,
    		},
    		{
    			name: "with string body over 100kb",
    			directResponse: &networking.HTTPDirectResponse{
    				Status: 200,
    				Body: &networking.HTTPBody{
    					Specifier: &networking.HTTPBody_String_{String_: strings.Repeat("a", 101*kb)},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. pkg/kubelet/metrics/testdata/image_pull_duration_metric

    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="100MB-500MB",le="120"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="100MB-500MB",le="180"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="100MB-500MB",le="240"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="100MB-500MB",le="300"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. 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)
  9. .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)
  10. CHANGELOG/CHANGELOG-1.11.md

    * [fluentd-gcp addon] Increase CPU limit for fluentd to 1 core to achieve 100kb/s throughput. ([#62430](https://github.com/kubernetes/kubernetes/pull/62430), [@bmoyles0117](https://github.com/bmoyles0117))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
Back to top