Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,861 for Largest (0.13 sec)

  1. src/runtime/defs_freebsd.go

    #include <sys/cpuset.h>
    #include <sys/param.h>
    #include <sys/vdso.h>
    */
    import "C"
    
    // Local consts.
    const (
    	_NBBY            = C.NBBY            // Number of bits in a byte.
    	_CTL_MAXNAME     = C.CTL_MAXNAME     // Largest number of components supported.
    	_CPU_LEVEL_WHICH = C.CPU_LEVEL_WHICH // Actual mask/id for which.
    	_CPU_WHICH_PID   = C.CPU_WHICH_PID   // Specifies a process id.
    )
    
    const (
    	EINTR     = C.EINTR
    	EFAULT    = C.EFAULT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/math/pow.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    func isOddInt(x float64) bool {
    	if Abs(x) >= (1 << 53) {
    		// 1 << 53 is the largest exact integer in the float64 format.
    		// Any number outside this range will be truncated before the decimal point and therefore will always be
    		// an even integer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:10:58 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/errors.go

    var tooLargeResourceVersionCauseMsg = "Too large resource version"
    
    // NewTooLargeResourceVersionError returns a timeout error with the given retrySeconds for a request for
    // a minimum resource version that is larger than the largest currently available resource version for a requested resource.
    func NewTooLargeResourceVersionError(minimumResourceVersion, currentRevision uint64, retrySeconds int) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:39:10 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. src/html/template/transition.go

    		k = i + 1
    	}
    }
    
    // tError is the context transition function for the error state.
    func tError(c context, s []byte) (context, int) {
    	return c, len(s)
    }
    
    // eatAttrName returns the largest j such that s[i:j] is an attribute name.
    // It returns an error if s[i:] does not look like it begins with an
    // attribute name, such as encountering a quote mark without a preceding
    // equals sign.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. src/go/types/gcsizes.go

    			//
    			// This logic is equivalent to the logic in
    			// cmd/compile/internal/types/size.go:calcStructOffset
    			return 8
    		}
    
    		// spec: "For a variable x of struct type: unsafe.Alignof(x)
    		// is the largest of the values unsafe.Alignof(x.f) for each
    		// field f of x, but at least 1."
    		max := int64(1)
    		for _, f := range t.fields {
    			if a := s.Alignof(f.typ); a > max {
    				max = a
    			}
    		}
    		return max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/internal/zstd/huff.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package zstd
    
    import (
    	"io"
    	"math/bits"
    )
    
    // maxHuffmanBits is the largest possible Huffman table bits.
    const maxHuffmanBits = 11
    
    // readHuff reads Huffman table from data starting at off into table.
    // Each entry in a Huffman table is a pair of bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/math/big/example_test.go

    	x := new(big.Float).SetPrec(prec).SetInt64(1)
    
    	// We use t as a temporary variable. There's no need to set its precision
    	// since big.Float values with unset (== 0) precision automatically assume
    	// the largest precision of the arguments when used as the result (receiver)
    	// of a big.Float operation.
    	t := new(big.Float)
    
    	// Iterate.
    	for i := 0; i <= steps; i++ {
    		t.Quo(two, x)  // t = 2.0 / x_n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 16:15:32 UTC 2020
    - 4K bytes
    - Viewed (0)
  8. cmd/erasure-common.go

    					continue
    				}
    				quorum++
    				if toAdd.Modtime.After(gotFile.Modtime) || len(gotFile.Data) < len(toAdd.Data) {
    					// Pick latest, or largest to avoid possible truncated entries.
    					continue
    				}
    				toAdd = gotFile
    			}
    		}
    		if quorum < readQuorum {
    			toAdd.Exists = false
    			toAdd.Error = errErasureReadQuorum.Error()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/math/big/natconv.go

    // Note: MaxBase = len(digits), but it must remain an untyped rune constant
    //       for API compatibility.
    
    // MaxBase is the largest number base accepted for string conversions.
    const MaxBase = 10 + ('z' - 'a' + 1) + ('Z' - 'A' + 1)
    const maxBaseSmall = 10 + ('z' - 'a' + 1)
    
    // maxPow returns (b**n, n) such that b**n is the largest power b**n <= _M.
    // For instance maxPow(10) == (1e19, 19) for 19 decimal digits in a 64bit Word.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  10. src/compress/flate/deflate.go

    	minMatchLength  = 4       // The smallest match length that the compressor actually emits
    	maxMatchLength  = 258     // The largest match length
    	baseMatchOffset = 1       // The smallest match offset
    	maxMatchOffset  = 1 << 15 // The largest match offset
    
    	// The maximum number of tokens we put into a single flate block, just to
    	// stop things from getting too large.
    	maxFlateBlockTokens = 1 << 14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top