Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,169 for pcount (0.12 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/MultisetForEachEntryTester.java

        List<Entry<E>> expected = new ArrayList<>(getMultiset().entrySet());
        List<Entry<E>> actual = new ArrayList<>();
        getMultiset()
            .forEachEntry((element, count) -> actual.add(Multisets.immutableEntry(element, count)));
        Helpers.assertEqualIgnoringOrder(expected, actual);
      }
    
      @CollectionFeature.Require(KNOWN_ORDER)
      public void testForEachEntryOrdered() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractDecoder.java

            if (readBoolean()) {
                return readString();
            } else {
                return null;
            }
        }
    
        @Override
        public void skipBytes(long count) throws EOFException, IOException {
            long remaining = count;
            while (remaining > 0) {
                long skipped = maybeSkip(remaining);
                if (skipped <= 0) {
                    break;
                }
                remaining -= skipped;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. docs/tr/docs/fastapi-people.md

    <div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Cevaplar: {{ user.answers }}</div><div class="count">Pull Request'ler: {{ user.prs }}</div></div>
    {% endfor %}
    
    </div>
    {% endif %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. cmd/site-replication-metrics.go

    	hourTotals := rt.LastHour.getTotal()
    	return madmin.TimedErrStats{
    		LastMinute: madmin.RStat{
    			Count: float64(minuteTotals.N),
    			Bytes: minuteTotals.Size,
    		},
    		LastHour: madmin.RStat{
    			Count: float64(hourTotals.N),
    			Bytes: hourTotals.Size,
    		},
    		Totals: madmin.RStat{
    			Count: float64(rt.SinceUptime.Count),
    			Bytes: rt.SinceUptime.Bytes,
    		},
    		ErrCounts: errCounts,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    	//   an avoid introducing additional latency for almost every single request.
    	if watchCount >= int(e.config.WatchesPerSeat) {
    		// TODO: As described in the KEP, we should take into account that not all
    		//   events are equal and try to estimate the cost of a single event based on
    		//   some historical data about size of events.
    		finalSeats = uint64(math.Ceil(float64(watchCount) / e.config.WatchesPerSeat))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. test/fixedbugs/issue33555.go

    //go:noinline
    func f%d() int {
    	return 0
    }
    `
    
    const count = 400
    
    func main() {
    	if err := test(); err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    }
    
    func test() error {
    	var buf bytes.Buffer
    	buf.WriteString(start)
    	for i := 0; i < count; i++ {
    		fmt.Fprintf(&buf, fn, i, i + 1)
    	}
    	fmt.Fprintf(&buf, fnlast, count)
    
    	dir, err := ioutil.TempDir("", "issue33555")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/numa_info.go

    	// This should never happen, but just in case make sure we do not divide by zero.
    	if bm.Count() == 0 {
    		return 0
    	}
    
    	var count float64 = 0
    	var sum float64 = 0
    	for _, node1 := range bm.GetBits() {
    		for _, node2 := range bm.GetBits() {
    			sum += float64(d[node1][node2])
    			count++
    		}
    	}
    
    	return sum / count
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/compilerapi/deps/DependentSetSerializer.java

            int count = decoder.readSmallInt();
            for (int i = 0; i < count; i++) {
                privateBuilder.add(nameSerializer.read(decoder));
            }
    
            ImmutableSet.Builder<String> accessibleBuilder = ImmutableSet.builder();
            count = decoder.readSmallInt();
            for (int i = 0; i < count; i++) {
                accessibleBuilder.add(nameSerializer.read(decoder));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomDomParser.java

                } else if (len == 0) {
                    return 0;
                }
    
                int nbrBytesCopied = 0;
    
                if (count < prefix.length) {
                    int nbrBytesFromPrefix = Math.min(prefix.length - count, len);
                    System.arraycopy(prefix, count, b, off, nbrBytesFromPrefix);
                    nbrBytesCopied = nbrBytesFromPrefix;
                }
    
                if (nbrBytesCopied < len) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. pkg/queue/delay_test.go

    	dq := NewDelayed()
    	stop := make(chan struct{})
    	defer close(stop)
    	go dq.Run(stop)
    
    	count := 0
    	done := make(chan struct{})
    	dq.PushDelayed(func() error {
    		count++
    		if count == maxTaskRetry+1 {
    			close(done)
    		}
    		return fmt.Errorf("error count %d", count)
    	}, 200*time.Millisecond)
    
    	select {
    	case <-time.After(500 * time.Millisecond):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top