Home
last modified time | relevance | path

Searched refs:mode (Results 1576 – 1600 of 2447) sorted by relevance

1...<<61626364656667686970>>...98

/plugin/dokucrypt2/
H A Dscript.js933 // rijndaelEncrypt(plaintext, key, mode)
934 // Encrypts the plaintext using the given key and in the given mode.
938 // to an array of bytes. The third parameter "mode" is a string indicating
939 // the encryption mode to use, either "ECB" or "CBC". If the parameter is
945 function rijndaelEncrypt(plaintext, key, mode) { argument
952 if (mode == "CBC") {
956 mode = "ECB";
967 if (mode == "CBC") {
978 // rijndaelDecrypt(ciphertext, key, mode)
979 // Decrypts the using the given key and mode
989 rijndaelDecrypt(ciphertext, key, mode) global() argument
[all...]
/plugin/miniblog/
H A DREADME18 The feed URL is "feed.php?mode=miniblog".
/plugin/facebookalbum/
H A Dsyntax.php273 $renderer->doc .= p_render($mode, p_get_instructions( $content ), $info );
/plugin/pagetemplate/
H A Daction.php158 $mode = array(
/plugin/combo/action/
H A Dcacheexpiration.php66 * No cache for all mode
81 if ($data->mode === "xhtml") {
/plugin/jplayer/vendor/kriswallsmith/assetic/
H A DREADME.md188 '?yui_css', // don't use this filter in debug mode
197 that filter to be omitted when the factory is in debug mode.
246 '?yui_css', // don't use this filter in debug mode
301 When the extension is in debug mode, this same tag will render multiple `link`
/plugin/openlayersmap/
H A DStaticMap.php493 * @param int $mode
494 * File access mode. For more information on modes, read the details on the chmod manpage.
496 public function mkdirRecursive(string $pathname, int $mode): bool
499 $this->mkdirRecursive(dirname($pathname), $mode);
501 return is_dir($pathname) || mkdir($pathname, $mode) || is_dir($pathname);
566 mkdirRecursive(string $pathname, int $mode) global() argument
/plugin/codemirror/dist/modes/
H A Dmarkdown.min.js1mode.name=="xml"&&f.state.tagStart===null&&(!f.state.context&&f.state.tokenize.isInText)}if(c){b.f…
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst56 * *Coda* and *SubEthaEdit* via the `Twig syntax mode`_
57 * *Coda 2* via the `other Twig syntax mode`_
58 * *Komodo* and *Komodo Edit* via the Twig highlight/syntax check mode
60 * *Emacs* via `web-mode.el`_
907 .. _`Twig syntax mode`: https://github.com/bobthecow/Twig-HTML.mode
908 .. _`other Twig syntax mode`: https://github.com/muxx/Twig-HTML.mode
910 .. _`web-mode.el`: http://web-mode.org/
/plugin/jplayer/vendor/james-heinrich/getid3/
H A Dreadme.txt314 * Warn if MP3s change version mid-stream (in full-scan mode)
368 * Support for WavPack RAW mode
393 * AAC-RAW mode files cannot be identified
394 * WavPack-RAW mode files cannot be identified
447 specs. Tags written in ID3v2.4 mode are written correctly.
485 * AACenc encodes files in VBR mode (actually ABR) even if CBR is
490 mode with the DLL
496 * AAC-ADTS files are always actually encoded VBR, even if CBR mode
497 is specified (the CBR-mode switches on the encoder enable ABR
498 mode, not CBR as such, but it's not possible to tell the
H A DREADME.md307 * Warn if MP3s change version mid-stream (in full-scan mode)
361 * Support for WavPack RAW mode
386 * AAC-RAW mode files cannot be identified
387 * WavPack-RAW mode files cannot be identified
466 * AACenc encodes files in VBR mode (actually ABR) even if CBR is
471 mode with the DLL
477 * AAC-ADTS files are always actually encoded VBR, even if CBR mode
478 is specified (the CBR-mode switches on the encoder enable ABR
479 mode, not CBR as such, but it's not possible to tell the
/plugin/codebuttonmod2/
H A DPlugin.txt53 * Plugin "disabled" for any action mode (v1.2.1-beta)
/plugin/diff/
H A Dsyntax.php299 * <dd>ordinary text encountered within the plugin's syntax mode
/plugin/combo/ComboStrap/PageSqlParser/
H A DPageSqlLexer.interp256 mode names:
/plugin/sql/
H A DDB.php22 function query($sql, $mode = null, ...$params) { argument
/plugin/data-au/syntax/
H A Dentry.php52 function connectTo($mode) { argument
53 …$this->Lexer->addSpecialPattern('----+ *dataentry(?: [ a-zA-Z0-9_]*)?-+\n.*?\n----+', $mode, 'plug…
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DEngine.php156 $mode = isset($options['cache_file_mode']) ? $options['cache_file_mode'] : null;
157 $cache = new Mustache_Cache_FilesystemCache($cache, $mode);
/plugin/openid/
H A Daction.php335 function get_openid_form($mode) argument
345 if ($mode == 'extra') {
/plugin/findologicxmlexport/vendor/hoa/file/
H A DCHANGELOG.md4 * fix(directory) Use read-only mode when copying. (Ivan Enderlin, 2017-07-06T13:34:16+02:00)
/plugin/combo/syntax/
H A Dpara.php76 * Needs to return one of the mode types defined in $PARSER_MODES in parser.php
124 * The mode with the lowest sort number will win out
139 function connectTo($mode) argument
231 // unsupported $mode
/plugin/photogallery/lightGallery/js/
H A Dlightgallery.js26 mode: 'lg-slide', property in AnonymousFunction91f19f9c0200.defaults
324 this.s.mode = 'lg-slide';
350 this.$outer.addClass(this.s.mode);
1068 if (_this.s.mode !== 'lg-slide') {
1092 if (!_this.$outer.hasClass('lg-dragging') && _this.s.mode !== 'lg-slide') {
H A Dlightgallery.min.js4mode:"lg-slide",cssEasing:"ease",easing:"linear",speed:600,height:"100%",width:"100%",addClass:"",… property in AnonymousFunction7137b5ee0200.c
/plugin/pdfjs/pdfjs/web/
H A Dviewer.js1947 var mode = evt.mode,
1950 switch (mode) {
2667 switch (mode) {
3920 …return Number.isInteger(mode) && Object.values(ScrollMode).includes(mode) && mode !== ScrollMode.U…
3924 …return Number.isInteger(mode) && Object.values(SpreadMode).includes(mode) && mode !== SpreadMode.U…
11412 set: function set(mode) {
11424 mode: mode
11434 set: function set(mode) {
11446 mode: mode
12933 var mode = _ref2.mode;
[all …]
/plugin/rater/
H A Dsyntax.php29 function connectTo($mode){ argument
30 $this->Lexer->addSpecialPattern('\{\(rater>[^}]*?\)\}',$mode,'plugin_rater');
101 function render($mode, Doku_Renderer &$renderer, $data) { argument
105 if ($mode == 'xhtml'){
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.ogg.php824 * @param int $mode
828 public static function SpeexBandModeLookup($mode) { argument
835 return (isset($SpeexBandModeLookup[$mode]) ? $SpeexBandModeLookup[$mode] : null);

1...<<61626364656667686970>>...98