Home
last modified time | relevance | path

Searched refs:factor (Results 1 – 25 of 86) sorted by relevance

1234

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSamplingHandler.php46 protected $factor; variable in Monolog\\Handler\\SamplingHandler
52 …* @param int $factor Sample factor (e.g. 10 means every ~10th record is sam…
54 public function __construct($handler, int $factor) argument
58 $this->factor = $factor;
72 if ($this->isHandling($record) && mt_rand(1, $this->factor) === 1) {
/plugin/structstatus/
H A Dstyle.less19 @factor: 1.4;
21 font-size: (100% * @factor);
30 width: (14px * @factor);
31 height: (14px * @factor);
/plugin/twofactor/lang/en/
H A Dadmin.txt3 The table below lists all users that have at least one second factor mechanism set up for use. You can use this tool to reset the user's setup when they lost access to their second factor mechanism.
5 Note: this will reset **all** two-factor mechanisms for the user! Depending on your setup, the user may be required to configure a new two factor mechanism on their next login.
H A Doptout.txt1 This wiki has the ability to use two-factor authentication. It is highly recommended using it by configuring one or more of the mechanisms below.
3 However, if you don't want to use this option, you can opt out below. You can always re-enable two-factor authentication later.
H A Dlogin.txt3 Please provide your second factor data below to complete your login.
H A Dresendpwd.txt3 Please provide your second factor data below to reset your password.
H A Dmandatory.txt1 This wiki requires the use of two-factor authentication. You always need to have at least one of the mechanisms available below configured before you can use the wiki.
H A Dprofile.txt3 This is where you can configure what you want to use as a second factor besides your usual credentials when logging into DokuWiki. What options are available depends on what your administrator has configured.
H A Doptin.txt1 This wiki has the ability to use two-factor authentication. It is highly recommended using it by configuring one or more of the mechanisms below.
/plugin/authgooglesheets/vendor/google/apiclient/src/Task/
H A DRunner.php46 private $factor = 2; variable in Google\\Task\\Runner
130 $this->factor = $config['factor'];
244 $factor = $this->attempts > 1 ? $this->factor + $jitter : 1 + abs($jitter);
246 return $this->delay = min($this->maxDelay, $this->delay * $factor);
/plugin/structtasks/meta/
H A DAbstractNotifier.php72 $factor = ($today < $date) ? 1 : -1;
73 return [$factor * $diff->y, $factor * $diff->m, $factor * $diff->d];
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DDateHistogram.php78 * @param int $factor set to 1000 if date is stored in seconds rather than milliseconds
82 public function setFactor(int $factor): self argument
84 return $this->setParam('factor', $factor);
/plugin/authyubikey/
H A Dplugin.info.txt5 name Plain Auth Plugin with Yubikey's two factor identifiction via OTP
6 …tication against DokuWiki's local password storage combined with the two factor identification pro…
H A DREADME.md3 This plugin is written for Dokuwiki to enable a two factor authentification.
/plugin/podcast/
H A Dhelper.php87 $factor = floor((strlen($bytes) - 1) / 3);
88 return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor];
/plugin/codemirror/dist/modes/
H A Dfactor.min.js.map1factor/factor.js"],"names":["mod","exports","module","require","define","amd","CodeMirror","define…
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DFunctionScore.php121 * @param float|null $weight optional factor by which to multiply the score at the value provided by the $scale parameter
163 ?float $factor = null, argument
173 if (null !== $factor) {
174 $functionParams['factor'] = $factor;
/plugin/stlviewer/stlviewer/
H A DTrackballControls.js196 var factor;
200 factor = _touchZoomDistanceStart / _touchZoomDistanceEnd;
202 _eye.multiplyScalar( factor );
206 factor = 1.0 + ( _zoomEnd.y - _zoomStart.y ) * _this.zoomSpeed;
208 if ( factor !== 1.0 && factor > 0.0 ) {
210 _eye.multiplyScalar( factor );
/plugin/gil/
H A Dsyntax.php214 $factor= $matches[1];
215 $ans= floatval($factor);
H A DChangeLog20 * syntax.php: (add) Basic form of caching for conversion factor.
/plugin/twofactor/
H A Dplugin.info.txt6 desc Creates a two factor authentication mechanism
/plugin/sequencediagram/bower_components/js-sequence-diagrams/src/
H A Dtheme.js96 var factor = Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1)) / 25;
103 var xfactor = Math.random() > 0.5 ? factor : -factor;
104 var yfactor = Math.random() > 0.5 ? factor : -factor;
/plugin/authgoogle2fa/
H A DREADME.md13 * Whether you want to enable two-factor authentication or not...
/plugin/authyubikey/lib/
H A DREADME55 There is also a complete example site that demonstrates one-factor and
56 two-factor mode. It requires a database to store the username and
/plugin/swiftmail/Swift/Message/
H A DEncoder.php451 protected function getHcf($value, $factor) argument
453 return ($value - ($value % $factor));

1234