Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,604 for pcount (0.12 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    	} LsarTrustInformation;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTrustInformation *domains;
    		uint32_t max_count;
    	} LsarRefDomainList;
    
    	typedef struct {
    		uint16_t sid_type;
    		unicode_string name;
    		uint32_t sid_index;
    	} LsarTranslatedName;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTranslatedName *names;
    	} LsarTransNameArray;
    
    	[op(0x00)]
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    	} LsarTrustInformation;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTrustInformation *domains;
    		uint32_t max_count;
    	} LsarRefDomainList;
    
    	typedef struct {
    		uint16_t sid_type;
    		unicode_string name;
    		uint32_t sid_index;
    	} LsarTranslatedName;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTranslatedName *names;
    	} LsarTransNameArray;
    
    	[op(0x00)]
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/base/timings.go

    }
    
    type timestamp struct {
    	time  time.Time
    	label string
    	start bool
    }
    
    type event struct {
    	size int64  // count or amount of data processed (allocations, data size, lines, funcs, ...)
    	unit string // unit of size measure (count, MB, lines, funcs, ...)
    }
    
    func (t *Timings) append(labels []string, start bool) {
    	t.list = append(t.list, timestamp{time.Now(), strings.Join(labels, ":"), start})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/generator/DependencyTreeTest.groovy

            then:
            tree.getTransitiveChildClassIds(168) == [159, 163, 167, 51, 103, 155, 12, 64, 116]
        }
    
        private static int amount(int count, int level) {
            if (level == 0) {
                return 0
            }
            Math.pow(count, level) + amount(count, level - 1)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/main/assemblies/extension/kibana/fess_log.ndjson

    {"attributes":{"fields":"[{\"name\":\"_id\",\"type\":\"string\",\"esTypes\":[\"_id\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"name\":\"_index\",\"type\":\"string\",\"esTypes\":[\"_index\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"name\":\"_score\",\"type\":\"number\",\"count\":0,\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":fal...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

       * becomes {@code count}.
       *
       * @return the count of {@code element} in the multiset before this call
       * @throws IllegalArgumentException if {@code count} is negative
       */
      @CanIgnoreReturnValue
      @Override
      public int setCount(E element, int count) {
        checkNotNull(element);
        checkNonnegative(count, "count");
        while (true) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    			tpCounts[pair] = count
    		}
    		tpCountsByNode[i] = tpCounts
    	}
    	pl.parallelizer.Until(ctx, len(allNodes), processNode, pl.Name())
    
    	for _, tpCounts := range tpCountsByNode {
    		for tp, count := range tpCounts {
    			s.TpPairToMatchNum[tp] += count
    		}
    	}
    	s.TpKeyToDomainsNum = make(map[string]int, len(constraints))
    	for tp := range s.TpPairToMatchNum {
    		s.TpKeyToDomainsNum[tp.key]++
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/replica_calculator.go

    	return replicaCount, usage, timestamp, err
    }
    
    // getUsageRatioReplicaCount calculates the desired replica count based on usageRatio and ready pods count.
    // For currentReplicas=0 doesn't take into account ready pods count and tolerance to support scaling to zero pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/gc.go

    	// and check again.
    	time.Sleep(30 * time.Millisecond)
    	var fail bool
    	for i := range count {
    		if atomic.LoadInt64(&count[i]) == 0 {
    			fail = true
    		}
    	}
    	if fail {
    		time.Sleep(1 * time.Second)
    		for i := range count {
    			if atomic.LoadInt64(&count[i]) == 0 {
    				fmt.Printf("goroutine %d did not run\n", i)
    				return
    			}
    		}
    	}
    	fmt.Println("OK")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  10. test/fixedbugs/bug449.go

    	program = strings.Replace(program, "$CALLS", calls.String(), 1)
    	fmt.Print(program)
    }
    
    var program = `package main
    
    var count int
    
    func call(f func() bool) {
    	if f() {
    		count++
    	}
    }
    
    $DECLS
    
    func main() {
    	$CALLS
    	if count != 0 {
    		println("failed", count, "case(s)")
    	}
    }
    `
    
    const decl = `
    type T$ [$]uint8
    func test$() bool {
    	v := T${1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 01 03:02:46 UTC 2012
    - 1.5K bytes
    - Viewed (0)
Back to top