Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for 1024x1024 (0.17 sec)

  1. cmd/kube-apiserver/app/options/options_test.go

    				MaxMutatingRequestsInFlight: 200,
    				RequestTimeout:              time.Duration(2) * time.Minute,
    				MinRequestTimeout:           1800,
    				JSONPatchMaxCopyBytes:       int64(3 * 1024 * 1024),
    				MaxRequestBodyBytes:         int64(3 * 1024 * 1024),
    			},
    			Admission: &kubeoptions.AdmissionOptions{
    				GenericAdmission: &apiserveroptions.AdmissionOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/imagelocality/image_locality.go

    // container images compressed and stored in registries; 90%ile of images on dockerhub drops into this range.
    const (
    	mb                    int64 = 1024 * 1024
    	minThreshold          int64 = 23 * mb
    	maxContainerThreshold int64 = 1000 * mb
    )
    
    // ImageLocality is a score plugin that favors nodes that already have requested pod container's images.
    type ImageLocality struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    	if err != nil {
    		t.Errorf("unexpected error creating websocket executor: %v", err)
    	}
    	// Generate random data, and set it up to stream on STDIN. The data will be
    	// returned on the STDOUT buffer.
    	randomSize := 1024 * 1024
    	randomData := make([]byte, randomSize)
    	if _, err := rand.Read(randomData); err != nil {
    		t.Errorf("unexpected error reading random data: %v", err)
    	}
    	var stdout bytes.Buffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. cmd/last-minute.go

    	// Add new entries here
    
    	sizeLastElemMarker
    )
    
    // sizeToTag converts a size to a tag.
    func sizeToTag(size int64) int {
    	switch {
    	case size < 1024:
    		return sizeLessThan1KiB
    	case size < 1024*1024:
    		return sizeLessThan1MiB
    	case size < 10*1024*1024:
    		return sizeLessThan10MiB
    	case size < 100*1024*1024:
    		return sizeLessThan100MiB
    	case size < 1024*1024*1024:
    		return sizeLessThan1GiB
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 05 17:40:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_limit_test.go

    		},
    		{
    			name:     "3MB of unbalanced nested slices",
    			checkErr: nonNilError,
    			data:     []byte(`{"a":` + strings.Repeat(`[`, 3*1024*1024)),
    		},
    		{
    			name:     "3MB of deeply nested maps",
    			checkErr: successOrMaxDepthError,
    			data:     []byte(strings.Repeat(`{"":`, 3*1024*1024/5/2) + "{}" + strings.Repeat(`}`, 3*1024*1024/5/2)),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:49:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                    items.length, size, type, parseTime, indexTime, cpuLoad, maxMemory / (1024 * 1024),
                    (maxMemory - freeMemory) / (1024 * 1024));
            logger.info(msg);
            if (logger.isDebugEnabled()) {
                for (final SuggestItem item : items) {
                    logger.debug("[{}] {}", type, item.toJsonString());
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/yaml/yaml_test.go

    			error: "max depth",
    			data:  []byte(strings.Repeat(`[`, 3*1024*1024)),
    		},
    		{
    			name:  "deeply nested maps",
    			error: "max depth",
    			data:  []byte("x: " + strings.Repeat(`{`, 3*1024*1024)),
    		},
    		{
    			name:  "deeply nested indents",
    			error: "max depth",
    			data:  []byte(strings.Repeat(`- `, 3*1024*1024)),
    		},
    		{
    			name:      "3MB of 1000-indent lines",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 06 20:18:22 UTC 2020
    - 14.3K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

        abstract boolean existsBuildCacheEntry(String key);
        abstract AbstractIntegrationSpec withEnabledBuildCache();
    
        def setup() {
            def bytes = new byte[1024 * 1024]
            new Random().nextBytes(bytes)
            file("output.txt").bytes = bytes
    
            buildFile << """
                @CacheableTask
                abstract class CustomTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/util/ConsoleTransferListener.java

                    "transferCorrupted",
                    event.getException().getClass() + ": " + event.getException().getMessage());
        }
    
        protected long toKB(long bytes) {
            return (bytes + 1023) / 1024;
        }
    
        private void println(String event, String message) {
            print(event, message);
            out.println();
        }
    
        private void print(String event, String message) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                """
                import org.gradle.api.*
                import org.gradle.api.tasks.*
    
                class MyTask extends DefaultTask {
                    static final byte[][] MEMORY_HOG = new byte[1024][1024 * $memoryHogMb]
                    @TaskAction void runAction0() {}
                }
                """
            )
            val settingsFile = cachedSettingsFile(withSettings(""), false, false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top