Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for BarTest (0.14 sec)

  1. src/go/ast/commentmap.go

    //     at least one empty line after g and before the next node
    //   - g starts before n and is not associated to the node before n
    //     via the previous rules
    //
    // NewCommentMap tries to associate a comment group to the "largest"
    // node possible: For instance, if the comment is a line comment
    // trailing an assignment, the comment is associated with the entire
    // assignment rather than just the last operand in the assignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. docs/distributed/README.md

    - **MinIO creates erasure-coding sets of _2_ to _16_ drives per set.  The number of drives you provide in total must be a multiple of one of those numbers.**
    - **MinIO chooses the largest EC set size which divides into the total number of drives or total number of nodes given - making sure to keep the uniform distribution i.e each node participates equal number of drives per set**.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. src/compress/flate/huffman_code.go

    	if h.freqcache == nil {
    		// Allocate a reusable buffer with the longest possible frequency table.
    		// Possible lengths are codegenCodeCount, offsetCodeCount and maxNumLit.
    		// The largest of these is maxNumLit, so we allocate for that case.
    		h.freqcache = make([]literalNode, maxNumLit+1)
    	}
    	list := h.freqcache[:len(freq)+1]
    	// Number of non-zero literals
    	count := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/fuse.go

    			}
    		}
    		// move all of bx's values to c (note containing loop excludes c)
    		for _, v := range bx.Values {
    			v.Block = c
    		}
    	}
    
    	// Compute the total number of values and find the largest value slice in the run, to maximize chance of storage reuse.
    	total := 0
    	totalBeforeMax := 0 // number of elements preceding the maximum block (i.e. its position in the result).
    	max_b := b          // block with maximum capacity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/go/types/sizes.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
    - 8.9K bytes
    - Viewed (0)
  6. src/net/addrselect.go

    		Precedence: 40,
    		Label:      1,
    	},
    }
    
    // Classify returns the policyTableEntry of the entry with the longest
    // matching prefix that contains ip.
    // The table t must be sorted from largest mask size to smallest.
    func (t policyTable) Classify(ip netip.Addr) policyTableEntry {
    	// Prefix.Contains() will not match an IPv6 prefix for an IPv4 address.
    	if ip.Is4() {
    		ip = netip.AddrFrom16(ip.As16())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe_generic.go

    	// by 51, and add it to the limb above it. The top carry is multiplied by 19
    	// according to the reduction identity and added to the lowest limb.
    	//
    	// The largest coefficient (r0) will be at most 111 bits, which guarantees
    	// that all carries are at most 111 - 51 = 60 bits, which fits in a uint64.
    	//
    	//     r0 = a0×b0 + 19×(a1×b4 + a2×b3 + a3×b2 + a4×b1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    Gradle's build cache can be very useful in reducing CI infrastructure cost and feedback time, but it usually has the biggest impact when developers can reuse cached results in their local builds. This is also the hardest to quantify for a number of reasons:
    
    * developers run different builds
    * developers can have different hardware, or have different settings
    * developers run all kinds of other things on their machines that can slow them down
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top