Home
last modified time | relevance | path

Searched refs:proxy (Results 1 – 25 of 217) sorted by relevance

123456789

/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/Subscriber/
DDoctrineProxySubscriberTest.php100 $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/
Daction.php77 $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/
DCompilerApiFilter.php24 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/
Daction.php84 $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/
DProxyObjectTest.php15 $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/
Dclass.soapclient.php700 $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 …]
Dclass.soap_transport_http.php38 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/
Djquery-ui-touch-punch.js153 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')
Djquery-ui-touch-punch-cmpr.js11proxy(g,"_touchStart"),touchmove:b.proxy(g,"_touchMove"),touchend:b.proxy(g,"_touchEnd")});f.call(…
/plugin/overlay/script/
Djquery-ui-touch-punch-cmpr.js11proxy(g,"_touchStart"),touchmove:b.proxy(g,"_touchMove"),touchend:b.proxy(g,"_touchEnd")});f.call(…
Djquery-ui-touch-punch.js153 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 Deditable.js31 .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/
Dfetcher.url.curl.class.php53 $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/
Dhelper.php185 $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/
Dhelper.php177 $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/
Dscript.js56 $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/
Dindex.js21 var proxy = function(mod, name) { function
29 Object.defineProperty(proxy, name, {
43 return proxy;
/plugin/asciidocjs/node_modules/is-regex/test/
Dindex.js87 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/
Dclient.php80 [$host, $proxy] = array_pad(explode(',', $line, 2), 2, null);
85 $proxy = trim($proxy);
90 'proxy' => $proxy,
/plugin/elasticsearch/vendor/ruflin/elastica/src/
DConnection.php118 * @param string|null $proxy
122 public function setProxy($proxy) argument
124 return $this->setParam('proxy', $proxy);
/plugin/asciidocjs/node_modules/core-js/modules/
Des6.regexp.constructor.js30 var proxy = function (key) { function
37 for (var keys = gOPN(Base), i = 0; keys.length > i;) proxy(keys[i++]);
/plugin/eventum/XML/
DRPC.php712 * @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/
DClient.php32 private $proxy; variable in MaxMind\\WebService\\Client
79 $this->proxy = $options['proxy'];
165 'proxy' => $this->proxy,
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/
DClient.php245 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/
Dbootstrap.min.js6proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addCl…
7proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLo…

123456789