Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,169 for pcount (0.09 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    The upload process converts count files into reports, and
    uploads reports. There will be only one report, named YYYY-MM-DD.json,
    for a given day.
    
    First phase. Look at the localdir (os.UserConfigdir()/go/telemetry/local)
    and find all .count and .json files. Find the count files that are no
    longer active by looking at their metadata.
    
    Second phase. Group the inactive count files by their expiry date, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/AutobahnTester.kt

      }
    
      fun run() {
        try {
          val count = getTestCount()
          println("Test count: $count")
          for (number in 1..count) {
            runTest(number, count)
          }
          updateReports()
        } finally {
          client.dispatcher.executorService.shutdown()
        }
      }
    
      private fun runTest(
        number: Long,
        count: Long,
      ) {
        val latch = CountDownLatch(1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/histogram.go

    func (h *TimeHistogram) ToHTML(urlmaker func(min, max time.Duration) string) template.HTML {
    	if h == nil || h.Count == 0 {
    		return template.HTML("")
    	}
    
    	const barWidth = 400
    
    	maxCount := 0
    	for _, count := range h.Buckets {
    		if count > maxCount {
    			maxCount = count
    		}
    	}
    
    	w := new(strings.Builder)
    	fmt.Fprintf(w, `<table>`)
    	for i := h.MinBucket; i <= h.MaxBucket; i++ {
    		// Tick label.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:28:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionErrorHandlingIntegrationTest.groovy

            when:
            succeeds "secondTask", "-DfailOn=$failEvent"
            then:
            attemptsBeforeFailure.each { event, count ->
                assert output.count("> Attempting $failEvent") == count
            }
            output.count("Could not $failEvent entry") == 1
            output.count("The remote build cache was disabled during the build due to errors.") == 1
    
            when:
            cleanBuildDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/CountingInputStream.java

      public long getCount() {
        return count;
      }
    
      @Override
      public int read() throws IOException {
        int result = in.read();
        if (result != -1) {
          count++;
        }
        return result;
      }
    
      @Override
      public int read(byte[] b, int off, int len) throws IOException {
        int result = in.read(b, off, len);
        if (result != -1) {
          count += result;
        }
        return result;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. docs/en/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">Answers: {{ user.answers }}</div><div class="count">Pull Requests: {{ 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
    - 8.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionEvent.java

    public class GarbageCollectionEvent {
        private final long timestamp;
        private final MemoryUsage usage;
        private final long count;
    
        public GarbageCollectionEvent(long timestamp, MemoryUsage usage, long count) {
            this.timestamp = timestamp;
            this.usage = usage;
            this.count = count;
        }
    
        public long getTimestamp() {
            return timestamp;
        }
    
        public MemoryUsage getUsage() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. pkg/registry/core/service/allocator/bitmap.go

    	max int
    	// rangeSpec is the range specifier, matching RangeAllocation.Range
    	rangeSpec string
    
    	// lock guards the following members
    	lock sync.Mutex
    	// count is the number of currently allocated elements in the range
    	count int
    	// allocated is a bit array of the allocated items in the range
    	allocated *big.Int
    }
    
    // AllocationBitmap implements Interface and Snapshottable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ConcurrentBuildsArtifactTransformIntegrationTest.groovy

            def result2 = build2.waitForFinish()
    
            then:
            result1.output.count("Transforming") + result2.output.count("Transforming") == 2
            result1.output.count("Transforming thing.jar to Red") + result2.output.count("Transforming thing.jar to Red") == 1
            result1.output.count("Transforming thing.jar to Blue") + result2.output.count("Transforming thing.jar to Blue") == 1
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_chatty_parallel_success.txt

    # multiple parallel outputs have the appropriate test name lines between them.
    go test -parallel 3 chatty_parallel_test.go -v
    stdout -count=2 '^=== (CONT|NAME)  TestChattyParallel/sub-0\n    chatty_parallel_test.go:32: this is sub-0$'
    stdout -count=2 '^=== (CONT|NAME)  TestChattyParallel/sub-1\n    chatty_parallel_test.go:32: this is sub-1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top