Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for nextB (0.14 sec)

  1. android/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)
  2. src/runtime/mheap.go

    		throw("mSpanList.remove")
    	}
    	if list.first == span {
    		list.first = span.next
    	} else {
    		span.prev.next = span.next
    	}
    	if list.last == span {
    		list.last = span.prev
    	} else {
    		span.next.prev = span.prev
    	}
    	span.next = nil
    	span.prev = nil
    	span.list = nil
    }
    
    func (list *mSpanList) isEmpty() bool {
    	return list.first == nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          // also be recursive and create StackOverflowErrors
          future.afterDone();
          // push the current set of listeners onto next
          next = future.clearListeners(next);
          future = null;
          while (next != null) {
            Listener curr = next;
            next = next.next;
            /*
             * requireNonNull is safe because the listener stack never contains TOMBSTONE until after
             * clearListeners.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          // also be recursive and create StackOverflowErrors
          future.afterDone();
          // push the current set of listeners onto next
          next = future.clearListeners(next);
          future = null;
          while (next != null) {
            Listener curr = next;
            next = next.next;
            /*
             * requireNonNull is safe because the listener stack never contains TOMBSTONE until after
             * clearListeners.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. src/fmt/fmt_test.go

    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			_ = Sprintf("%16f", 1.0)
    		}
    	})
    }
    
    func BenchmarkSprintfEmpty(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			_ = Sprintf("")
    		}
    	})
    }
    
    func BenchmarkSprintfString(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			_ = Sprintf("%s", "hello")
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTransportImpl.java

                    CommonServerMessageBlockRequest next = chain.getNext();
                    if ( log.isTraceEnabled() ) {
                        log.trace(
                            String.format("%s costs %d avail %d (%s)", chain.getClass().getName(), cost, this.credits.availablePermits(), this.name));
                    }
                    if ( ( next == null || chain.allowChain(next) ) && totalSize + size < maxSize && this.credits.tryAcquire(cost) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    func (s *regAllocState) addUse(id ID, dist int32, pos src.XPos) {
    	r := s.freeUseRecords
    	if r != nil {
    		s.freeUseRecords = r.next
    	} else {
    		r = &use{}
    	}
    	r.dist = dist
    	r.pos = pos
    	r.next = s.values[id].uses
    	s.values[id].uses = r
    	if r.next != nil && dist > r.next.dist {
    		s.f.Fatalf("uses added in wrong order")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    				// the next sync loop.
    				if err = ctrl.provisionClaim(ctx, claim); err != nil {
    					return err
    				}
    				return nil
    			default:
    				ctrl.eventRecorder.Event(claim, v1.EventTypeNormal, events.FailedBinding, "no persistent volumes available for this claim and no storage class is set")
    			}
    
    			// Mark the claim as Pending and try to find a match in the next
    			// periodic syncClaim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    		// later.
    		size -= 1
    	}
    	l.next, l.mapped = base, base
    	l.end = base + size
    	l.mapMemory = mapMemory
    }
    
    func (l *linearAlloc) alloc(size, align uintptr, sysStat *sysMemStat) unsafe.Pointer {
    	p := alignUp(l.next, align)
    	if p+size > l.end {
    		return nil
    	}
    	l.next = p + size
    	if pEnd := alignUp(l.next-1, physPageSize); pEnd > l.mapped {
    		if l.mapMemory {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf.go

    var elfverneed int
    
    type Elfaux struct {
    	next *Elfaux
    	num  int
    	vers string
    }
    
    type Elflib struct {
    	next *Elflib
    	aux  *Elfaux
    	file string
    }
    
    func addelflib(list **Elflib, file string, vers string) *Elfaux {
    	var lib *Elflib
    
    	for lib = *list; lib != nil; lib = lib.next {
    		if lib.file == file {
    			goto havelib
    		}
    	}
    	lib = new(Elflib)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top