Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 273 for _ecounters (0.17 sec)

  1. pkg/kubelet/winstats/network_stats.go

    	packetsOutboundDiscardedQuery = "\\Network Adapter(*)\\Packets Outbound Discarded"
    	packetsOutboundErrorsQuery    = "\\Network Adapter(*)\\Packets Outbound Errors"
    )
    
    // networkCounter contains the counters for network adapters.
    type networkCounter struct {
    	packetsReceivedPerSecondCounter perfCounter
    	packetsSentPerSecondCounter     perfCounter
    	bytesReceivedPerSecondCounter   perfCounter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

                  ++counts;
                }
              }
            }
            if (done) {
              break;
            }
          }
        }
      }
    
      /**
       * Multiple threads using same array of counters successfully update a number of times equal to
       * total count
       */
      public void testCountingInMultipleThreads() throws InterruptedException {
        final AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/c/env.h

    // set to 1, *undeleted_file_count is set to 0 and an appropriate status (e.g.
    // TF_NOT_FOUND) is returned.
    //
    // If dirname and all its descendants were successfully deleted, TF_OK is
    // returned and both error counters are set to zero.
    //
    // Otherwise, while traversing the tree, undeleted_file_count and
    // undeleted_dir_count are updated if an entry of the corresponding type could
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  4. src/text/template/funcs.go

    // and computes the Boolean AND of its arguments, returning
    // the first false argument it encounters, or the last argument.
    func and(arg0 reflect.Value, args ...reflect.Value) reflect.Value {
    	panic("unreachable") // implemented as a special case in evalCall
    }
    
    // or computes the Boolean OR of its arguments, returning
    // the first true argument it encounters, or the last argument.
    func or(arg0 reflect.Value, args ...reflect.Value) reflect.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. src/internal/fuzz/fuzz.go

    	}
    
    	// fuzzCtx is used to stop workers, for example, after finding a crasher.
    	fuzzCtx, cancelWorkers := context.WithCancel(ctx)
    	defer cancelWorkers()
    	doneC := ctx.Done()
    
    	// stop is called when a worker encounters a fatal error.
    	var fuzzErr error
    	stopping := false
    	stop := func(err error) {
    		if shouldPrintDebugInfo() {
    			_, file, line, ok := runtime.Caller(1)
    			if ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

       *
       * <p>Usage example:
       *
       * <pre>{@code
       * // Falling back to a zero counter in case an exception happens when processing the RPC to fetch
       * // counters.
       * ListenableFuture<Integer> faultTolerantFuture =
       *     fetchCounters().catching(FetchException.class, x -> 0, directExecutor());
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/AbstractCache.java

        private static long negativeToMaxValue(long value) {
          return (value >= 0) ? value : Long.MAX_VALUE;
        }
    
        /** Increments all counters by the values in {@code other}. */
        public void incrementBy(StatsCounter other) {
          CacheStats otherStats = other.snapshot();
          hitCount.add(otherStats.hitCount());
          missCount.add(otherStats.missCount());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/FluentFuture.java

       *
       * <p>Usage example:
       *
       * <pre>{@code
       * // Falling back to a zero counter in case an exception happens when processing the RPC to fetch
       * // counters.
       * ListenableFuture<Integer> faultTolerantFuture =
       *     fetchCounters().catching(FetchException.class, x -> 0, directExecutor());
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. src/io/fs/fs.go

    	// in a single slice. In this case, if ReadDir succeeds (reads all the way
    	// to the end of the directory), it returns the slice and a nil error.
    	// If it encounters an error before the end of the directory,
    	// ReadDir returns the DirEntry list read until that point and a non-nil error.
    	ReadDir(n int) ([]DirEntry, error)
    }
    
    // Generic file system errors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    	//
    	// So for now, we use this constant string.
    	const prefix = "crash/crash"
    	return counter.EncodeStack(pcs, prefix), nil
    }
    
    // parseStackPCs parses the parent process's program counters for the
    // first running goroutine out of a GOTRACEBACK=system traceback,
    // adjusting them so that they are valid for the child process's text
    // segment.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top