Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for counter1 (0.15 sec)

  1. src/runtime/map.go

    	buckets    unsafe.Pointer // array of 2^B Buckets. may be nil if count==0.
    	oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
    	nevacuate  uintptr        // progress counter for evacuation (buckets less than this have been evacuated)
    
    	extra *mapextra // optional fields
    }
    
    // mapextra holds fields that are not present on all maps.
    type mapextra struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * always {@code (int) (capacity * 0.75)}.)
         */
        int threshold;
    
        /** The per-segment table. */
        @CheckForNull volatile AtomicReferenceArray<E> table;
    
        /**
         * A counter of the number of reads since the last write, used to drain queues on a small
         * fraction of read operations.
         */
        final AtomicInteger readCount = new AtomicInteger();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}
    
    	cont := out.Continue
    
    	// the second list call should try to get 2 more items from etcd
    	// but since there is only one item left, that is all we should get with no continueValue
    	// both read counters should be incremented for the singular calls they make in this case
    	out = &example.PodList{}
    	options = storage.ListOptions{
    		// ResourceVersion should be unset when setting continuation token.
    		ResourceVersion: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. src/testing/testing.go

    	if t.chatty != nil {
    		t.chatty.Updatef(t.name, "=== CONT  %s\n", t.name)
    	}
    	running.Store(t.name, highPrecisionTimeNow())
    	t.start = highPrecisionTimeNow()
    
    	// Reset the local race counter to ignore any races that happened while this
    	// goroutine was blocked, such as in the parent test or in other parallel
    	// subtests.
    	//
    	// (Note that we don't call parent.checkRaces here:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	special   special
    	done      bool
    	reachable bool
    }
    
    // specialPinCounter tracks whether an object is pinned multiple times.
    type specialPinCounter struct {
    	special special
    	counter uintptr
    }
    
    // specialsIter helps iterate over specials lists.
    type specialsIter struct {
    	pprev **special
    	s     *special
    }
    
    func newSpecialsIter(span *mspan) specialsIter {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		entry, e := direntLeToDirentUnix(&entryLE, d, path)
    		if e != nil {
    			return n, e
    		}
    
    		reclen := int(entry.Reclen)
    		if reclen > len(buf) {
    			// Not enough room. Return for now.
    			// The counter will let us know where we should start up again.
    			// Note: this strategy for suspending in the middle and
    			// restarting is O(n^2) in the length of the directory. Oh well.
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    	AAMOMAXUD & obj.AMask: rIIIEncoding,
    	AAMOMINW & obj.AMask:  rIIIEncoding,
    	AAMOMIND & obj.AMask:  rIIIEncoding,
    	AAMOMINUW & obj.AMask: rIIIEncoding,
    	AAMOMINUD & obj.AMask: rIIIEncoding,
    
    	// 10.1: Base Counters and Timers
    	ARDCYCLE & obj.AMask:   iIEncoding,
    	ARDTIME & obj.AMask:    iIEncoding,
    	ARDINSTRET & obj.AMask: iIEncoding,
    
    	// 11.5: Single-Precision Load and Store Instructions
    	AFLW & obj.AMask: iFEncoding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    profile the tests during execution:
    
    	-benchmem
    	    Print memory allocation statistics for benchmarks.
    	    Allocations made in C or using C.malloc are not counted.
    
    	-blockprofile block.out
    	    Write a goroutine blocking profile to the specified file
    	    when all tests are complete.
    	    Writes test binary as -c would.
    
    	-blockprofilerate n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    	// NB: this restriction may turn out to be too strict (it's possible
    	// to imagine a zero-sized container with an interior symbol pointing
    	// into it); it's ok to relax or remove it if we counter an
    	// oddball host object that triggers this.
    	if l.SymSize(container) == 0 && len(l.Data(container)) == 0 {
    		panic("unexpected empty container symbol")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    		defer t.connsPerHostMu.Unlock()
    		w.cancelCtx = nil
    	}()
    }
    
    // dialConnFor dials on behalf of w and delivers the result to w.
    // dialConnFor has received permission to dial w.cm and is counted in t.connCount[w.cm.key()].
    // If the dial is canceled or unsuccessful, dialConnFor decrements t.connCount[w.cm.key()].
    func (t *Transport) dialConnFor(w *wantConn) {
    	defer w.afterDial()
    	ctx := w.getCtxForDial()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top