Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,072 for incremented (0.19 sec)

  1. android/guava/src/com/google/common/cache/CacheStats.java

       * This is usually incremented in conjunction with {@link #missCount}, though {@code missCount} is
       * also incremented when an exception is encountered during cache loading (see {@link
       * #loadExceptionCount}). Multiple concurrent misses for the same key will result in a single load
       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheStats.java

       * This is usually incremented in conjunction with {@link #missCount}, though {@code missCount} is
       * also incremented when an exception is encountered during cache loading (see {@link
       * #loadExceptionCount}). Multiple concurrent misses for the same key will result in a single load
       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

     * message bus adds too much overhead.
     */
    public abstract class KotlinModificationTrackerFactory : KotlinPlatformComponent {
        /**
         * Creates an out-of-block modification tracker which is incremented every time there is an out-of-block change in some source project
         * module.
         *
         * ### Out-of-block Modification (OOBM)
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/metrics.h

    // incremented when a SavedModel has been successfully written.
    monitoring::CounterCell& SavedModelWriteCount(absl::string_view write_version);
    
    // Returns "/tensorflow/core/saved_model/read/count" cell. This metric
    // has 1 field "write_version", which is equal to the
    // `tensorflow::libexport::GetWriteVersion` of the protobuf, and should be
    // incremented when a SavedModel has been successfully read.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/pilot.libsonnet

      + g.util.grid.makeGrid([
        row.new('Push Information')
        + row.withPanels([
          panels.timeSeries.xdsPushes(
            'XDS Pushes', queries.xdsPushes, |||
              Rate of XDS push operations, by type. This is incremented on a per-proxy basis.
            |||
          ),
          panels.timeSeries.base(
            'Events', queries.pilotEvents, |||
              Size of each xDS push.
            |||
          ),
          panels.timeSeries.base(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    // info, the "flag:"+flagName counter will be incremented.
    //
    // CountCommandLineFlags must be called after flags are parsed
    // with flag.Parse.
    //
    // For instance, if the -S flag is passed to cmd/compile and
    // CountCommandLineFlags is called after flags are parsed,
    // the "compile/flag:S" counter will be incremented.
    func CountCommandLineFlags() {
    	prefix := "flag:"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. releasenotes/notes/30838.yaml

      After a timeout configured by `PILOT_REMOTE_CLUSTER_TIMEOUT` (default 30s), istiod will become ready without
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 16 18:31:07 UTC 2021
    - 429 bytes
    - Viewed (0)
  8. src/runtime/panicnil_test.go

    			panic(e)
    		}
    		metrics.Read(s)
    		v2 := s[0].Value.Uint64()
    		if want == nil {
    			if v2 != v1+1 {
    				t.Errorf("recover() with panicnil=1 did not increment metric %s", name)
    			}
    		} else {
    			if v2 != v1 {
    				t.Errorf("recover() with panicnil=0 incremented metric %s: %d -> %d", name, v1, v2)
    			}
    		}
    	}()
    	panic(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:26:43 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_experimental_reader.h

    //
    // The code under test will have created streamz counters like this:
    // auto* streamz = tensorflow::monitoring::Counter<1>::New("name",
    // "description", "label");
    // and then incremented that counter for various values of label:
    // streamz->GetCell("label-value")->IncrementBy(1);
    //
    // The test code can then read and test the value of that counter:
    //
    // auto* reader = TFE_MonitoringNewCounterReader("name");
    // test();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 20 03:14:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientTest.groovy

            given:
            def client = client(workerDaemonProcess)
    
            when:
            client.execute(spec())
    
            then:
            1 * workerDaemonProcess.run(_)
        }
    
        def "use count is incremented when client is executed"() {
            given:
            def client = client()
            assert client.uses == 0
    
            when:
            5.times { client.execute(spec()) }
    
            then:
            client.uses == 5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top