Home
last modified time | relevance | path

Searched refs:port (Results 151 – 175 of 226) sorted by last modified time

12345678910

/plugin/pdfjs/pdfjs/build/
H A Dpdf.worker.js206 setup: function setup(handler, port) {
245 return WorkerMessageHandler.createDocumentHandler(data, port);
248 createDocumentHandler: function createDocumentHandler(docParams, port) {
740 initializeFromPort: function initializeFromPort(port) {
741 var handler = new _message_handler.MessageHandler('worker', 'main', port);
742 WorkerMessageHandler.setup(handler, port);
4686 var defer, channel, port;
4733 port = channel.port2;
4735 defer = ctx(port.postMessage, port, 1);
10837 get port() {
[all …]
H A Dpdf.worker.js.map1port","setTimeout","set","clear","un","macrotask","Observer","flush","parent","head","last","toggl…
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_smart_rendering.js181 var port = this.getViewPort();
183 var firstTask = Math.floor(Math.max(0, port.y) / gantt.config.row_height) - buffer;
184 var lastTask = Math.ceil(Math.max(0, port.y_end) / gantt.config.row_height) + buffer;
/plugin/yuriigantt/3rd/dhtmlxgantt/
H A Ddhtmlxgantt.js.map1 …erProperty] < outerSize) // same scroll width but smaller scrollable view port\n\n\t\t\t\t\tscroll…
/plugin/yuriigantt/3rd/dhtmlxgantt/ext/
H A Ddhtmlxgantt_smart_rendering.js.map1port","firstTask","floor","lastTask","ceil","visibleTasks","$data","tasksStore","getIndexRange","v…
/plugin/codeprettify/code-prettify/src/
H A Dlang-vhdl.js39 …|loop|map|mod|nand|new|next|nor|not|null|of|on|open|or|others|out|package|port|postponed|procedure…
/plugin/icons/assets/material-design-icons/css/
H A Dmaterialdesignicons.min.css1port::before{content:"\F8F1"}.mdi-mine::before{content:"\FDB6"}.mdi-minecraft::before{content:"\F3…
/plugin/sequencediagram/bower_components/lodash/test/asset/
H A Dtest-ui.js145 ui.isSauceLabs = location.port == '9001';
/plugin/sequencediagram/bower_components/lodash/test/
H A Dsaucelabs.js75 port = ports[Math.min(_.sortedIndex(ports, getOption('port', 9001)), ports.length - 1)], variable
81 runnerUrl = getOption('runnerUrl', 'http://localhost:' + port + '/' + runner),
887 }).listen(port);
/plugin/sphinxsearch-was/
H A DSphinxSearch.php23 public function __construct($host, $port, $index) argument
26 $this->_sphinx->SetServer($host, $port);
H A DINSTALL31 By default plugin is using 9312 as the searchd port, so make sure this
32 port is free (if you have sphinx on other port, see #5).
H A Dsphinxapi.php472 function SetServer($host, $port = 0) argument
484 assert(is_int($port));
486 $this->_port = $port;
546 $port = 0;
549 $port = $this->_port;
553 $fp = @fsockopen($host, $port, $errno, $errstr);
555 $fp = @fsockopen($host, $port, $errno, $errstr, $this->_timeout);
/plugin/authphpbb3/
H A Dauth.php592 $port = '';
596 $port = ';port=' . intval($this->_phpbb_conf['dbport']);
598 $dsn = ':host=' . $this->_phpbb_conf['dbhost'] . $port .
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Integration/
H A DStream.php59 $port = mt_rand(10000, 12000),
63 $port,
/plugin/file2dw/docker/simple/
H A Ddocker-compose.yml13 - "80:80" # OPTIONAL: Change "left" number to "publish" Dokuwiki in a different port
/plugin/file2dw/docker/proxy/
H A Ddocker-compose.yml17 - "80:80" # OPTIONAL: Change "left" number to use different port
18 - "443:443" # OPTIONAL: Change "left" number to use different port
/plugin/switchpanel/
H A DREADME.md161 8,8:text="<b>From:</b> Office Level, Netgear switch port 1<br><b>To:</b> HP switch port 18<br><b>Sp…
/plugin/authfacebook/lib/Url/
H A DFacebookUrlDetectionHandler.php114 $port = $this->getCurrentPort();
115 $appendPort = ':' . $port;
118 if (($scheme == 'http' && $port == '80') || ($scheme == 'https' && $port == '443')) {
128 $port = $this->getHeader('X_FORWARDED_PORT');
129 if ($port) {
130 return (string)$port;
H A DFacebookUrlManipulator.php62 $port = isset($parts['port']) ? ':' . $parts['port'] : '';
66 return $scheme . $host . $port . $path . $query . $fragment;
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dlinks.md7 About port info on wiki: [port](http://en.wikipedia.org/wiki/Port_(computer_networking))
9 About port info on wiki: [port](http://en.wikipedia.org/wiki/Port_(computer_networking) "port wiki")
23 About port info on wiki: [port]( http://en.wikipedia.org/wiki/Port_(computer_networking) )
25 About port info on wiki: [port]( http://en.wikipedia.org/wiki/Port_(computer_networking) "port wi…
/plugin/swiftmail/Swift/Authenticator/PopB4Smtp/
H A DPop3Connection.php38 protected $port = null; variable in Swift_Authenticator_PopB4Smtp_Pop3Connection
51 public function __construct($server="localhost", $port=110, $encryption=0) argument
54 $this->setPort($port);
69 public function setPort($port) argument
71 $this->port = (int) $port;
87 return $this->port;
/plugin/swiftmail/Swift/Authenticator/
H A D@PopB4Smtp.php30 public function __construct($conn=null, $port=110, $encryption=0) argument
36 … $this->connection = new Swift_Authenticator_PopB4Smtp_Pop3Connection($conn, $port, $encryption);
/plugin/swiftmail/Swift/Connection/
H A DSMTP.php55 protected $port = null; variable in Swift_Connection_SMTP
102 $this->setPort($port);
145 public function setPort($port) argument
147 if ($port == self::AUTO_DETECT)
149 $port = @ini_get("SMTP_PORT");
151 …if (!$port) $port = ($this->getEncryption() == self::ENC_OFF) ? self::PORT_DEFAULT : self::PORT_SE…
152 $this->port = (int) $port;
160 return $this->port;
278 if ($this->port === null)
283 $this->port = 465;
[all …]
/plugin/recaptcha2/lib/ReCaptcha/RequestMethod/
H A DSocket.php42 * @param int $port
48 public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) argument
50 …$this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default…
/plugin/issuetracker/
H A Dprototype.js1631 port: location.port ? ':' + location.port : ''

12345678910