Home
last modified time | relevance | path

Searched refs:scriptType (Results 1 – 25 of 182) sorted by relevance

12345678

/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/extension/script/
H A DScriptsCache.java248 private final String scriptType; field in Configuration
254 String scriptType, in Configuration() argument
258 this.scriptType = scriptType; in Configuration()
265 return scriptType; in getScriptType()
297 private String scriptType; field in Configuration.Builder
310 public Builder<T> setScriptType(String scriptType) { in setScriptType() argument
311 this.scriptType = scriptType; in setScriptType()
359 if (scriptType == null || scriptType.isEmpty()) { in build()
372 scriptType, in build()
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/test/java/org/zaproxy/zap/extension/script/
H A DScriptsCacheUnitTest.java58 private String scriptType; field in ScriptsCacheUnitTest
67 scriptType = "ScriptType"; in setUp()
75 .setScriptType(scriptType) in setUp()
97 given(extensionScript.getScripts(scriptType)) in shouldNotCacheDisabledScripts()
115 given(extensionScript.getScripts(scriptType)) in shouldCacheEnabledScripts()
138 given(extensionScript.getScripts(scriptType)) in shouldCacheEnabledScriptsAndIgnoreDisabledScriptsWhenRefreshing()
158 given(extensionScript.getScripts(scriptType)) in shouldNotCacheScriptsNoLongerEnabledWhenRefreshing()
181 given(extensionScript.getScripts(scriptType)) in shouldRefreshCachedScriptIfChanged()
209 given(extensionScript.getScripts(scriptType)) in shouldNotCacheScriptsThatDoNotImplementInterface()
235 given(extensionScript.getScripts(scriptType)) in shouldNotCacheScriptsThatHaveErrors()
[all …]
/dports/games/jin/jin-2.14.1/src/free/jin/scripter/
H A DScripterPreferencesPanel.java94 String scriptType = scriptTypeChooser.askScriptType(); in addScript() local
95 if (scriptType == null) in addScript()
98 ScriptDialog dialog = scriptDialogForType(scriptType, null); in addScript()
124 String scriptType = script.getType(); in editScript() local
125 ScriptDialog dialog = scriptDialogForType(scriptType, script); in editScript()
165 if ("commands".equals(scriptType)) in scriptDialogForType()
167 else if ("beanshell".equals(scriptType)) in scriptDialogForType()
340 private String scriptType; field in ScripterPreferencesPanel.ScriptTypeSelectionDialog
350 scriptType = null;
444 scriptType = selectedModel.getActionCommand(); in createUI()
[all …]
/dports/games/openbve/OpenBVE-1.8.2.1/source/OpenBveApi/FunctionScripts/
H A DCSAnimationScript.cs70 Type scriptType = assembly.GetTypes().FirstOrDefault(t => t.Name == "OpenBVEScript"); in CSAnimationScript()
71 if (scriptType == null) in CSAnimationScript()
74 foreach (var ctor in scriptType.GetConstructors()) { in CSAnimationScript()
76 scriptObject = Activator.CreateInstance(scriptType); in CSAnimationScript()
80 scriptObject = Activator.CreateInstance(scriptType, new object[] { args }); in CSAnimationScript()
87 …foreach (var method in scriptType.GetMethods().Where(m => m.Name == "ExecuteScript" && m.ReturnTyp… in CSAnimationScript()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/titanic/true_talk/
H A Dtt_concept.cpp40 TTconcept::TTconcept(TTscriptBase *script, ScriptType scriptType) : in TTconcept() argument
45 setScriptType(scriptType); in TTconcept()
48 if (scriptType == ST_UNKNOWN_SCRIPT && script->_id == 1) in TTconcept()
56 TTconcept::TTconcept(TTword *word, ScriptType scriptType) : in TTconcept() argument
65 setScriptType(scriptType); in TTconcept()
125 void TTconcept::setScriptType(ScriptType scriptType) { in setScriptType() argument
128 _scriptType = scriptType; in setScriptType()
H A Dtt_concept.h53 void setScriptType(ScriptType scriptType);
80 TTconcept(TTscriptBase *script, ScriptType scriptType);
81 TTconcept(TTword *word, ScriptType scriptType = ST_UNKNOWN_SCRIPT);
/dports/games/scummvm/scummvm-2.5.1/engines/titanic/true_talk/
H A Dtt_concept.cpp40 TTconcept::TTconcept(TTscriptBase *script, ScriptType scriptType) : in TTconcept() argument
45 setScriptType(scriptType); in TTconcept()
48 if (scriptType == ST_UNKNOWN_SCRIPT && script->_id == 1) in TTconcept()
56 TTconcept::TTconcept(TTword *word, ScriptType scriptType) : in TTconcept() argument
65 setScriptType(scriptType); in TTconcept()
125 void TTconcept::setScriptType(ScriptType scriptType) { in setScriptType() argument
128 _scriptType = scriptType; in setScriptType()
/dports/sysutils/terraform-provider-vultr/terraform-provider-vultr-0.1.10/vultr/
H A Dresource_startup_script.go47 var scriptType string
49 scriptType = d.Get("type").(string)
51 scriptType = "boot"
55 script, err := client.CreateStartupScript(name, content, scriptType)
/dports/databases/kexi/kexi-3.2.0/src/plugins/scripting/kexiscripting/
H A Dkexiscriptpart.cpp186 QString scriptType; in loadData() local
202 scriptType = scriptelem.attribute("scripttype"); in loadData()
203 if (scriptType.isEmpty()) { in loadData()
204 scriptType = "executable"; in loadData()
207 if (scriptType == "executable") { in loadData()
H A Dkexiscriptdesignview.cpp89 QString scriptType; member in KexiScriptDesignViewPrivate
270 (d->scriptType.isEmpty() ? "executable" : d->scriptType), // value in updateProperties()
293 d->scriptType = property.value().toString(); in slotPropertyChanged()
362 d->scriptType = scriptelem.attribute("scripttype"); in loadData()
363 if (d->scriptType.isEmpty()) { in loadData()
364 d->scriptType = "executable"; in loadData()
405 scriptelem.setAttribute("scripttype", d->scriptType); in storeData()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/cruise/
H A Dscript.cpp496 … int16 overlayNumber, int16 param, int16 arg0, int16 arg1, int16 arg2, scriptTypeEnum scriptType) { in attacheNewScriptToTail() argument
502 if (scriptType < 0) { in attacheNewScriptToTail()
504 scriptType = (scriptTypeEnum) -scriptType; in attacheNewScriptToTail()
507 if (scriptType == 20) in attacheNewScriptToTail()
509 else if (scriptType == 30) in attacheNewScriptToTail()
542 if (scriptType == 20) // Obj or not ? in attacheNewScriptToTail()
548 tempPtr->type = scriptType; in attacheNewScriptToTail()
/dports/games/scummvm/scummvm-2.5.1/engines/cruise/
H A Dscript.cpp496 … int16 overlayNumber, int16 param, int16 arg0, int16 arg1, int16 arg2, scriptTypeEnum scriptType) { in attacheNewScriptToTail() argument
502 if (scriptType < 0) { in attacheNewScriptToTail()
504 scriptType = (scriptTypeEnum) -scriptType; in attacheNewScriptToTail()
507 if (scriptType == 20) in attacheNewScriptToTail()
509 else if (scriptType == 30) in attacheNewScriptToTail()
542 if (scriptType == 20) // Obj or not ? in attacheNewScriptToTail()
548 tempPtr->type = scriptType; in attacheNewScriptToTail()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Extensions/ui/
H A DRegisteredScript.cs32 internal RegisteredScript(RegisteredScriptType scriptType, in RegisteredScript() argument
41 scriptType != RegisteredScriptType.OnSubmitStatement || !addScriptTags, in RegisteredScript()
47 _scriptType = scriptType; in RegisteredScript()
/dports/net-mgmt/zabbix3-server/zabbix-3.0.32/frontends/php/app/views/
H A Dadministration.script.list.php54 $scriptType = _('Script'); variable
57 $scriptType = _('IPMI'); variable
80 $scriptType,
/dports/net-mgmt/zabbix3-java/zabbix-3.0.32/frontends/php/app/views/
H A Dadministration.script.list.php54 $scriptType = _('Script'); variable
57 $scriptType = _('IPMI'); variable
80 $scriptType,
/dports/net-mgmt/zabbix3-proxy/zabbix-3.0.32/frontends/php/app/views/
H A Dadministration.script.list.php54 $scriptType = _('Script'); variable
57 $scriptType = _('IPMI'); variable
80 $scriptType,
/dports/net-mgmt/zabbix3-frontend/zabbix-3.0.32/frontends/php/app/views/
H A Dadministration.script.list.php54 $scriptType = _('Script'); variable
57 $scriptType = _('IPMI'); variable
80 $scriptType,
/dports/net-mgmt/zabbix3-agent/zabbix-3.0.32/frontends/php/app/views/
H A Dadministration.script.list.php54 $scriptType = _('Script'); variable
57 $scriptType = _('IPMI'); variable
80 $scriptType,
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libaddressinput/src/common/src/main/java/com/google/i18n/addressinput/common/
H A DFormatInterpreter.java61 public List<AddressField> getAddressFieldOrder(ScriptType scriptType, String regionCode) { in getAddressFieldOrder() argument
62 Util.checkNotNull(scriptType); in getAddressFieldOrder()
64 String formatString = getFormatString(scriptType, regionCode); in getAddressFieldOrder()
246 ScriptType scriptType = ScriptType.LOCAL; in getEnvelopeAddress() local
248 scriptType = Util.isExplicitLatinScript(lc) ? ScriptType.LATIN : ScriptType.LOCAL; in getEnvelopeAddress()
252 String formatString = getFormatString(scriptType, regionCode); in getEnvelopeAddress()
372 private static String getFormatString(ScriptType scriptType, String regionCode) { in getFormatString() argument
373 String format = (scriptType == ScriptType.LOCAL) in getFormatString()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libaddressinput/src/common/src/main/java/com/google/i18n/addressinput/common/
H A DFormatInterpreter.java61 public List<AddressField> getAddressFieldOrder(ScriptType scriptType, String regionCode) { in getAddressFieldOrder() argument
62 Util.checkNotNull(scriptType); in getAddressFieldOrder()
64 String formatString = getFormatString(scriptType, regionCode); in getAddressFieldOrder()
246 ScriptType scriptType = ScriptType.LOCAL; in getEnvelopeAddress() local
248 scriptType = Util.isExplicitLatinScript(lc) ? ScriptType.LATIN : ScriptType.LOCAL; in getEnvelopeAddress()
252 String formatString = getFormatString(scriptType, regionCode); in getEnvelopeAddress()
372 private static String getFormatString(ScriptType scriptType, String regionCode) { in getFormatString() argument
373 String format = (scriptType == ScriptType.LOCAL) in getFormatString()
/dports/net-mgmt/zabbix4-java/zabbix-4.0.30/frontends/php/app/views/
H A Dadministration.script.list.php68 $scriptType = _('Script'); variable
71 $scriptType = _('IPMI'); variable
97 $scriptType,
/dports/net-mgmt/zabbix4-frontend/zabbix-4.0.30/frontends/php/app/views/
H A Dadministration.script.list.php68 $scriptType = _('Script'); variable
71 $scriptType = _('IPMI'); variable
97 $scriptType,
/dports/net-mgmt/zabbix4-agent/zabbix-4.0.30/frontends/php/app/views/
H A Dadministration.script.list.php68 $scriptType = _('Script'); variable
71 $scriptType = _('IPMI'); variable
97 $scriptType,
/dports/net-mgmt/zabbix4-server/zabbix-4.0.30/frontends/php/app/views/
H A Dadministration.script.list.php68 $scriptType = _('Script'); variable
71 $scriptType = _('IPMI'); variable
97 $scriptType,
/dports/net-mgmt/zabbix4-proxy/zabbix-4.0.30/frontends/php/app/views/
H A Dadministration.script.list.php68 $scriptType = _('Script'); variable
71 $scriptType = _('IPMI'); variable
97 $scriptType,

12345678