Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 175 for BarTest (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/config/kube/gateway/conversion_test.go

    								MatchType: &istio.StringMatch_Regex{
    									Regex: ".*foo",
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			"path prefix matching with largest characters",
    			[]*istio.HTTPRoute{
    				{
    					Match: []*istio.HTTPMatchRequest{
    						{
    							Uri: &istio.StringMatch{
    								MatchType: &istio.StringMatch_Prefix{
    									Prefix: "/foo",
    								},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  9. src/math/big/ratconv_test.go

    	"100000000000000008388608",
    	"100000000000000016777215",
    	"100000000000000016777216",
    	"-1",
    	"-0.1",
    	"-0", // NB: exception made for this input
    	"1e-20",
    	"625e-3",
    
    	// largest float64
    	"1.7976931348623157e308",
    	"-1.7976931348623157e308",
    	// next float64 - too large
    	"1.7976931348623159e308",
    	"-1.7976931348623159e308",
    	// the border is ...158079
    	// borderline - okay
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  10. src/math/big/ratconv.go

    //	1/3    0    false    0       (0.333... rounded)
    //	1/4    2    true     0.25
    //	1/6    1    false    0.2     (0.166... rounded)
    func (x *Rat) FloatPrec() (n int, exact bool) {
    	// Determine q and largest p2, p5 such that d = q·2^p2·5^p5.
    	// The results n, exact are:
    	//
    	//     n = max(p2, p5)
    	//     exact = q == 1
    	//
    	// For details see:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top