Home
last modified time | relevance | path

Searched full:bar (Results 1 – 25 of 1737) sorted by relevance

12345678910>>...70

/plugin/bootswrapper/exe/help/
Dprogress.txt1 ====== Progress Bar ======
9 Default progress bar.
12 <bar value="60"></bar>
19 <bar value="60"></bar>
28 <bar value="60" showvalue="true"></bar>
34 <bar value="60" showvalue="true"></bar>
44 <bar value="40" type="success"></bar>
48 <bar value="20" type="info"></bar>
52 <bar value="60" type="warning"></bar>
56 <bar value="80" type="danger"></bar>
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
DInlineTest.php161 $value = '{ "foo " bar": "bar" }';
179 Inline::parse('[foo] bar');
187 Inline::parse('{ foo: bar } bar');
216 'map-in-map' => ['{ foo: { bar: *var } }', ['foo' => ['bar' => 'var-value']]],
302 [['foo' => 1, 'bar' => 2], true],
332 ["'foo#bar'", 'foo#bar'],
333 ["'foo # bar'", 'foo # bar'],
357 ['[ foo , bar , false , null , 12 ]', ['foo', 'bar', false, null, 12]],
358 ['[\'foo,bar\', \'foo bar\']', ['foo,bar', 'foo bar']],
361 …['{foo: bar,bar: foo,"false": false, "null": null,integer: 12}', ['foo' => 'bar', 'bar' => 'foo', …
[all …]
DDumperTest.php26 '' => 'bar',
27 'foo' => '#bar',
28 'foo\'bar' => [],
29 'bar' => [1, 'foo'],
31 'foo' => 'bar',
32 'bar' => [1, 'foo'],
34 'foo' => 'bar',
35 'bar' => [1, 'foo'],
59 '': bar
60 foo: '#bar'
[all …]
DParserTest.php59 "foo:\n bar",
60 "foo:\n bar",
61 "foo:\n bar",
62 "foo:\n bar",
96 bar: |-
103 'bar' => "one\ntwo",
112 bar: |-
120 'bar' => "one\ntwo",
136 bar: |-
142 'bar' => "one\ntwo",
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
DsfQuotes.yml6 foo: '| bar'
8 ['foo' => '| bar']
14 "foo1": bar
15 'foo2': bar
16 "foo \" bar": bar
17 'foo '' bar': bar
18 'foo3: ': bar
19 "foo4: ": bar
20 foo5: { "foo \" bar: ": bar, 'foo '' bar: ': bar }
23 'foo1' => 'bar',
[all …]
DsfTests.yml6 stripped_title: { name: "foo bar", help: "bar foo" }
8 ['stripped_title' => ['name' => 'foo bar', 'help' => 'bar foo']]
59 bar: |
64 bar
66 ['foo' => ['bar' => "foo\n\n\n \nbar\n"]]
73 bar: >
78 bar
80 ['foo' => ['bar' => "\nfoo\n\nbar\n"]]
95 - bar: { bar: foo }
97 ['foo', ['bar' => ['bar' => 'foo']]]
[all …]
DsfComments.yml6 ex1: "foo # bar"
7 ex2: "foo # bar" # comment
8 ex3: 'foo # bar' # comment
14 …['ex1' => 'foo # bar', 'ex2' => 'foo # bar', 'ex3' => 'foo # bar', 'ex4' => 'foo', 'ex5' => 'foo',…
23 bar: foo
27 ['foo' => ['bar' => 'foo']]
34 foo: bar # a comment
36 ['foo' => ['foo' => 'bar']]
42 foo: '#bar'
44 ['foo' => '#bar']
[all …]
/plugin/asciidocjs/node_modules/jake/test/integration/
Dfile.js33 ['foo', 'bar'],
34 ['foo', 'bar', 'baz'],
35 ['foo', 'bar', 'baz', 'qux']
37 file.mkdirP('foo/bar/baz/qux');
46 file.mkdirP('foo/bar/baz/qux');
47 file.rmRf('foo/bar');
56 file.mkdirP('bar');
58 fs.symlinkSync('../foo', 'bar/foo'); file.rmRf('bar');
60 // Make sure the bar directory was successfully deleted
63 fs.statSync('bar');
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
Darray.test8 {{ ['foo', "bar"]|join(',') }}
9 {{ {0: 1, 'foo': 'bar'}|join(',') }}
10 {{ {0: 1, 'foo': 'bar'}|keys|join(',') }}
12 {{ {0: 1, foo: 'bar'}|join(',') }}
13 {{ {0: 1, foo: 'bar'}|keys|join(',') }}
16 {% set a = [1, 2, [1, 2], {'foo': {'foo': 'bar'}}] %}
21 {{ [foo[bar]]|join(',') }}
24 {{ ['foo'|upper, bar|upper, bar == foo]|join(',') }}
41 return ['bar' => 'bar', 'foo' => ['bar' => 'bar']]
44 foo,bar
[all …]
/plugin/dw2pdf/_test/
H A DActionPagenameSortTest.php20 $this->assertLessThan(0, $action->cbPagenameSort(['id' => 'bar'], ['id' => 'bar:start']));
21 … $this->assertGreaterThan(0, $action->cbPagenameSort(['id' => 'bar:bar'], ['id' => 'bar:start']));
34 'bar',
35 'bar:start',
36 'bar:alpha',
37 'bar:bar',
54 'bar',
55 'bar:start',
56 'bar:1_page',
57 'bar:2_page',
[all …]
/plugin/asciidocjs/node_modules/resolve/test/
Dmock.js9 files[path.resolve('/foo/bar/baz.js')] = 'beep';
12 dirs[path.resolve('/foo/bar')] = true;
32 resolve('./baz', opts('/foo/bar'), function (err, res, pkg) {
34 t.equal(res, path.resolve('/foo/bar/baz.js'));
38 resolve('./baz.js', opts('/foo/bar'), function (err, res, pkg) {
40 t.equal(res, path.resolve('/foo/bar/baz.js'));
44 resolve('baz', opts('/foo/bar'), function (err, res) {
45 t.equal(err.message, "Cannot find module 'baz' from '" + path.resolve('/foo/bar') + "'");
49 resolve('../baz', opts('/foo/bar'), function (err, res) {
50 t.equal(err.message, "Cannot find module '../baz' from '" + path.resolve('/foo/bar') + "'");
[all …]
Dmock_sync.js9 files[path.resolve('/foo/bar/baz.js')] = 'beep';
12 dirs[path.resolve('/foo/bar')] = true;
33 resolve.sync('./baz', opts('/foo/bar')),
34 path.resolve('/foo/bar/baz.js')
38 resolve.sync('./baz.js', opts('/foo/bar')),
39 path.resolve('/foo/bar/baz.js')
43 resolve.sync('baz', opts('/foo/bar'));
47 resolve.sync('../baz', opts('/foo/bar'));
55 files[path.resolve('/foo/node_modules/bar/baz.js')] = 'beep';
56 files[path.resolve('/foo/node_modules/bar/package.json')] = JSON.stringify({
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/
DEventDispatcherTest.php35 self::assertFalse($this->dispatcher->hasListeners('bar', 'Bar', 'json'));
36 $this->dispatcher->addListener('bar', static function () {
38 self::assertFalse($this->dispatcher->hasListeners('bar', 'Bar', 'json'));
39 $this->dispatcher->addListener('bar', static function () {
40 }, 'Bar', 'xml');
41 self::assertFalse($this->dispatcher->hasListeners('bar', 'Bar', 'json'));
42 $this->dispatcher->addListener('bar', static function () {
44 self::assertTrue($this->dispatcher->hasListeners('bar', 'Baz', 'json'));
45 self::assertTrue($this->dispatcher->hasListeners('bar', 'Bar', 'json'));
47 self::assertFalse($this->dispatcher->hasListeners('baz', 'Bar', 'xml'));
[all …]
/plugin/icalevents/vendor/sabre/uri/tests/
DSplitTest.php12 '/foo/bar' => ['/foo','bar'],
13 '/foo/bar/' => ['/foo','bar'],
14 'foo/bar/' => ['foo','bar'],
15 'foo/bar' => ['foo','bar'],
16 'foo/bar/baz' => ['foo/bar','baz'],
17 'foo/bar/baz/' => ['foo/bar','baz'],
25 "/\xC3\xA0fo\xC3\xB3/bar" => ["/\xC3\xA0fo\xC3\xB3",'bar'],
/plugin/davcal/vendor/sabre/uri/tests/
H A DSplitTest.php12 '/foo/bar' => ['/foo','bar'],
13 '/foo/bar/' => ['/foo','bar'],
14 'foo/bar/' => ['foo','bar'],
15 'foo/bar' => ['foo','bar'],
16 'foo/bar/baz' => ['foo/bar','baz'],
17 'foo/bar/baz/' => ['foo/bar','baz'],
25 "/\xC3\xA0fo\xC3\xB3/bar" => ["/\xC3\xA0fo\xC3\xB3",'bar'],
/plugin/mdpage/vendor/cebe/markdown/tests/extra-data/
Dcode_in_lists.md4 bar
16 bar
28 bar
40 bar
52 bar
63 bar
69 bar
75 bar
81 bar
87 bar
[all …]
/plugin/mdpage/vendor/cebe/markdown/tests/github-data/
Dcode_in_lists.md4 bar
16 bar
28 bar
40 bar
52 bar
63 bar
69 bar
75 bar
81 bar
87 bar
[all …]
/plugin/findologicxmlexport/vendor/hoa/exception/Test/Unit/
DGroup.php104 $exception1 = new SUT('bar'), $barLine = __LINE__,
115 ' • ' . __METHOD__ . '(): (0) bar' . "\n" .
124 $exception1 = new SUT('bar'), $barLine = __LINE__,
137 ' • ' . __METHOD__ . '(): (0) bar' . "\n" .
240 $exception1 = new SUT('bar'),
276 $group[] = new SUT('bar')
302 $group[] = new SUT('bar')
315 $group['bar'] = new SUT('bar')
317 ->when($result = $group->offsetExists('bar'))
328 $group['bar'] = new SUT('bar')
[all …]
/plugin/webcode/
Dstyle.css13 div.webcode>.webcode-bar {
21 div.webcode>.webcode-bar .webcode-bar-item {
25 div.webcode>.webcode-bar a, div.webcode>.webcode-bar button {
36 div.webcode>.webcode-bar button {
43 div.webcode:hover>.webcode-bar {
47 div.webcode-bar:focus-within>.webcode-bar {
51 div.webcode>.webcode-bar a:focus, div.webcode>.webcode-bar a:hover, div.webcode>.webcode-bar button…
/plugin/struct/_test/
H A DQueryBuilderWhereTest.php26 $where->whereAnd('bar = bar');
28 $this->cleanWS('(foo = foo AND bar = bar)'),
34 $this->cleanWS('(foo = foo AND bar = bar)'),
40 $this->cleanWS('(foo = foo AND bar = bar AND (zab = zab))'),
46 $this->cleanWS('(foo = foo AND bar = bar AND (zab = zab OR fab = fab))'),
63 $sub->whereAnd('bar = bar');
66 $this->cleanWS("(foo = '' OR (bar = bar AND baz = baz))"),
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/ITip/
DBrokerProcessReplyTest.php17 ORGANIZER:mailto:bar@example.org
37 ORGANIZER:mailto:bar@example.org
51 ORGANIZER:mailto:bar@example.org
63 ORGANIZER:mailto:bar@example.org
80 REQUEST-STATUS:2.3;foo-bar!
82 ORGANIZER:mailto:bar@example.org
96 ORGANIZER:mailto:bar@example.org
108 ORGANIZER:mailto:bar@example.org
126 ORGANIZER:mailto:bar@example.org
140 ORGANIZER:mailto:bar@example.org
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/ITip/
DBrokerProcessReplyTest.php17 ORGANIZER:mailto:bar@example.org
37 ORGANIZER:mailto:bar@example.org
51 ORGANIZER:mailto:bar@example.org
63 ORGANIZER:mailto:bar@example.org
80 REQUEST-STATUS:2.3;foo-bar!
82 ORGANIZER:mailto:bar@example.org
96 ORGANIZER:mailto:bar@example.org
108 ORGANIZER:mailto:bar@example.org
126 ORGANIZER:mailto:bar@example.org
140 ORGANIZER:mailto:bar@example.org
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/ITip/
DBrokerProcessReplyTest.php17 ORGANIZER:mailto:bar@example.org
37 ORGANIZER:mailto:bar@example.org
51 ORGANIZER:mailto:bar@example.org
63 ORGANIZER:mailto:bar@example.org
80 REQUEST-STATUS:2.3;foo-bar!
82 ORGANIZER:mailto:bar@example.org
96 ORGANIZER:mailto:bar@example.org
108 ORGANIZER:mailto:bar@example.org
126 ORGANIZER:mailto:bar@example.org
140 ORGANIZER:mailto:bar@example.org
[all …]
/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
DAutoloader.php57 $prefix = 'Foo\Bar\\',
58 $baseDirectoryA = 'Source/Foo/Bar/',
59 $baseDirectoryB = 'Source/Foo/Bar/'
80 $prefix = 'Foo\Bar\\',
81 $baseDirectoryA = 'Source/Foo/Bar/',
82 $baseDirectoryB = 'Source/Foo/Bar/'
103 $prefix = '\\\\Foo\Bar',
104 $baseDirectory = 'Source/Foo/Bar/'
108 ->boolean($autoloader->hasBaseDirectory('Foo\Bar\\'))
110 ->array($autoloader->getBaseDirectories('Foo\Bar\\'))
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
DFunctionTest.php35 $environment->addFunction(new TwigFunction('bar', 'bar', ['needs_environment' => true]));
45 …$node = $this->createFunction('foo', [new ConstantExpression('bar', 1), new ConstantExpression('fo…
46 $tests[] = [$node, 'foo("bar", "foobar")', $environment];
48 $node = $this->createFunction('bar');
49 $tests[] = [$node, 'bar($this->env)', $environment];
51 $node = $this->createFunction('bar', [new ConstantExpression('bar', 1)]);
52 $tests[] = [$node, 'bar($this->env, "bar")', $environment];
57 $node = $this->createFunction('foofoo', [new ConstantExpression('bar', 1)]);
58 $tests[] = [$node, 'foofoo($context, "bar")', $environment];
63 $node = $this->createFunction('foobar', [new ConstantExpression('bar', 1)]);
[all …]

12345678910>>...70