Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for memlimit (0.09 sec)

  1. cmd/handler-api.go

    	t.corsAllowOrigins = corsAllowOrigin
    
    	var apiRequestsMaxPerNode int
    	if cfg.RequestsMax <= 0 {
    		maxSetDrives := slices.Max(setDriveCounts)
    
    		// Returns 75% of max memory allowed
    		maxMem := globalServerCtxt.MemLimit
    
    		// max requests per node is calculated as
    		// total_ram / ram_per_request
    		blockSize := xioutil.LargeBlock + xioutil.SmallBlock
    		if legacy {
    			// ram_per_request is (1MiB+32KiB) * driveCount \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    			// For pageSize = 1, podCount = 1000, we get n+1 = 10, 2 ^ 10 = 1024.
    			currLimit := pageSize
    			for sum := uint64(1); sum < estimatedProcessedObjects; {
    				currLimit *= 2
    				if currLimit > maxLimit {
    					currLimit = maxLimit
    				}
    				sum += currLimit
    				estimatedGetCalls++
    			}
    		}
    		if reads := recorder.GetReadsAndReset(); reads != estimatedGetCalls {
    			t.Errorf("unexpected reads: %d", reads)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

        # storage.backlog.mem_limit
        # -------------------------
        # if storage.path is set, Fluent Bit will look for data chunks that were
        # not delivered and are still in the storage layer, these are called
        # backlog data. This option configure a hint of maximum value of memory
        # to use when processing these records.
        #
        # storage.backlog.mem_limit 5M
    
    [INPUT]
        Name         winlog
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (result_type.hasStaticShape()) {
          return failure();
        }
    
        Value start = op.getStart();
        Value delta = op.getDelta();
        Value limit = op.getLimit();
    
        // To compute the length we need to use floating point calculations so that
        // ceil can be computed for the number of steps.
        auto compute_element_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top