Searched +full:add +full:- +full:matcher (Results 1 – 25 of 72) sorted by relevance
123
1 -- Add the type (ie http or id)2 alter table REDIRECTIONS_LOG add column METHOD TEXT;4 -- Rename redirection to page rules8 MATCHER TEXT unique NOT NULL, -- the matcher pattern field9 TARGET TEXT NOT NULL, -- the target10 PRIORITY INTEGER NOT NULL, -- the priority in which the match must be performed11 TIMESTAMP TIMESTAMP NOT NULL -- a update/create timestamp14 insert into PAGE_RULES_tmp(ID, MATCHER, TARGET, PRIORITY, TIMESTAMP)
43 // of use of $this->getLang44 $this->setupLocale();56 if (!isset($this->pageRuleManager)) {58 $this->pageRuleManager = new PageRules();87 return ucfirst(PluginUtility::$PLUGIN_NAME) . " - " . $this->lang['PageRules'];92 return DirectoryLayout::getComboImagesDirectory()->resolve('page-next.svg')->toAbsoluteId();102 $this->initiatePageRuleManager();105 * If one of the form submit has the add key110 $matcher = $_POST[PageRules::MATCHER_NAME] ?? null;114 if ($matcher == null) {[all …]
5 [](https://travis-ci.org/mycl…7 …ttps://scrutinizer-ci.com/g/myclabs/DeepCopy/badges/quality-score.png?s=2747100c19b275f93a777e3297…8 …nloads](https://poser.pugx.org/myclabs/deep-copy/downloads.svg)](https://packagist.org/packages/my…14 1. [Using simply `clone`](#using-simply-clone)15 1. [Overridding `__clone()`](#overridding-__clone)16 1. [With `DeepCopy`](#with-deepcopy)17 1. [How it works](#how-it-works)18 1. [Going further](#going-further)20 1. [Property name](#property-name)21 1. [Specific property](#specific-property)[all …]
5 [](https://travis-ci.org/mycl…7 …ttps://scrutinizer-ci.com/g/myclabs/DeepCopy/badges/quality-score.png?s=2747100c19b275f93a777e3297…8 …nloads](https://poser.pugx.org/myclabs/deep-copy/downloads.svg)](https://packagist.org/packages/my…19 1. [Using simply `clone`](#using-simply-clone)20 1. [Overridding `__clone()`](#overridding-__clone)21 1. [With `DeepCopy`](#with-deepcopy)22 1. [How it works](#how-it-works)23 1. [Going further](#going-further)25 1. [Property name](#property-name)26 1. [Specific property](#specific-property)[all …]
7 name: PHP ${{ matrix.php-versions }}8 runs-on: ubuntu-latest13 php-versions: [7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']14 fail-fast: false17 - name: Checkout20 - name: Setup PHP21 uses: shivammathur/setup-php@v223 php-version: ${{ matrix.php-versions }}25 - name: Setup problem matchers27 echo ::add-matcher::${{ runner.tool_cache }}/php.json[all …]
7 name: PHP ${{ matrix.php-versions }} DokuWiki ${{ matrix.dokuwiki-branch }}8 runs-on: ubuntu-latest13 php-versions: ['7.2', '7.3', '7.4', '8.0']14 dokuwiki-branch: [ 'master', 'stable']16 - dokuwiki-branch: 'stable'17 php-versions: '8.0'18 fail-fast: false21 - name: Checkout24 - name: Setup PHP25 uses: shivammathur/setup-php@v2[all …]
7 name: PHP ${{ matrix.php-versions }} DokuWiki ${{ matrix.dokuwiki-branch }}8 runs-on: macos-latest13 php-versions: ['7.4']14 dokuwiki-branch: [ 'master']15 fail-fast: false18 - name: Cache Vagrant boxes22 key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}23 restore-keys: |24 ${{ runner.os }}-vagrant-26 - name: Install AD[all …]
16 const MATCHER_NAME = 'MATCHER';31 ->createRequest()32 ->setQueryParametrized('delete from PAGE_RULES where id = ?', [$ruleId]);34 $request->execute();36 … LogUtility::msg("Something went wrong when deleting the redirections. {$e->getMessage()}");38 $request->close();55 ->createRequest()56 ->setQueryParametrized("SELECT count(*) FROM PAGE_RULES where ID = ?", [$id]);60 ->execute()61 ->getFirstCellValueAsInt();[all …]
3 # https://docs.github.com/en/actions/using-workflows/reusing-workflows#creating-a-reusable-workflow7 # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs19 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#defaults31 runs-on: ubuntu-latest34 …# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_id…39 …# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-ad…41 fail-fast: false48 - name: Phpunit ${{ matrix.php }}54 # https://github.com/marketplace/actions/setup-php-action#matrix-setup55 - name: Setup PHP[all …]
11 /* ---------- Utilities ---------- */15 * Returns js-"class" of value17 * @param val {any type} - value18 * @returns {string} - for example, "[object Function]"26 * In other cases - throws an exception28 * @param val {any type} - the value for new node62 * @param obj {Object | Array} - a list or a dict with child nodes63 * @param func {Function} - the function for each item71 isLast = obj.length - 1;82 isLast = keys.length - 1;[all …]
10 // the test above is not safe because it relies on for-in enumeration order35 assert.deepEqual(_.keys(trouble).sort(), troubleKeys, 'matches non-enumerable properties');40 // the test above is not safe because it relies on for-in enumeration order63 assert.deepEqual(_.allKeys(trouble).sort(), troubleKeys, 'matches non-enumerable properties');97 …assert.deepEqual(['b', 'd'], _.functions(obj), 'can grab the function names of any passed-in objec…160 …strictEqual(_.extendOwn(val, {a: 1}), val, 'extending non-objects results in returning the non-obj…166 …assert.deepEqual(result, {a: 1, 0: 1, 1: 2, length: 2}, 'should treat array-like objects like norm…294 … assert.deepEqual(_.create(val), {}, 'should return empty object when a non-object is provided');312 assert.notOk(created.hasOwnProperty('foo'), 'should only add own properties');329 assert.notOk(_.isEqual(0, -0), '`0` is not equal to `-0`');[all …]
37 if (pattern.slice(-3) === '/**') {43 matcher: new Minimatch(pattern, { dot: true }),52 // base-matching: just use globstar for that.53 if (options.matchBase && -1 === pattern.indexOf("/")) {189 var slash = p.slice(-1) === '/'194 m = m.slice(0, -1)227 // Ex:- If node_modules/** is the pattern, add 'node_modules' to ignore list along with it's conten…233 return item.matcher.match(path) || !!(item.gmatcher && item.gmatcher.match(path))
4 "zeroRecords": "Ingen linjer matcher søgningen",31 "-1": "Vis alle rækker",80 "title": "Filter aktive - %d",90 "unknown": "-",148 "add": "Tilføj betingelse", string
3 // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors9 // --------------35 // Naked function reference for surrogate-prototype-swapping.46 // backwards-compatibility for the old `require()` API. If we're in47 // the browser, add `_` as a global object.61 // of the passed-in callback, to be repeatedly applied in other Underscore84 // A mostly-internal function to generate callbacks that can be applied86 // identity, an arbitrary callback, a property matcher, or a property accessor.90 if (_.isObject(value)) return _.matcher(value);133 // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength[all …]
3 // (c) 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors9 // --------------37 // Naked function reference for surrogate-prototype-swapping.48 // backwards-compatibility for their old module API. If we're in49 // the browser, add `_` as a global object.65 // of the passed-in callback, to be repeatedly applied in other Underscore73 // The 2-parameter case has been omitted only because no current consumers91 // an arbitrary callback, a property matcher, or a property accessor.96 if (_.isObject(value)) return _.matcher(value);102 // This abstraction hides the internal-only argCount argument.[all …]
29 * 4) Clean-up after a test by overriding tearDown().45 * $this->value1 = 2;46 * $this->value2 = 3;60 * $this->assertTrue($this->value1 + $this->value2 == 5);297 $this->setName($name);300 $this->data = $data;301 $this->dataName = $dataName;315 $class->name,316 $this->getName(false)319 return $buffer . $this->getDataSetAsString();[all …]
1 …-]?\d+(?:(?:N|(?:[eE][+\-]?\d+))|(?:\.?\d*(?:M|(?:[eE][+\-]?\d+))?)|\/\d+|[xX][0-9a-fA-F]+|r[0-9a-…
1 …-editor/esm/vs/basic-languages/clojure/clojure.js"],"names":[],"mappings":";;;;;;;;;;AAAA;AAAA;AAA…
1 …-enter","monitor-exit","new","quote","recur","set!","throw","try","var"];var e=["*","*'","*1","*2"…
13 http://www.apache.org/licenses/LICENSE-2.014 http://www.gnu.org/licenses/gpl-2.0.html25 * 4-10 times faster .each replacement29 var j = $([0]), i = -1, l = this.length;99 MEASURE_SCROLLBAR_TEMPLATE = "<div class='select2-measure-scrollbar'></div>",134 return -1;142 width: $template.width() - $template[0].clientWidth,143 height: $template.height() - $template[0].clientHeight161 if (a.constructor === String) return a+'' === b+''; // a+'' - in case 'a' is a String object162 if (b.constructor === String) return b+'' === a+''; // b+'' - in case 'b' is a String object[all …]
13 http://www.apache.org/licenses/LICENSE-2.014 http://www.gnu.org/licenses/gpl-2.0.html21 …-1,e=this.length;++d<e&&(c.context=c[0]=this[d])&&b.call(c[0],d,c)!==!1;);return this}})}(jQuery),…22 …-a.offset().top-a.height(),c<=this.opts.loadMorePadding&&(b.addClass("select2-active"),this.opts.q… property
... META-INF/ META-INF/MANIFEST.MF com/ com/pusher ... ...
3 // (c) 2010-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors37 // -------------62 // set a `X-Http-Method-Override` header.67 // `application/x-www-form-urlencoded` instead and will send the model in a113 var matcher = _.matches(attrs);115 return matcher(model.attributes);120 // ---------------124 // remove with `off`; `trigger`-ing an event fires all callbacks in138 // space-separated events `"change blur", callback` and jQuery-style event149 // Handle space-separated event names by delegating them individually.[all …]
2 * (c) 2005-2008 Sam Stephenson4 * Prototype is freely distributable under the terms of an MIT-style license.7 *--------------------------------------------------------------------------*/15 WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1,16 Gecko: navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1,30 JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/,254 return '"' + this.getUTCFullYear() + '-' +255 (this.getUTCMonth() + 1).toPaddedString(2) + '-' +284 /*--------------------------------------------------------------------------*/356 if (--count < 0) return match[0];[all …]
2 * bpmn-js - bpmn-modeler v8.8.24 * Copyright (c) 2014-present, camunda Services GmbH9 * Source Code: https://github.com/bpmn-io/bpmn-js11 * Date: 2021-10-2068 var rem = digits - Math.floor(digits);284 * @param {Function|Object} matcher289 function find(collection, matcher) { argument290 matcher = toMatcher(matcher);293 if (matcher(val, key)) {304 * @param {Function} matcher[all …]