Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for hilite (0.1 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          }
          return r;
        }});
    
      render();
    
      // Helper functions follow:
    
      // hilite changes the highlighting of elements corresponding to specified src.
      function hilite(src, on) {
        if (on) {
          matches.add(src);
        } else {
          matches.delete(src);
        }
        toggleClass(src, 'hilite', on);
        return true;
      }
    
      // Display action menu (triggered by right-click on a frame)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      function setNodeHighlight(n, set) {
        if (options && options.hiliter) return options.hiliter(n, set);
    
        const elem = document.getElementById('node' + n);
        if (!elem) return false;
    
        // Handle table row highlighting.
        if (elem.nodeName == 'TR') {
          elem.classList.toggle('hilite', set);
          return true;
        }
    
        // Handle svg element highlighting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.h"
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h"
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/stablehlo_util.h"
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.h"
    #include "tensorflow/compiler/mlir/lite/tf_tfl_passes.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

    #include "tensorflow/compiler/mlir/lite/common/tfl_pass_config.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export_flags.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h"
    #include "tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/math/Stats.java

       * is not guaranteed to return zero when the dataset consists of the same value multiple times,
       * due to numerical errors. However, it is guaranteed never to return a negative result.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains any non-finite values ({@link Double#POSITIVE_INFINITY}, {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

       *
       * <p>This is guaranteed to return zero if the dataset contains a single pair of finite values. It
       * is not guaranteed to return zero when the dataset consists of the same pair of values multiple
       * times, due to numerical errors.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains any non-finite values ({@link Double#POSITIVE_INFINITY}, {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    #include "tensorflow/compiler/mlir/lite/utils/lstm_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/nms_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/perception_ops_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/tftext_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/math/big/float.go

    func (x *Float) validate0() string {
    	if x.form != finite {
    		return ""
    	}
    	m := len(x.mant)
    	if m == 0 {
    		return "nonzero finite number with empty mantissa"
    	}
    	const msb = 1 << (_W - 1)
    	if x.mant[m-1]&msb == 0 {
    		return fmt.Sprintf("msb not set in last word %#x of %s", x.mant[m-1], x.Text('p', 0))
    	}
    	if x.prec == 0 {
    		return "zero precision finite number"
    	}
    	return ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/PairedStats.java

       *
       * <p>This is guaranteed to return zero if the dataset contains a single pair of finite values. It
       * is not guaranteed to return zero when the dataset consists of the same pair of values multiple
       * times, due to numerical errors.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains any non-finite values ({@link Double#POSITIVE_INFINITY}, {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/DoubleMath.java

      public static int log2(double x, RoundingMode mode) {
        checkArgument(x > 0.0 && isFinite(x), "x must be positive and finite");
        int exponent = getExponent(x);
        if (!isNormal(x)) {
          return log2(x * IMPLICIT_BIT, mode) - SIGNIFICAND_BITS;
          // Do the calculation on a normal value.
        }
        // x is positive, finite, and normal
        boolean increment;
        switch (mode) {
          case UNNECESSARY:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top