Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,665 for count1 (0.77 sec)

  1. src/internal/coverage/decodemeta/decodefile.go

    	return r.hdr.Entries
    }
    
    // CounterMode returns the counter mode (set, count, atomic) used
    // when building for coverage for the program that produce this
    // meta-data file.
    func (r *CoverageMetaFileReader) CounterMode() coverage.CounterMode {
    	return r.hdr.CMode
    }
    
    // CounterGranularity returns the counter granularity (single counter per
    // function, or counter per block) selected when building for coverage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 14 22:30:23 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/hello-mount-mtls-certs.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. cluster/validate-cluster.sh

      if [[ ${attempt} -gt 0 ]]; then
        sleep 15
      fi
      attempt=$((attempt+1))
    
      # The "kubectl get nodes -o template" exports node information.
      #
      # Echo the output and gather 2 counts:
      #  - Total number of nodes.
      #  - Number of "ready" nodes.
      #
      # Suppress errors from kubectl output because during cluster bootstrapping
      # for clusters where the master node is registered, the apiserver will become
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  4. pkg/kubelet/winstats/perfcounter_nodestats.go

    		klog.ErrorS(err, "Unable to get cpu perf counter data")
    		return
    	}
    
    	memWorkingSetValue, err := memWorkingSetCounter.getData()
    	if err != nil {
    		klog.ErrorS(err, "Unable to get memWorkingSet perf counter data")
    		return
    	}
    
    	memCommittedBytesValue, err := memCommittedBytesCounter.getData()
    	if err != nil {
    		klog.ErrorS(err, "Unable to get memCommittedBytes perf counter data")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/batch/v1/generated.proto

      //   running pods are terminated.
      // - Ignore: indicates that the counter towards the .backoffLimit is not
      //   incremented and a replacement pod is created.
      // - Count: indicates that the pod is handled in the default way - the
      //   counter towards the .backoffLimit is incremented.
      // Additional values are considered to be added in the future. Clients should
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_ppc64le.s

    	VPMSUMD	V17,const1,V9
    	OR	$0,R2,R2
    
    	VXOR	V2,V10,V2
    	VPMSUMD	V18,const1,V10
    	OR	$0,R2,R2
    
    	VXOR	V3,V11,V3
    	VPMSUMD	V19,const1,V11
    	OR	$0,R2,R2
    
    	VXOR	V4,V12,V4
    	VPMSUMD	V20,const1,V12
    	OR	$0,R2,R2
    
    	VXOR	V5,V13,V5
    	VPMSUMD	V21,const1,V13
    	OR	$0,R2,R2
    
    	VXOR	V6,V14,V6
    	VPMSUMD	V22,const1,V14
    	OR	$0,R2,R2
    
    	VXOR	V7,V15,V7
    	VPMSUMD	V23,const1,V15
    	OR	$0,R2,R2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/bitmap_test.go

    			if f := r.Used(); f != 0 {
    				t.Errorf("[%s]: wrong used: expected %d, got %d", tc.name, 0, f)
    			}
    			found := sets.NewString()
    			count := 0
    			for r.Free() > 0 {
    				ip, err := r.AllocateNext()
    				if err != nil {
    					t.Fatalf("[%s] error @ %d: %v", tc.name, count, err)
    				}
    				count++
    				if !cidr.Contains(ip) {
    					t.Fatalf("[%s] allocated %s which is outside of %s", tc.name, ip, cidr)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  8. test/if.go

    	count = 0
    	if i5 < i7 {
    		count = count + 1
    	}
    	assertequal(count, 1, "if cond")
    
    	count = 0
    	if true {
    		count = count + 1
    	} else {
    		count = count - 1
    	}
    	assertequal(count, 1, "if else true")
    
    	count = 0
    	if false {
    		count = count + 1
    	} else {
    		count = count - 1
    	}
    	assertequal(count, -1, "if else false")
    
    	count = 0
    	if t := 1; false {
    		count = count + 1
    		_ = t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/cover/cover_test.go

    		t.Fatal(err)
    	}
    
    	// testcover -mode=count -var=thisNameMustBeVeryLongToCauseOverflowOfCounterIncrementStatementOntoNextLineForTest -o ./testdata/test_cover.go testdata/test_line.go
    	coverOutput := filepath.Join(dir, "test_cover.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. src/encoding/xml/example_text_marshaling_test.go

    		log.Fatal(err)
    	}
    
    	counts := make(map[Size]int)
    	for _, size := range inventory.Sizes {
    		counts[size] += 1
    	}
    
    	fmt.Printf("Inventory Counts:\n* Small:        %d\n* Large:        %d\n* Unrecognized: %d\n",
    		counts[Small], counts[Large], counts[Unrecognized])
    
    	// Output:
    	// Inventory Counts:
    	// * Small:        3
    	// * Large:        2
    	// * Unrecognized: 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 14:18:06 UTC 2018
    - 1.4K bytes
    - Viewed (0)
Back to top