Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 578 for incremented (0.2 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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top