Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,131 for pcount (0.28 sec)

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

    			continue
    		}
    		debugPrintf("releaseLock %s: unlocked\n", c.name)
    		return
    	}
    }
    
    func (c *Counter) add(n uint64) uint64 {
    	count := c.ptr.count
    	for {
    		old := count.Load()
    		sum := old + n
    		if sum < old {
    			sum = ^uint64(0)
    		}
    		if count.CompareAndSwap(old, sum) {
    			runtime.KeepAlive(c.ptr.m)
    			return sum
    		}
    	}
    }
    
    func (c *Counter) invalidate() {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/clientinput/StdInStream.java

            synchronized (lock) {
                waitForContent();
                if (readPos != buffer.length) {
                    int count = Math.min(length, buffer.length - readPos);
                    System.arraycopy(buffer, readPos, dest, offset, count);
                    readPos += count;
                    return count;
                } else {
                    // Closed
                    return -1;
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. docs/ja/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: Thu Apr 18 19:53:19 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestEventLoggerTest.groovy

            then:
            textOutputFactory.toString().count("PASSED") == 1
    
            when:
            textOutputFactory.clear()
            result.resultType = TestResult.ResultType.FAILURE
            eventLogger.afterTest(methodDescriptor, result)
    
            then:
            textOutputFactory.toString().count("PASSED") == 0
        }
    
        def "logs event if granularity matches"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:45:02 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ThreadFactoryImpl.java

            thread.setContextClassLoader(contextClassloader);
            return thread;
        }
    
        private String nextThreadName() {
            long count = counter.incrementAndGet();
            return count == 1 ? displayName : displayName + " Thread " + count;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. pkg/registry/storage/csinode/strategy_test.go

    				{
    					Name:         "valid-driver-name",
    					NodeID:       "valid-node",
    					TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    					Allocatable:  &storage.VolumeNodeResources{Count: ptr.To[int32](20)},
    				},
    			},
    		},
    	}
    	emptyAllocatable := &storage.CSINode{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "foo",
    		},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

                    testPlugin = plugin;
                }
    
                Integer count = validPluginCounts.get(pluginArtifactId);
    
                assertEquals(0, (int) count, "Multiple copies of plugin: " + pluginArtifactId + " found in POM.");
    
                count = count + 1;
    
                validPluginCounts.put(pluginArtifactId, count);
            }
    
            assertNotNull(testPlugin);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/build.gradle

        }
    
        compileJava.options.fork = true
    
        // force creation of multiple daemons for Java compilation by alternating between two distinct sets of JVM args
        def count = (project.name - "project") as int
        compileJava.options.forkOptions.jvmArgs = count % 2 ? ["-dsa"] : ["-esa"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 388 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access_test.go

    			}
    
    			if tc.expectedQuota != nil {
    				if count := len(quotas); count != 1 {
    					t.Fatalf("Expected 1 object but got %d", count)
    				}
    
    				if !reflect.DeepEqual(quotas[0], *tc.expectedQuota) {
    					t.Errorf("Retrieved object does not match")
    				}
    				return
    			}
    
    			if count := len(quotas); count > 0 {
    				t.Errorf("Expected 0 objects but got %d", count)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. docs/metrics/v3.md

    | `minio_cluster_health_drives_online_count`         | `gauge` | Count of online drives in the cluster          |        |
    | `minio_cluster_health_drives_count`                | `gauge` | Count of all drives in the cluster             |        |
    | `minio_cluster_health_nodes_offline_count`         | `gauge` | Count of offline nodes in the cluster          |        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
Back to top