Home
last modified time | relevance | path

Searched refs:allowedValues (Results 1 – 14 of 14) sorted by path

/plugin/authg2fa/
H A DGoogleAuthenticator.php129 $allowedValues = array(6, 4, 3, 1, 0);
130 if (!in_array($paddingCharCount, $allowedValues)) return false;
132 if ($paddingCharCount == $allowedValues[$i] &&
133 …substr($secret, -($allowedValues[$i])) != str_repeat($base32chars[32], $allowedValues[$i])) return…
/plugin/authgoogle2fa/
H A DGoogleAuthenticator.php129 $allowedValues = array(6, 4, 3, 1, 0);
130 if (!in_array($paddingCharCount, $allowedValues)) return false;
132 if ($paddingCharCount == $allowedValues[$i] &&
133 …substr($secret, -($allowedValues[$i])) != str_repeat($base32chars[32], $allowedValues[$i])) return…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/BigQueryDataTransfer/
H A DDataSourceParameter.php26 public $allowedValues; variable in Google\\Service\\BigQueryDataTransfer\\DataSourceParameter
83 public function setAllowedValues($allowedValues) argument
85 $this->allowedValues = $allowedValues;
92 return $this->allowedValues;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudAsset/
H A DGoogleCloudOrgpolicyV1ListPolicy.php30 public $allowedValues; variable in Google\\Service\\CloudAsset\\GoogleCloudOrgpolicyV1ListPolicy
61 public function setAllowedValues($allowedValues) argument
63 $this->allowedValues = $allowedValues;
70 return $this->allowedValues;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudHealthcare/
H A DAttributeDefinition.php26 public $allowedValues; variable in Google\\Service\\CloudHealthcare\\AttributeDefinition
51 public function setAllowedValues($allowedValues) argument
53 $this->allowedValues = $allowedValues;
60 return $this->allowedValues;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Cloudchannel/
H A DGoogleCloudChannelV1ParameterDefinition.php45 public function setAllowedValues($allowedValues) argument
47 $this->allowedValues = $allowedValues;
54 return $this->allowedValues;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataCatalog/
H A DGoogleCloudDatacatalogV1FieldTypeEnumType.php29 public function setAllowedValues($allowedValues) argument
31 $this->allowedValues = $allowedValues;
38 return $this->allowedValues;
H A DGoogleCloudDatacatalogV1beta1FieldTypeEnumType.php29 public function setAllowedValues($allowedValues) argument
31 $this->allowedValues = $allowedValues;
38 return $this->allowedValues;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OrgPolicyAPI/
H A DGoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues.php26 public $allowedValues; variable in Google\\Service\\OrgPolicyAPI\\GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues
35 public function setAllowedValues($allowedValues) argument
37 $this->allowedValues = $allowedValues;
44 return $this->allowedValues;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RemoteBuildExecution/
H A DGoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature.php23 public $allowedValues; variable in Google\\Service\\RemoteBuildExecution\\GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature
26 public function setAllowedValues($allowedValues) argument
28 $this->allowedValues = $allowedValues;
32 return $this->allowedValues;
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Dbundle.js.map1allowedValues, schema = undefined) {\n if (typeof schema !== 'undefined') {\n sc…
/plugin/jspwiki_import/importer/
H A Dgwt.js451 function __gwt_onBadProperty(moduleName, propName, allowedValues, badValue) { argument
453 __gwt_onPropertyError(moduleName, propName, allowedValues, badValue);
464 msg += "\n\nAllowed values: " + allowedValues;
/plugin/s5reloaded/ui/effects_support/
H A Dslider.js64 this.allowedValues = this.options.values ? this.options.values.sortBy(Prototype.K) : false;
65 if (this.allowedValues) {
66 this.minimum = this.allowedValues.min();
67 this.maximum = this.allowedValues.max();
106 if (this.allowedValues){
107 if (value >= this.allowedValues.max()) return(this.allowedValues.max());
108 if (value <= this.allowedValues.min()) return(this.allowedValues.min());
110 var offset = Math.abs(this.allowedValues[0] - value);
111 var newValue = this.allowedValues[0];
112 this.allowedValues.each( function(v) {
/plugin/twofactor/
H A DGoogleAuthenticator.php182 $allowedValues = array(6, 4, 3, 1, 0);
183 if (!in_array($paddingCharCount, $allowedValues)) {
187 if ($paddingCharCount == $allowedValues[$i] &&
188 substr($secret, -($allowedValues[$i])) != str_repeat($base32chars[32], $allowedValues[$i])) {