Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 216 for vSlots (0.61 sec)

  1. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

    import java.util.List;
    import java.util.Map;
    import junit.framework.TestCase;
    
    /**
     * Unit test for {@link TypeToken} and {@link TypeResolver}.
     *
     * @author Ben Yu
     */
    @AndroidIncompatible // lots of failures, possibly some related to bad equals() implementations?
    public class TypeTokenResolutionTest extends TestCase {
    
      private static class Foo<A, B> {
    
        Class<? super A> getClassA() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// Loop backward through sa, always tracking
    	// the next index to populate from sa[:numLMS].
    	// When we get to one, populate it.
    	// Zero the rest of the slots; they have dead values in them.
    	x := numLMS - 1
    	saX := sa[x]
    	c := text[saX]
    	b := bucket[c] - 1
    	bucket[c] = b
    
    	for i := len(sa) - 1; i >= 0; i-- {
    		if i != int(b) {
    			sa[i] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      //   sumpos: number;	 // Sum of |self| of positive nodes in tree (>= 0)
      //   sumneg: number;	 // Sum of |self| of negative nodes in tree (>= 0)
      //   places: Place[];  // Stack slots that contributed to this group
      // }
      //
      // // Box is a rendered item.
      // interface Box {
      //   x: number;	   // X coordinate of top-left
      //   y: number;	   // Y coordinate of top-left
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    	// excludes these objects (and hence only goes up between GCs).
    	//
    	// To reduce contention, this is updated only when obtaining a span
    	// from an mcentral and at this point it counts all of the unallocated
    	// slots in that span (which will be allocated before that mcache
    	// obtains another span from that mcentral). Hence, it slightly
    	// overestimates the "true" live heap size. It's better to overestimate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/core.go

    func startNamespaceController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    	// the namespace cleanup controller is very chatty.  It makes lots of discovery calls and then it makes lots of delete calls
    	// the ratelimiter negatively affects its speed.  Deleting 100 total items in a namespace (that's only a few of each resource
    	// including events), takes ~10 seconds by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

    \u001B[1m> Task :1:log\u001B[m\u001B[0K
    Output from 1
    
    \u001B[1m> Task :2:log\u001B[m
    Output from 2
    More output from 2
    
    \u001B[1m> Task :3:log\u001B[m
    Output from 3
    
    
    
    Handles lots of newline characters
    
    
    \u001B[32;1mBUILD SUCCESSFUL\u001B[0;39m in 2s
    3 actionable tasks: 3 executed
    \u001B[2K
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Suppliers.java

        return new ExpiringMemoizingSupplier<>(delegate, toNanosSaturated(duration));
      }
    
      @VisibleForTesting
      @SuppressWarnings("GoodTime") // lots of violations
      static class ExpiringMemoizingSupplier<T extends @Nullable Object>
          implements Supplier<T>, Serializable {
        final Supplier<T> delegate;
        final long durationNanos;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/runtime/stack.go

    	minp := adjinfo.old.lo
    	maxp := adjinfo.old.hi
    	delta := adjinfo.delta
    	num := uintptr(bv.n)
    	// If this frame might contain channel receive slots, use CAS
    	// to adjust pointers. If the slot hasn't been received into
    	// yet, it may contain stack pointers and a concurrent send
    	// could race with adjusting those pointers. (The sent value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. test/inline_big.go

    	return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6] + a[7]
    }
    
    func f(a []int) int { // ERROR "cannot inline f:.*" "a does not escape" "function f considered 'big'"
    	// Add lots of nodes to f's body. We need >5000.
    	// See cmd/compile/internal/gc/inl.go:inlineBigFunction*
    	a[0] = 0
    	a[1] = 0
    	a[2] = 0
    	a[3] = 0
    	a[4] = 0
    	a[5] = 0
    	a[6] = 0
    	a[7] = 0
    	a[8] = 0
    	a[9] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/analyze_test.go

    			// If we use --all-namespaces, we should successfully run and see a message from each namespace
    			output, _ = istioctlSafe(t, istioCtl, "", true, "--all-namespaces")
    			// Since this test runs in a cluster with lots of other namespaces we don't actually care about, only look for ns1 and ns2
    			foundCount := 0
    			for _, line := range output {
    				if strings.Contains(line, ns1.Name()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top