Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 100 for 1024x1024 (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/cel/config.go

    	// Note that even if server_run_options.go becomes configurable in the future, this cost constant should be fixed and it should be the max allowed request size for the server
    	MaxRequestSizeBytes = int64(3 * 1024 * 1024)
    
    	// MaxEvaluatedMessageExpressionSizeBytes represents the largest-allowable string generated
    	// by a messageExpression field
    	MaxEvaluatedMessageExpressionSizeBytes = 5 * 1024
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonExpiration.java

            if (memoryAmountBytes < 0) {
                throw new IllegalArgumentException("Negative memory amount");
            }
            LOGGER.debug("Will attempt to release {} of memory", memoryAmountBytes / 1024 / 1024);
            SimpleMemoryExpirationSelector selector = new SimpleMemoryExpirationSelector(memoryAmountBytes);
            clientsManager.selectIdleClientsToStop(selector);
            return selector.getReleasedBytes();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. hack/verify-file-sizes.sh

    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    cd "${KUBE_ROOT}"
    
    # Files larger than 1MB need to be allowed explicitly.
    maxsize=$((1 * 1024 * 1024))
    
    # Sorted list of those exceptions.
    allowlist=(
        staging/src/k8s.io/kubectl/images/kubectl-logo-full.png
    )
    
    
    # Files larger than 1MB get reported and verification fails, unless the file is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/util/iptables/save_restore_test.go

    		-A OUTPUT -m addrtype --dst-type LOCAL -m comment --comment "handle service NodePorts; NOTE: this must be the last rule in the chain" -j KUBE-NODEPORT-HOST
    		-A POSTROUTING -s 10.246.1.0/24 ! -o cbr0 -j MASQUERADE
    		-A POSTROUTING -s 10.0.2.15 -d 10.0.2.15 -m comment --comment "handle pod connecting to self" -j MASQUERADE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. internal/config/crypto_test.go

    			plaintext.Reset(data)
    		}
    	}
    	b.Run("1KB", func(b *testing.B) { benchmarkEncrypt(1*1024, b) })
    	b.Run("512KB", func(b *testing.B) { benchmarkEncrypt(512*1024, b) })
    	b.Run("1MB", func(b *testing.B) { benchmarkEncrypt(1024*1024, b) })
    	b.Run("10MB", func(b *testing.B) { benchmarkEncrypt(10*1024*1024, b) })
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/internal/fuzz/encoding_test.go

    // slices of various sizes to a corpus file. The slice contains a repeating
    // sequence of bytes 0-255 to mix escaped and non-escaped characters.
    func BenchmarkMarshalCorpusFile(b *testing.B) {
    	buf := make([]byte, 1024*1024)
    	for i := 0; i < len(buf); i++ {
    		buf[i] = byte(i)
    	}
    
    	for sz := 1; sz <= len(buf); sz <<= 1 {
    		sz := sz
    		b.Run(strconv.Itoa(sz), func(b *testing.B) {
    			for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/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{
    				RecommendedPluginOrder: s.Admission.GenericAdmission.RecommendedPluginOrder,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

    /**
     * Utility class used to report errors, statistics, application version info, etc.
     *
     */
    public final class CLIReportingUtils {
        // CHECKSTYLE_OFF: MagicNumber
        public static final long MB = 1024 * 1024;
    
        private static final long ONE_SECOND = 1000L;
    
        private static final long ONE_MINUTE = 60 * ONE_SECOND;
    
        private static final long ONE_HOUR = 60 * ONE_MINUTE;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/audit/truncate/truncate_test.go

    	"k8s.io/apiserver/plugin/pkg/audit/fake"
    	// Importing just for the schema definitions.
    	_ "k8s.io/apiserver/plugin/pkg/audit/webhook"
    )
    
    var (
    	defaultConfig = Config{
    		MaxBatchSize: 4 * 1024 * 1024,
    		MaxEventSize: 100 * 1024,
    	}
    )
    
    func TestTruncatingEvents(t *testing.T) {
    	testCases := []struct {
    		desc          string
    		event         *auditinternal.Event
    		wantDropped   bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 30 07:56:39 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    	imageFsAvailableBytes := uint64(1024 * 1024)
    	imageFsCapacityBytes := uint64(1024 * 1024 * 2)
    	nodeFsAvailableBytes := uint64(1024)
    	nodeFsCapacityBytes := uint64(1024 * 2)
    	imageFsInodesFree := uint64(1024)
    	imageFsInodes := uint64(1024 * 1024)
    	nodeFsInodesFree := uint64(1024)
    	nodeFsInodes := uint64(1024 * 1024)
    	containerFsAvailableBytes := uint64(1024 * 1024 * 2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top