Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,559 for pcount (0.13 sec)

  1. guava/src/com/google/common/collect/Multisets.java

          implements Serializable {
        @ParametricNullness private final E element;
        private final int count;
    
        ImmutableEntry(@ParametricNullness E element, int count) {
          this.element = element;
          this.count = count;
          checkNonnegative(count, "count");
        }
    
        @Override
        @ParametricNullness
        public final E getElement() {
          return element;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. tests/associations_has_many_test.go

    	CheckPet(t, pets[0], *user.Pets[0])
    
    	if count := DB.Model(&user).Where("name = ?", user.Pets[1].Name).Association("Pets").Count(); count != 1 {
    		t.Fatalf("should only find one pets, but got %v", count)
    	}
    
    	if count := DB.Model(&user).Where("name = ?", "not found").Association("Pets").Count(); count != 0 {
    		t.Fatalf("should only find no pet with invalid conditions, but got %v", count)
    	}
    
    	// Count
    	AssertAssociationCount(t, user, "Pets", 2, "")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/math/big/ratconv.go

    	// on the actual floating-point value.
    
    	// determine binary or decimal exponent contribution of radix point
    	var exp2, exp5 int64
    	if fcount < 0 {
    		// The mantissa has a radix point ddd.dddd; and
    		// -fcount is the number of digits to the right
    		// of '.'. Adjust relevant exponent accordingly.
    		d := int64(fcount)
    		switch base {
    		case 10:
    			exp5 = d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    				}
    				for plName, hr, nCount := cts.popHeldRequest(); hr != nil; plName, hr, nCount = cts.popHeldRequest() {
    					desired := desiredPLNames.Has(plName) || mandPLs[plName] != nil
    					if testDebugLogs {
    						t.Logf("Releasing held request %#+v, desired=%v, plName=%s, count:=%d", hr.rd, desired, plName, nCount)
    					}
    					close(hr.finishCh)
    				}
    				cts.requestWG.Wait()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. tests/associations_many2many_test.go

    	}
    
    	count := 3
    
    	var languages []Language
    	for i := 0; i < count; i++ {
    		language := Language{Code: fmt.Sprintf("consurrent %d", i)}
    		db.Create(&language)
    		languages = append(languages, language)
    	}
    
    	user := User{}
    	db.Create(&user)
    	db.Preload("Languages").FirstOrCreate(&user)
    
    	var wg sync.WaitGroup
    	for i := 0; i < count; i++ {
    		wg.Add(1)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Jun 10 13:05:19 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. src/runtime/metrics/description.go

    	// "byte*cpu-seconds", and "bytes/second/second".
    	//
    	// For histograms, multiple units may apply. For instance, the units of the buckets and
    	// the count. By convention, for histograms, the units of the count are always "samples"
    	// with the type of sample evident by the metric's name, while the unit in the name
    	// specifies the buckets' unit.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. src/runtime/metrics_test.go

    			for i := range objects.alloc.Counts {
    				if objects.alloc.Counts[i] < objects.free.Counts[i] {
    					t.Errorf("found more allocs than frees in object dist bucket %d", i)
    					continue
    				}
    				gotAlloc += objects.alloc.Counts[i]
    				gotFree += objects.free.Counts[i]
    			}
    			if got := gotAlloc - gotFree; got != want {
    				t.Errorf("object distribution counts don't match count of live objects: got %d, want %d", got, want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			maxVols:      3,
    			test:         "new pod's count considers PVCs backed by AzureDisk volumes",
    		},
    		{
    			newPod:       splitPVCPod(azureDiskVolumeFilterType),
    			existingPods: []*v1.Pod{splitAzureDiskPod, oneAzureDiskPod},
    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      3,
    			test:         "new pod's count ignores PVCs not backed by AzureDisk volumes",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof.go

    	count: countThreadCreate,
    	write: writeThreadCreate,
    }
    
    var heapProfile = &Profile{
    	name:  "heap",
    	count: countHeap,
    	write: writeHeap,
    }
    
    var allocsProfile = &Profile{
    	name:  "allocs",
    	count: countHeap, // identical to heap profile
    	write: writeAlloc,
    }
    
    var blockProfile = &Profile{
    	name:  "block",
    	count: countBlock,
    	write: writeBlock,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/scoring.go

    			// continue to avoid unnecessary calculation.
    			// Per-node counts are also skipped, as they are done during Score.
    			tpCount := state.TopologyPairToPodCounts[pair]
    			if tpCount == nil {
    				continue
    			}
    			count := countPodsMatchSelector(nodeInfo.Pods, c.Selector, pod.Namespace)
    			atomic.AddInt64(tpCount, int64(count))
    		}
    	}
    	pl.parallelizer.Until(ctx, len(allNodes), processAllNode, pl.Name())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top