Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 263 for p$ (0.03 sec)

  1. android/guava/src/com/google/common/base/Preconditions.java

     * }
     * }</pre>
     *
     * <p>would be flagged as having called {@code sqrt()} with an illegal argument.
     *
     * <h3>Performance</h3>
     *
     * <p>Avoid passing message arguments that are expensive to compute; your code will always compute
     * them, even though they usually won't be needed. If you have such arguments, use the conventional
     * if/throw idiom instead.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. src/sync/atomic/atomic_test.go

    	q := new(byte)
    	for _, p := range testPointers() {
    		p := (*byte)(p)
    		x.i.Store(p)
    		if !x.i.CompareAndSwap(p, q) {
    			t.Fatalf("should have swapped %p %p", p, q)
    		}
    		if x.i.Load() != q {
    			t.Fatalf("wrong x.i after swap: x.i=%p want %p", x.i.Load(), q)
    		}
    		if x.i.CompareAndSwap(p, nil) {
    			t.Fatalf("should not have swapped %p nil", p)
    		}
    		if x.i.Load() != q {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

     * }
     * }</pre>
     *
     * <p>would be flagged as having called {@code sqrt()} with an illegal argument.
     *
     * <h3>Performance</h3>
     *
     * <p>Avoid passing message arguments that are expensive to compute; your code will always compute
     * them, even though they usually won't be needed. If you have such arguments, use the conventional
     * if/throw idiom instead.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    //go:linkname pprof_blockProfileInternal
    func pprof_blockProfileInternal(p []profilerecord.BlockProfileRecord) (n int, ok bool) {
    	return blockProfileInternal(len(p), func(r profilerecord.BlockProfileRecord) {
    		p[0] = r
    		p = p[1:]
    	})
    }
    
    // MutexProfile returns n, the number of records in the current mutex profile.
    // If len(p) >= n, MutexProfile copies the profile into p and returns n, true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

       * Iterables#addAll}.
       *
       * <p><b>Note:</b> if mutability is not required and the elements are non-null, use {@link
       * ImmutableSet#copyOf(Iterable)} instead. (Or, change {@code elements} to be a {@link
       * FluentIterable} and call {@code elements.toSet()}.)
       *
       * <p><b>Note:</b> if {@code E} is an {@link Enum} type, use {@link #newEnumSet(Iterable, Class)}
       * instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    }
    
    func dumpGCProg(p *byte) {
    	nptr := 0
    	for {
    		x := *p
    		p = add1(p)
    		if x == 0 {
    			print("\t", nptr, " end\n")
    			break
    		}
    		if x&0x80 == 0 {
    			print("\t", nptr, " lit ", x, ":")
    			n := int(x+7) / 8
    			for i := 0; i < n; i++ {
    				print(" ", hex(*p))
    				p = add1(p)
    			}
    			print("\n")
    			nptr += int(x)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    	}
    
    	// Make sure we're actually stealing the right P.
    	if mState.p != pid {
    		return curCtx, false, fmt.Errorf("tried to steal proc %d from thread %d, but got proc %d instead", pid, mid, mState.p)
    	}
    
    	// Tell the M it has no P so it can proceed.
    	//
    	// This is safe because we know the P was in a syscall and
    	// the other M must be trying to get out of the syscall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	"src/old",
    }
    
    // setup sets up the tree for the initial build.
    func setup() {
    	// Create bin directory.
    	if p := pathf("%s/bin", goroot); !isdir(p) {
    		xmkdir(p)
    	}
    
    	// Create package directory.
    	if p := pathf("%s/pkg", goroot); !isdir(p) {
    		xmkdir(p)
    	}
    
    	goosGoarch := pathf("%s/pkg/%s_%s", goroot, gohostos, gohostarch)
    	if rebuildall {
    		xremoveall(goosGoarch)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multimaps.java

       *     FIRST_LETTER_MULTIMAP.putAll('b', Arrays.asList('a', 'n', 'a', 'n', 'a'));
       *     FIRST_LETTER_MULTIMAP.putAll('a', Arrays.asList('p', 'p', 'l', 'e'));
       *     FIRST_LETTER_MULTIMAP.putAll('c', Arrays.asList('a', 'r', 'r', 'o', 't'));
       *     FIRST_LETTER_MULTIMAP.putAll('a', Arrays.asList('s', 'p', 'a', 'r', 'a', 'g', 'u', 's'));
       *     FIRST_LETTER_MULTIMAP.putAll('c', Arrays.asList('h', 'e', 'r', 'r', 'y'));
       * }
       * }</pre>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Multimaps.java

       *     FIRST_LETTER_MULTIMAP.putAll('b', Arrays.asList('a', 'n', 'a', 'n', 'a'));
       *     FIRST_LETTER_MULTIMAP.putAll('a', Arrays.asList('p', 'p', 'l', 'e'));
       *     FIRST_LETTER_MULTIMAP.putAll('c', Arrays.asList('a', 'r', 'r', 'o', 't'));
       *     FIRST_LETTER_MULTIMAP.putAll('a', Arrays.asList('s', 'p', 'a', 'r', 'a', 'g', 'u', 's'));
       *     FIRST_LETTER_MULTIMAP.putAll('c', Arrays.asList('h', 'e', 'r', 'r', 'y'));
       * }
       * }</pre>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top