Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 164 for calculations (0.27 sec)

  1. cmd/warm-backend-minio.go

    	if objectSize > maxMultipartPutObjectSize {
    		err = errors.New("entity too large")
    		return
    	}
    
    	configuredPartSize := minPartSize
    	// Use floats for part size for all calculations to avoid
    	// overflows during float64 to int64 conversions.
    	partSizeFlt := float64(objectSize / maxPartsCount)
    	partSizeFlt = math.Ceil(partSizeFlt/float64(configuredPartSize)) * float64(configuredPartSize)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/size.go

    //
    //	type T *struct { next T }
    //
    // it is necessary to defer the calculation of the struct width
    // until after T has been initialized to be a pointer to that struct.
    // similarly, during import processing structs may be used
    // before their definition.  in those situations, calling
    // DeferCheckSize() stops width calculations until
    // ResumeCheckSize() is called, at which point all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

     * more adapted algorithms.
     *
     */
    public class MavenModelMerger extends MavenMerger {
    
        /**
         * The hint key for the child path adjustment used during inheritance for URL calculations.
         */
        public static final String CHILD_PATH_ADJUSTMENT = "child-path-adjustment";
    
        /**
         * The context key for the artifact id of the target model.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    type CostEstimator struct {
    	// SizeEstimator provides a CostEstimator.EstimateSize that this CostEstimator will delegate size estimation
    	// calculations to if the size is not well known (i.e. a constant).
    	SizeEstimator checker.CostEstimator
    }
    
    func (l *CostEstimator) CallCost(function, overloadId string, args []ref.Val, result ref.Val) *uint64 {
    	switch function {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/time/time.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package time provides functionality for measuring and displaying time.
    //
    // The calendrical calculations always assume a Gregorian calendar, with
    // no leap seconds.
    //
    // # Monotonic Clocks
    //
    // Operating systems provide both a “wall clock,” which is subject to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. src/math/big/natdiv.go

    For example, no rationale whatsoever is given for the calculation that extends
    q̂ from a 2-by-1 to a 3-by-2 guess, nor why it reduces the error bound.
    The proof that the calculation even has the desired effect is left to exercises.
    The solutions to those exercises provided at the back of the book are entirely
    calculations, still with no explanation as to what is going on or how you would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. src/time/zoneinfo.go

    // depending on whether daylight savings time is in use at the time instant.
    //
    // Location is used to provide a time zone in a printed Time value and for
    // calculations involving intervals that may cross daylight savings time
    // boundaries.
    type Location struct {
    	name string
    	zone []zone
    	tx   []zoneTrans
    
    	// The tzdata information can be followed by a string that describes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/runtime/profbuf.go

    	// worry about uint32 wraparound changing the effective position
    	// within the buffers. We store 30 bits of count; limiting to 28
    	// gives us some room for intermediate calculations.
    	if bufwords >= 1<<28 || tags >= 1<<28 {
    		throw("newProfBuf: buffer too large")
    	}
    	var i int
    	for i = 1; i < bufwords; i <<= 1 {
    	}
    	bufwords = i
    	for i = 1; i < tags; i <<= 1 {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== SourceTask is no longer sensitive to empty directories
    
    Previously, empty directories would be taken into account during up-to-date checks and build cache key calculations for the sources declared in `SourceTask`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    	"istio.io/istio/pkg/security"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // deltaConfigTypes are used to detect changes and trigger delta calculations. When config updates has ONLY entries
    // in this map, then delta calculation is triggered.
    var deltaConfigTypes = sets.New(kind.ServiceEntry.String(), kind.DestinationRule.String())
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top