Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 200 for BarTest (0.48 sec)

  1. 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)
  2. 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)
  3. src/cmd/compile/internal/types2/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: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/pos.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syntax
    
    import "fmt"
    
    // PosMax is the largest line or column value that can be represented without loss.
    // Incoming values (arguments) larger than PosMax will be set to PosMax.
    //
    // Keep this consistent with maxLineCol in go/scanner.
    const PosMax = 1 << 30
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/gen/arithBoundaryGen.go

    		return int64(int8(i))
    	}
    	return i
    }
    
    type sizedTestData struct {
    	name string
    	sn   string
    	u    []uint64
    	i    []int64
    }
    
    // values to generate tests. these should include the smallest and largest values, along
    // with any other values that might cause issues. we generate n^2 tests for each size to
    // cover all cases.
    var szs = []sizedTestData{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FreeListBlockStore.java

                if (index < 0) {
                    index = -index - 1;
                }
                if (index == entries.size()) {
                    // Largest free block is too small
                    return;
                }
    
                FreeListEntry entry = entries.remove(index);
                block.setPos(entry.pos);
                block.setSize(entry.size);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/struct.go

    }
    
    // NewStruct returns a new struct with the given fields and corresponding field tags.
    // If a field with index i has a tag, tags[i] must be that tag, but len(tags) may be
    // only as long as required to hold the tag with the largest index i. Consequently,
    // if no field has a tag, tags may be nil.
    func NewStruct(fields []*Var, tags []string) *Struct {
    	var fset objset
    	for _, f := range fields {
    		if f.name != "_" && fset.insert(f) != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/dwarf.go

    			// for similar reasons.
    			switch deltaPC - PC_RANGE {
    			// PC_RANGE is the largest deltaPC we can encode in one byte, using
    			// DW_LNS_const_add_pc.
    			//
    			// (1<<16)-1 is the largest deltaPC we can encode in three bytes, using
    			// DW_LNS_fixed_advance_pc.
    			//
    			// (1<<(7n))-1 is the largest deltaPC we can encode in n+1 bytes for
    			// n=1,3,4,5,..., using DW_LNS_advance_pc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/UnsignedBytes.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class UnsignedBytes {
      private UnsignedBytes() {}
    
      /**
       * The largest power of two that can be represented as an unsigned {@code byte}.
       *
       * @since 10.0
       */
      public static final byte MAX_POWER_OF_TWO = (byte) 0x80;
    
      /**
       * The largest value that fits into an unsigned byte.
       *
       * @since 13.0
       */
      public static final byte MAX_VALUE = (byte) 0xFF;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/UnsignedBytes.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class UnsignedBytes {
      private UnsignedBytes() {}
    
      /**
       * The largest power of two that can be represented as an unsigned {@code byte}.
       *
       * @since 10.0
       */
      public static final byte MAX_POWER_OF_TWO = (byte) 0x80;
    
      /**
       * The largest value that fits into an unsigned byte.
       *
       * @since 13.0
       */
      public static final byte MAX_VALUE = (byte) 0xFF;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top