Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for isChan (1.83 sec)

  1. pkg/ctrlz/assets/static/js/popper-1.12.9.min.js

    updateBound)}),t.updateBound=null,t.scrollParents=[],t.scrollElement=null,t.eventsEnabled=!1,t}function R(){this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=M(this.reference,this.state))}function U(e){return''!==e&&!isNaN(parseFloat(e))&&isFinite(e)}function Y(e,t){Object.keys(t).forEach(function(o){var i='';-1!==['width','height','top','right','bottom','left'].indexOf(o)&&U(t[o])&&(i='px'),e.style[o]=t[o]+i})}function j(e,t){Object.keys(t).forEach(function(o){var ...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/Quantiles.java

        }
      }
    
      /** Returns whether any of the values in {@code dataset} are {@code NaN}. */
      private static boolean containsNaN(double... dataset) {
        for (double value : dataset) {
          if (Double.isNaN(value)) {
            return true;
          }
        }
        return false;
      }
    
      /**
       * Returns a value a fraction {@code (remainder / scale)} of the way between {@code lower} and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/popper.min.js

    updateBound)}),t.updateBound=null,t.scrollParents=[],t.scrollElement=null,t.eventsEnabled=!1,t}function U(){this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=R(this.reference,this.state))}function Y(e){return''!==e&&!isNaN(parseFloat(e))&&isFinite(e)}function V(e,t){Object.keys(t).forEach(function(o){var n='';-1!==['width','height','top','right','bottom','left'].indexOf(o)&&Y(t[o])&&(n='px'),e.style[o]=t[o]+n})}function j(e,t){Object.keys(t).forEach(function(o){var ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 20.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/Quantiles.java

        }
      }
    
      /** Returns whether any of the values in {@code dataset} are {@code NaN}. */
      private static boolean containsNaN(double... dataset) {
        for (double value : dataset) {
          if (Double.isNaN(value)) {
            return true;
          }
        }
        return false;
      }
    
      /**
       * Returns a value a fraction {@code (remainder / scale)} of the way between {@code lower} and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. src/encoding/json/encode.go

    	e.Write(b)
    }
    
    type floatEncoder int // number of bits
    
    func (bits floatEncoder) encode(e *encodeState, v reflect.Value, opts encOpts) {
    	f := v.Float()
    	if math.IsInf(f, 0) || math.IsNaN(f) {
    		e.error(&UnsupportedValueError{v, strconv.FormatFloat(f, 'g', -1, int(bits))})
    	}
    
    	// Convert as if by ES6 number to string conversion.
    	// This matches most other JSON generators.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. src/go/constant/value.go

    }
    
    // MakeFloat64 returns the [Float] value for x.
    // If x is -0.0, the result is 0.0.
    // If x is not finite, the result is an [Unknown].
    func MakeFloat64(x float64) Value {
    	if math.IsInf(x, 0) || math.IsNaN(x) {
    		return unknownVal{}
    	}
    	if smallFloat64(x) {
    		return ratVal{newRat().SetFloat64(x + 0)} // convert -0 to 0
    	}
    	return floatVal{newFloat().SetFloat64(x + 0)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	highWatermark float64
    	smoothed      float64
    }
    
    func (stats *seatDemandStats) update(obs fq.IntegratorResults) {
    	stats.highWatermark = obs.Max
    	if obs.Duration <= 0 {
    		return
    	}
    	if math.IsNaN(obs.Deviation) {
    		obs.Deviation = 0
    	}
    	stats.avg = obs.Average
    	stats.stdDev = obs.Deviation
    	envelope := obs.Average + obs.Deviation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
Back to top