Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 956 for nextB (0.2 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	// that are not used in a given program.
    	wroteNext := false
    	for wroteNext || c.next.Load() == nil {
    		head := f.counters.Load()
    		next := head
    		if next == nil {
    			next = &f.end
    		}
    		debugPrintf("register %s next %p\n", c.Name(), next)
    		if !wroteNext {
    			if !c.next.CompareAndSwap(nil, next) {
    				debugPrintf("register %s cas failed %p\n", c.Name(), c.next.Load())
    				continue
    			}
    			wroteNext = true
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

          ReferenceEntry<K, V> next = head.getNextInWriteQueue();
          return (next == head) ? null : next;
        }
    
        @CheckForNull
        @Override
        public ReferenceEntry<K, V> poll() {
          ReferenceEntry<K, V> next = head.getNextInWriteQueue();
          if (next == head) {
            return null;
          }
    
          remove(next);
          return next;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. src/cmd/link/testdata/linkname/ok.go

    import (
    	"iter"
    	"unique"
    )
    
    func seq(yield func(int) bool) {
    	yield(123)
    }
    
    var s = "hello"
    
    func main() {
    	h := unique.Make(s)
    	next, stop := iter.Pull(seq)
    	defer stop()
    	println(h.Value())
    	println(next())
    	println(next())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 433 bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	// If there's a runnext, it's the next G to run.
    	next := pp.runnext
    	// If the runnext is non-0 and the CAS fails, it could only have been stolen by another P,
    	// because other Ps can race to set runnext to 0, but only the current P can set it to non-0.
    	// Hence, there's no need to retry this CAS if it fails.
    	if next != 0 && pp.runnext.cas(next, 0) {
    		return next.ptr(), true
    	}
    
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    		}
    		prev = p.tok
    
    		switch p.tok {
    		case _Import:
    			p.next()
    			f.DeclList = p.appendGroup(f.DeclList, p.importDecl)
    
    		case _Const:
    			p.next()
    			f.DeclList = p.appendGroup(f.DeclList, p.constDecl)
    
    		case _Type:
    			p.next()
    			f.DeclList = p.appendGroup(f.DeclList, p.typeDecl)
    
    		case _Var:
    			p.next()
    			f.DeclList = p.appendGroup(f.DeclList, p.varDecl)
    
    		case _Func:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/map.go

    // returns whether a checkpoint is possible: whether the pDst bytes written to
    // dst so far won't need changing as we see more source bytes.
    type mapFunc func(*context) bool
    
    // A spanFunc takes a context set to the current rune and returns whether this
    // rune would be altered when written to the output. It may advance the context
    // to the next rune. It returns whether a checkpoint is possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

          private final StrongKeyStrongValueEntry<K, V> next;
    
          LinkedStrongKeyStrongValueEntry(K key, int hash, StrongKeyStrongValueEntry<K, V> next) {
            super(key, hash);
            this.next = next;
          }
    
          @Override
          public StrongKeyStrongValueEntry<K, V> getNext() {
            return next;
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Serializer.java

    import java.io.EOFException;
    
    public interface Serializer<T> {
        /**
         * Reads the next object from the given stream. The implementation must not perform any buffering, so that it reads only those bytes from the input stream that are
         * required to deserialize the next object.
         *
         * @throws EOFException When the next object cannot be fully read due to reaching the end of stream.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    }
    
    // scan parses the next token of a BCP 47 string.  Tokens that are larger
    // than 8 characters or include non-alphanumeric characters result in an error
    // and are gobbled and removed from the output.
    // It returns the end position of the last token consumed.
    func (s *scanner) scan() (end int) {
    	end = s.end
    	s.token = nil
    	for s.start = s.next; s.next < len(s.b); {
    		i := bytes.IndexByte(s.b[s.next:], '-')
    		if i == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Cut.java

            case CLOSED:
              C next = domain.next(endpoint);
              return (next == null) ? Cut.<C>belowAll() : belowValue(next);
            default:
              throw new AssertionError();
          }
        }
    
        @Override
        Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) {
          switch (boundType) {
            case OPEN:
              C next = domain.next(endpoint);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top