Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 273 for _ecounters (0.15 sec)

  1. src/runtime/coverage/coverage.go

    }
    
    // ClearCounters clears/resets all coverage counter variables in the
    // currently running program. It returns an error if the program in
    // question was not built with the "-cover" flag. Clearing of coverage
    // counters is also not supported for programs not using atomic
    // counter mode (see more detailed comments below for the rationale
    // here).
    func ClearCounters() error {
    	return cfile.ClearCounters()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/internal/chacha8rand/chacha8_generic.go

    // produces 992 bytes of RNG output, plus 32 bytes of input for the next
    // iteration.
    //
    // The 32 bytes of input are used as a ChaCha8 key, with a zero nonce, to
    // produce 1024 bytes of output (16 blocks, with counters 0 to 15).
    // First, for each block, the values 0x61707865, 0x3320646e, 0x79622d32,
    // 0x6b206574 are subtracted from the 32-bit little-endian words at
    // position 0, 1, 2, and 3 respectively, and an increasing counter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    longer active by looking at their metadata.
    
    Second phase. Group the inactive count files by their expiry date, and
    for each date generate the local report and the upload report. (The upload
    report only contains the counters in the upload configuration.) The upload
    report is saved in the local directory with a name like YYYY-MM-DD.json, if
    there is no file already existing with that name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/ipam/cidrset/cidr_set.go

    	begin, end, err := s.getBeginningAndEndIndices(cidr)
    	if err != nil {
    		return err
    	}
    	s.Lock()
    	defer s.Unlock()
    	for i := begin; i <= end; i++ {
    		// Only change the counters if we change the bit to prevent
    		// double counting.
    		if s.used.Bit(i) != 0 {
    			s.used.SetBit(&s.used, i, 0)
    			s.allocatedCIDRs--
    			cidrSetReleases.WithLabelValues(s.label).Inc()
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/codegen.h

      // If true, generate program shape data for the ProgramShape method.
      bool gen_program_shape = false;
    
      // If true, emit a serialized HloProfilePrinterData protobuf that can be used
      // to pretty print HLO profile counters.
      bool gen_hlo_profile_printer_data = false;
    
      // If true, sets this executable as an XLA Runtime one.
      bool use_xla_runtime = false;
    };
    
    // Describes a generated metadata object file.
    struct MetadataResult {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 01 22:03:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/internal/cov/covcmd/cmddefs.go

    	// Instrumentation strategy. For now this is always set to
    	// "normal", but in the future we may add new values (for example,
    	// if panic paths are instrumented, or if the instrumenter
    	// eliminates redundant counters).
    	Strategy string
    
    	// Prefix assigned to the names of counter variables generated
    	// during instrumentation by cmd/cover.
    	CounterPrefix string
    
    	// Name chosen for the package ID variable generated during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. pkg/kubelet/winstats/perfcounter_nodestats_test.go

    		newValue := p.convertCPUValue(cpuCores, tc.cpuValue)
    		assert.Equal(t, tc.expected, newValue)
    	}
    }
    
    func TestGetCPUUsageNanoCores(t *testing.T) {
    	// Scaled expected unit test values by the frequency the CPU perf counters are polled.
    	perfCounterUpdatePeriodSeconds := uint64(perfCounterUpdatePeriod / time.Second)
    	testCases := []struct {
    		latestValue   uint64
    		previousValue uint64
    		expected      uint64
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. pkg/kubelet/winstats/perfcounters.go

    )
    
    const (
    	cpuQuery                  = "\\Processor(_Total)\\% Processor Time"
    	memoryPrivWorkingSetQuery = "\\Process(_Total)\\Working Set - Private"
    	memoryCommittedBytesQuery = "\\Memory\\Committed Bytes"
    	// Perf counters are updated 10 seconds. This is the same as the default cadvisor housekeeping interval
    	// set at https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/cadvisor/cadvisor_linux.go
    	perfCounterUpdatePeriod = 10 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 19:13:24 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/CacheStats.java

     *
     * <p>Cache statistics are incremented according to the following rules:
     *
     * <ul>
     *   <li>When a cache lookup encounters an existing cache entry {@code hitCount} is incremented.
     *   <li>When a cache lookup first encounters a missing cache entry, a new entry is loaded.
     *       <ul>
     *         <li>After successfully loading an entry {@code missCount} and {@code loadSuccessCount}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheStats.java

     *
     * <p>Cache statistics are incremented according to the following rules:
     *
     * <ul>
     *   <li>When a cache lookup encounters an existing cache entry {@code hitCount} is incremented.
     *   <li>When a cache lookup first encounters a missing cache entry, a new entry is loaded.
     *       <ul>
     *         <li>After successfully loading an entry {@code missCount} and {@code loadSuccessCount}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
Back to top