| /plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/Subscriber/ |
| D | DoctrineProxySubscriberTest.php | 100 $proxy = new SimpleObjectProxy('foo', 'bar'); 105 }, get_parent_class($proxy)); 107 $event = $this->createEvent($proxy, ['name' => get_class($proxy), 'params' => []]); 108 $this->dispatcher->dispatch('serializer.pre_serialize', get_class($proxy), 'json', $event); 115 $proxy = new SimpleObjectProxy('foo', 'bar'); 120 }, get_parent_class($proxy)); 122 $event = $this->createEvent($proxy, ['name' => get_class($proxy), 'params' => []]); 123 $this->dispatcher->dispatch('serializer.pre_serialize', get_class($proxy), 'json', $event); 130 $proxy = new SimpleObjectProxy('foo', 'bar'); 132 $event = $this->createEvent($proxy, ['name' => 'foo', 'params' => []]); [all …]
|
| /plugin/webexteamsnotifier/ |
| D | action.php | 77 $proxy = $conf['proxy']; 78 if (!empty($proxy['host'])) { 81 $proxyAddress = $proxy['host'] . ':' . $proxy['port']; 89 if (!empty($proxy['user']) && !empty($proxy['pass'])) { 90 $proxyAuth = $proxy['user'] . ':' . conf_decodeString($proxy['port']);
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/ |
| D | CompilerApiFilter.php | 24 private $proxy; variable in Assetic\\Filter\\GoogleClosure\\CompilerApiFilter 27 public function setProxy($proxy) argument 29 $this->proxy = $proxy; 86 if ($this->proxy) { 87 $contextOptions['http']['proxy'] = $this->proxy; 104 if ($this->proxy) { 106 curl_setopt($ch, CURLOPT_PROXY, $this->proxy);
|
| /plugin/rocketchatnotifier/ |
| D | action.php | 84 $proxy = $conf['proxy']; 85 if (!empty($proxy['host'])) { 88 $proxyAddress = $proxy['host'] . ':' . $proxy['port']; 96 if (!empty($proxy['user']) && !empty($proxy['pass'])) { 97 $proxyAuth = $proxy['user'] . ':' . conf_decodeString($proxy['port']);
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/ |
| D | ProxyObjectTest.php | 15 $proxy = $this->getMockBuilder(Bar::class) 19 $proxy->expects($this->once()) 24 $this->assertEquals('result', $foo->doSomething($proxy)); 29 $proxy = $this->getMockBuilder(MethodCallbackByReference::class) 35 $proxy->callback($a, $b, $c);
|
| /plugin/mantis/lib/ |
| D | class.soapclient.php | 700 $proxy->endpointType = 'wsdl'; 701 $proxy->wsdlFile = $this->wsdlFile; 702 $proxy->wsdl = $this->wsdl; 703 $proxy->operations = $this->operations; 704 $proxy->defaultRpcParams = $this->defaultRpcParams; 706 $proxy->soap_defencoding = $this->soap_defencoding; 707 $proxy->username = $this->username; 708 $proxy->password = $this->password; 709 $proxy->authtype = $this->authtype; 710 $proxy->certRequest = $this->certRequest; [all …]
|
| D | class.soap_transport_http.php | 38 var $proxy = null; // proxy information (associative array) variable in soap_transport_http 162 …thtype == 'ntlm') || ($this->scheme == 'http' && is_array($this->proxy) && $this->proxy['authtype'… 164 …heme == 'ssl') && $this->authtype != 'ntlm' && (!is_array($this->proxy) || $this->proxy['authtype'… 192 if (!is_array($this->proxy)) { 196 $host = $this->proxy['host']; 197 $port = $this->proxy['port']; 376 if (is_array($this->proxy)) { 378 if ($this->proxy['port'] != '') { 379 $this->setCurlOption(CURLOPT_PROXY, $this->proxy['host'].':'.$this->proxy['port']); 381 $this->setCurlOption(CURLOPT_PROXY, $this->proxy['host']); [all …]
|
| /plugin/dirtylittlehelper/script/ |
| D | jquery-ui-touch-punch.js | 153 touchstart: $.proxy(self, '_touchStart'), 154 touchmove: $.proxy(self, '_touchMove'), 155 touchend: $.proxy(self, '_touchEnd') 171 touchstart: $.proxy(self, '_touchStart'), 172 touchmove: $.proxy(self, '_touchMove'), 173 touchend: $.proxy(self, '_touchEnd')
|
| D | jquery-ui-touch-punch-cmpr.js | 11 …proxy(g,"_touchStart"),touchmove:b.proxy(g,"_touchMove"),touchend:b.proxy(g,"_touchEnd")});f.call(…
|
| /plugin/overlay/script/ |
| D | jquery-ui-touch-punch-cmpr.js | 11 …proxy(g,"_touchStart"),touchmove:b.proxy(g,"_touchMove"),touchend:b.proxy(g,"_touchEnd")});f.call(…
|
| D | jquery-ui-touch-punch.js | 153 touchstart: $.proxy(self, '_touchStart'), 154 touchmove: $.proxy(self, '_touchMove'), 155 touchend: $.proxy(self, '_touchEnd') 171 touchstart: $.proxy(self, '_touchStart'), 172 touchmove: $.proxy(self, '_touchMove'), 173 touchend: $.proxy(self, '_touchEnd')
|
| /plugin/tagging/script/ |
| H A D | editable.js | 31 .keyup($.proxy(function(e) { 46 this.$clear.click($.proxy(this.clear, this)); 125 this.$form.find('.editable-cancel').click($.proxy(this.cancel, this)); 128 this.$form.submit($.proxy(this.submit, this)); 201 .done($.proxy(function(response) { 216 .fail($.proxy(function(xhr) { 251 this.$element.on('click.editable', $.proxy(function(e){ 262 $(document).on('keyup.editable', $.proxy(function (e) { 358 … save: $.proxy(function(){ this.hide(); }, this), //click on submit button (value changed) 359 … nochange: $.proxy(function(){ this.hide(); }, this), //click on submit button (value NOT changed) [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | fetcher.url.curl.class.php | 53 $proxy = $this->get_proxy(); 54 if (!is_null($proxy)) { 55 curl_setopt($curl, CURLOPT_PROXY, $proxy); 101 function set_proxy($proxy) { argument 102 $this->_proxy = $proxy;
|
| /plugin/matrixnotifier/ |
| D | helper.php | 185 $proxy = $GLOBALS['conf']['proxy']; 186 if (!empty($proxy['host'])) 189 $proxyAddress = $proxy['host'].':'.$proxy['port']; 195 if (!empty($proxy['user']) && !empty($proxy['pass'])) 197 $proxyAuth = $proxy['user'].':'.conf_decodeString($proxy['pass']);
|
| /plugin/discordnotifier/ |
| D | helper.php | 177 $proxy = $conf['proxy']; 178 if ( !empty ( $proxy['host'] ) ) { 180 $proxyAddress = $proxy['host'] . ':' . $proxy['port']; 186 if ( !empty ( $proxy['user'] ) && !empty ( $proxy['pass'] ) ) { 187 $proxyAuth = $proxy['user'] . ':' . conf_decodeString ( $proxy['port'] );
|
| /plugin/filelisting/ |
| D | script.js | 56 $toggleButton.click($.proxy(function () { 71 this.$content.find('tbody').on('click', 'tr[data-namespace] a', $.proxy(function (event) { 123 $.proxy(function(html) { 134 .fail($.proxy(function () { 140 this.$content.on('namespaceFilesChanged', $.proxy(function (event, namespace) { 154 $.proxy(function(html) { 182 $input.on('keyup', $.proxy(this.applyFilter, this)); 193 this.$content.on('expand', $.proxy(this.applyFilter, this)); 241 this.$content.find('thead th a').on('click', $.proxy(function(event) { 263 this.$content.on('nsload', $.proxy(function(event, namespace) { [all …]
|
| /plugin/asciidocjs/node_modules/lazy-cache/ |
| D | index.js | 21 var proxy = function(mod, name) { function 29 Object.defineProperty(proxy, name, { 43 return proxy;
|
| /plugin/asciidocjs/node_modules/is-regex/test/ |
| D | index.js | 87 var proxy = new Proxy({ lastIndex: 0 }, handler); 89 st.equal(isRegex(proxy), false, 'proxy of plain object is not regex'); 96 var proxy = new Proxy(/a/, handler); 98 st.equal(isRegex(proxy), false, 'proxy of RegExp instance is not regex');
|
| /plugin/elasticsearch/helper/ |
| D | client.php | 80 [$host, $proxy] = array_pad(explode(',', $line, 2), 2, null); 85 $proxy = trim($proxy); 90 'proxy' => $proxy,
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/ |
| D | Connection.php | 118 * @param string|null $proxy 122 public function setProxy($proxy) argument 124 return $this->setParam('proxy', $proxy);
|
| /plugin/asciidocjs/node_modules/core-js/modules/ |
| D | es6.regexp.constructor.js | 30 var proxy = function (key) { function 37 for (var keys = gOPN(Base), i = 0; keys.length > i;) proxy(keys[i++]);
|
| /plugin/eventum/XML/ |
| D | RPC.php | 712 * @param string $proxy the URL of the proxy server to use, if any. 725 $proxy = '', $proxy_port = 0, argument 759 if ($proxy) { 760 preg_match('@^(http://|https://|ssl://)?(.*)$@', $proxy, $match); 763 $this->proxy = $match[2]; 767 $this->proxy = $match[2]; 914 if ($this->proxy) { 946 if (!$fp && $this->proxy) { 948 . $this->proxy . ':' . $this->proxy_port 1000 if ($this->proxy) { [all …]
|
| /plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/src/WebService/ |
| D | Client.php | 32 private $proxy; variable in MaxMind\\WebService\\Client 79 $this->proxy = $options['proxy']; 165 'proxy' => $this->proxy,
|
| /plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/ |
| D | Client.php | 245 if (\PHP_SAPI === 'cli' && ($proxy = Utils::getenv('HTTP_PROXY'))) { 246 $defaults['proxy']['http'] = $proxy; 249 if ($proxy = Utils::getenv('HTTPS_PROXY')) { 250 $defaults['proxy']['https'] = $proxy;
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/ |
| D | bootstrap.min.js | 6 …proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addCl… 7 …proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLo…
|