Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for BarTest (0.09 sec)

  1. 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)
  2. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// spongeSqueezing indicates that the sponge is being squeezed.
    	spongeSqueezing
    )
    
    const (
    	// maxRate is the maximum size of the internal buffer. SHAKE-256
    	// currently needs the largest buffer.
    	maxRate = 168
    )
    
    type state struct {
    	// Generic sponge components.
    	a    [25]uint64 // main state of the hash
    	rate int        // the number of bytes of state to use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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