Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 890 for incremented (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. guava-testlib/src/com/google/common/testing/FakeTicker.java

        checkArgument(autoIncrementStep >= 0, "May not auto-increment by a negative amount");
        this.autoIncrementStepNanos = timeUnit.toNanos(autoIncrementStep);
        return this;
      }
    
      /**
       * Sets the increment applied to the ticker whenever it is queried.
       *
       * <p>The default behavior is to auto increment by zero. i.e: The ticker is left unchanged when
       * queried.
       *
       * @since 28.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 14:40:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compilation_cache.h

      };
    
      // Returns std::nullopt if value for the supplied key is not found. If a value
      // is found, `request_count` is incremented before returning the value.
      std::optional<Value> Lookup(const Key& key) const;
    
      // Inserts an empty value if value is not found and returns it. If a value is
      // found, `request_count` is incremented before returning the value.
      Value LookupOrCreate(const Key& key);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/test_matchers.h

      return testing::ExplainMatchResult(
          testing::IsTrue(), is_ok || graph_analysis_failure, result_listener);
    }
    
    MATCHER_P2(IncrementedOrFiltered, metric, value,
               "Metric was incremented by value or Status equal to the Graph "
               "Analysis failure") {
      auto graph_analysis_failure = WasGraphAnalysisFailure(arg);
      if (graph_analysis_failure) {
        return testing::ExplainMatchResult(testing::IsTrue(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/FakeTicker.java

        checkArgument(autoIncrementStep >= 0, "May not auto-increment by a negative amount");
        this.autoIncrementStepNanos = timeUnit.toNanos(autoIncrementStep);
        return this;
      }
    
      /**
       * Sets the increment applied to the ticker whenever it is queried.
       *
       * <p>The default behavior is to auto increment by zero. i.e: The ticker is left unchanged when
       * queried.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    // totally public telemetry data.
    //
    // There are two kinds of counters, basic counters and stack counters.
    // Basic counters are created by [New].
    // Stack counters are created by [NewStack].
    // Both are incremented by calling Inc().
    //
    // Basic counters are very cheap. Stack counters are more expensive, as they
    // require parsing the stack. (Stack counters are implemented as basic counters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top