Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for 1024x1024 (0.14 sec)

  1. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            def size = getZip().size()
    
            assert size <= getMaxDistributionSizeBytes() : "Distribution content needs to be verified. If the increase is expected, raise the size by ${Math.ceil((size - getMaxDistributionSizeBytes()) / 1024 / 1024)}"
        }
    
        def "no duplicate jar entries in distribution"() {
            given:
            def entriesByPath = zipEntries.groupBy { it.name }
            def dupes = entriesByPath.findAll { it.value.size() > 1 }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pilot/pkg/features/tuning.go

    	).Get()
    
    	// MaxRecvMsgSize The max receive buffer size of gRPC received channel of Pilot in bytes.
    	MaxRecvMsgSize = env.Register(
    		"ISTIO_GPRC_MAXRECVMSGSIZE",
    		4*1024*1024,
    		"Sets the max receive buffer size of gRPC stream in bytes.",
    	).Get()
    
    	PushThrottle = func() int {
    		v := env.Register(
    			"PILOT_PUSH_THROTTLE",
    			0,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tests/sql_builder_test.go

    		t.Errorf("Failed to generate sql, got %v", sql)
    	}
    
    	stmt = dryRunDB.Model(&user).Where("id = ?", 1).Updates(map[string]interface{}{"age": ageUint64(10241024)}).Statement
    	sql = DB.Dialector.Explain(stmt.SQL.String(), stmt.Vars...)
    	if !regexp.MustCompile(`.*age.*=10241024,`).MatchString(sql) {
    		t.Errorf("Failed to generate sql, got %v", sql)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. src/crypto/md5/md5_test.go

    }
    
    func BenchmarkHash8K(b *testing.B) {
    	benchmarkSize(b, 8192, false)
    }
    
    func BenchmarkHash1M(b *testing.B) {
    	benchmarkSize(b, 1024*1024, false)
    }
    
    func BenchmarkHash8M(b *testing.B) {
    	benchmarkSize(b, 8*1024*1024, false)
    }
    
    func BenchmarkHash8BytesUnaligned(b *testing.B) {
    	benchmarkSize(b, 8, true)
    }
    
    func BenchmarkHash1KUnaligned(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/StreamByteBuffer.java

     * This is not thread-safe, it is intended to be used by a single Thread.
     */
    public class StreamByteBuffer {
        private static final int DEFAULT_CHUNK_SIZE = 4096;
        private static final int MAX_CHUNK_SIZE = 1024 * 1024;
        private LinkedList<StreamByteBufferChunk> chunks = new LinkedList<StreamByteBufferChunk>();
        private StreamByteBufferChunk currentWriteChunk;
        private StreamByteBufferChunk currentReadChunk;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/snapshot_test.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    )
    
    const mb int64 = 1024 * 1024
    
    func TestGetNodeImageStates(t *testing.T) {
    	tests := []struct {
    		node              *v1.Node
    		imageExistenceMap map[string]sets.Set[string]
    		expected          map[string]*framework.ImageStateSummary
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. pkg/apis/storagemigration/validation/validation.go

    	} else {
    		for _, currErr := range isValidConditionReason(condition.Reason) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("reason"), condition.Reason, currErr))
    		}
    
    		const maxReasonLen int = 1 * 1024 // 1024
    		if len(condition.Reason) > maxReasonLen {
    			allErrs = append(allErrs, field.TooLong(fldPath.Child("reason"), condition.Reason, maxReasonLen))
    		}
    	}
    
    	const maxMessageLen int = 32 * 1024 // 32768
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/curl/CurlRequest.java

        protected String url;
    
        protected Proxy proxy;
    
        protected String encoding = "UTF-8";
    
        protected int threshold = 1024 * 1024; // 1m
    
        protected Method method;
    
        protected List<String> paramList;
    
        protected List<String[]> headerList;
    
        protected String body;
    
        protected InputStream bodyStream;
    
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Sun Feb 12 12:21:25 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

        public static final int DEFAULT_NETWORK_TIMEOUT_MILLISECONDS = 10 * 1000;
    
        private static final int BUFFER_SIZE = 10 * 1024;
        private static final int PROGRESS_CHUNK = 1024 * 1024;
        private final Logger logger;
        private final String appName;
        private final String appVersion;
        private final DownloadProgressListener progressListener;
        private final Map<String, String> systemProperties;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. cmd/erasure-healing_test.go

    	objLayer, _, err := initObjectLayer(ctx, pools)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	bucket := getRandomBucketName()
    	object := getRandomObjectName()
    	data := bytes.Repeat([]byte("a"), 5*1024*1024)
    	var opts ObjectOptions
    
    	err = objLayer.MakeBucket(ctx, bucket, MakeBucketOptions{})
    	if err != nil {
    		t.Fatalf("Failed to make a bucket - %v", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top