Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for Sizes (0.36 sec)

  1. src/runtime/mgcscavenge.go

    	size := min(run, uint(max))
    	start := end - size
    
    	// Each huge page is guaranteed to fit in a single palloc chunk.
    	//
    	// TODO(mknyszek): Support larger huge page sizes.
    	// TODO(mknyszek): Consider taking pages-per-huge-page as a parameter
    	// so we can write tests for this.
    	if physHugePageSize > pageSize && physHugePageSize > physPageSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    	PartETags          []string          `json:"PartETags" msg:"PartETags,allownil"`             // Part ETags
    	PartSizes          []int64           `json:"PartSizes" msg:"PartSizes"`                      // Part Sizes
    	PartActualSizes    []int64           `json:"PartASizes,omitempty" msg:"PartASizes,allownil"` // Part ActualSizes (compression)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	// pauseNS is the total STW time this cycle, measured as the time between
    	// when stopping began (just before trying to stop Ps) and just after the
    	// world started again.
    	pauseNS int64
    
    	// debug.gctrace heap sizes for this cycle.
    	heap0, heap1, heap2 uint64
    
    	// Cumulative estimated CPU usage.
    	cpuStats
    }
    
    // GC runs a garbage collection and blocks the caller until the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. cmd/object-api-multipart_test.go

    				}
    			}
    		})
    	}
    }
    
    // Benchmarks for ObjectLayer.PutObjectPart().
    // The intent is to benchmark PutObjectPart for various sizes ranging from few bytes to 100MB.
    // Also each of these Benchmarks are run both Erasure and FS backends.
    
    // BenchmarkPutObjectPart5MbFS - Benchmark FS.PutObjectPart() for object size of 5MB.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

      out of the compiler and hopefully mention "name".
    */
    #define __cgo_compile_assert_eq(x, y, name) typedef char name[(x-y)*(x-y)*-2UL+1UL];
    
    /* Check at compile time that the sizes we use match our expectations. */
    #define __cgo_size_assert(t, n) __cgo_compile_assert_eq(sizeof(t), (size_t)n, _cgo_sizeof_##t##_is_not_##n)
    
    __cgo_size_assert(char, 1)
    __cgo_size_assert(short, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

        keyEquivalence = builder.getKeyEquivalence();
        this.entryHelper = entryHelper;
    
        int initialCapacity = Math.min(builder.getInitialCapacity(), MAXIMUM_CAPACITY);
    
        // Find power-of-two sizes best matching arguments. Constraints:
        // (segmentCount > concurrencyLevel)
        int segmentShift = 0;
        int segmentCount = 1;
        while (segmentCount < concurrencyLevel) {
          ++segmentShift;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    For the internal use of the TPU compiler.
    
    'static_shapes' are tensors specifying the maximum dimension sizes for the tensors specified in `dynamic_operands`.
    'args' are inputs to the TPU computation.
    'operands_with_static_shape' are the indices of the operands that have a maximal static shape specified.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

    //   size on the bool type, so the macro defined in stdbool.h could
    //   be inconsistent with the bool keyword in C++. Thus, the use
    //   of stdbool.h is avoided and unsigned char is used instead.
    // * size_t is used to represent byte sizes of objects that are
    //   materialized in the address space of the calling process.
    // * int is used as an index into arrays.
    // * Deletion functions are safe to call on nullptr.
    //
    // Questions left to address:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	return b
    }
    
    // EnableCompression enables compression in the Builder.
    //
    // Leaving compression disabled avoids compression related allocations, but can
    // result in larger message sizes. Be careful with this mode as it can cause
    // messages to exceed the UDP size limit.
    //
    // According to RFC 1035, section 4.1.4, the use of compression is optional, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    		// Counters for pod creation status (used by the job_pods_creation_total metric)
    		var creationsSucceeded, creationsFailed int32 = 0, 0
    
    		// Batch the pod creates. Batch sizes start at SlowStartInitialBatchSize
    		// and double with each successful iteration in a kind of "slow start".
    		// This handles attempts to start large numbers of pods that would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top