Home
last modified time | relevance | path

Searched refs:foo (Results 26 – 50 of 405) sorted by relevance

12345678910>>...17

/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DRequestDecoratorTest.php43 $this->outer->setBaseUrl('/foo');
44 $this->assertEquals('/foo', $this->inner->getBaseUrl());
45 $this->assertEquals('/foo', $this->outer->getBaseUrl());
51 $this->outer->setBaseUrl('/foo');
52 $this->outer->setUrl('/foo/bar');
60 $this->outer->setUrl('/foo?a=b&c=d&e');
104 $this->inner->setUrl('/foo/bar/');
105 $this->inner->setBody('foo');
106 $this->inner->setHeader('foo', 'bar');
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DunindentedCollections.yml47 foo: bar
49 ['collection' => ['key' => ['a', 'b', 'c']], 'foo' => 'bar']
60 foo: bar
62 ['collection' => ['key' => ['a', 'b', 'c'], 'foo' => 'bar']]
69 - key: foo
70 foo: bar
72 ['collection' => [['key' => 'foo', 'foo' => 'bar']]]
79 - key: foo
80 foo: bar
82 ['collection' => [['key' => 'foo', 'foo' => 'bar']]]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Dforce_escape.test4 {% set foo %}
5 foo<br />
8 {{ foo|e('html') -}}
9 {{ foo|e('js') }}
11 {{ foo }}
16 foo&lt;br /&gt;
18 foo<br />
H A Dstatic_calls.test4 {{ 'foo'|static_call_string }}
5 {{ 'foo'|static_call_array }}
7 return ['foo' => 'foo']
9 *foo*
10 *foo*
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/set/
H A Dinheritance_overriding.test6 {% set foo %}bar{% endset %}
9 {{- foo -}}
12 {% set foo %}foo{% endset %}
15 {{- foo -}}
23 foo
24 foo
H A Dcapture_scope.test4 {% set foo %}{{ foo }}{% endset %}
6 {{ foo }}
8 return ['foo' => 'foo']
10 foo
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dwith.rst13 {% set foo = 42 %}
14 {{ foo }} foo is 42 here
16 foo is not visible here any longer
24 {% with { foo: 42 } %}
25 {{ foo }} foo is 42 here
27 foo is not visible here any longer
30 {% set vars = { foo: 42 } %}
41 {% with { foo: 42 } only %}
42 {# only foo is defined #}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/use/
H A Dmultiple.test4 {% use "foo.twig" %}
8 {{ block('foo') }}
10 --TEMPLATE(foo.twig)--
11 {% block content 'foo' %}
12 {% block foo 'foo' %}
20 foo
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Dstatic_calls.test4 {{ static_call_string('foo') }}
5 {{ static_call_array('foo') }}
7 return ['foo' => 'foo']
9 *foo*
10 *foo*
H A Ddump.test6 {{ dump('foo') }}
7 {{ dump('foo', 'bar') }}
9 return ['foo' => 'foo', 'bar' => 'bar']
13 string(3) "foo"
15 string(3) "foo"
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dmd1_inline_html_simple.md4 foo
10 foo
15 <div>foo</div>
22 foo
44 <!-- foo -->
64 <hr class="foo" id="bar" />
66 <hr class="foo" id="bar"/>
68 <hr class="foo" id="bar" >
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/include/
H A Dtemplates_as_array.test4 {{ include(["foo.twig", "bar.twig"]) }}
5 {{- include(["bar.twig", "foo.twig"]) }}
6 --TEMPLATE(foo.twig)--
7 foo
11 foo
12 foo
H A Dwith_variables.test4 {{ include("foo.twig", {'foo': 'bar'}) }}
5 {{- include("foo.twig", vars) }}
6 --TEMPLATE(foo.twig)--
7 {{ foo }}
9 return ['vars' => ['foo' => 'bar']]
H A Dsandbox_disabling.test4 {{ include("foo.twig", sandboxed = true) }}
6 --TEMPLATE(foo.twig)--
7 foo
9 {{ foo|e }}
11 return ['foo' => 'bar<br />']
13 foo
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/include/
H A Dtemplates_as_array.test4 {% include ["foo.twig", "bar.twig"] %}
5 {% include ["bar.twig", "foo.twig"] %}
6 --TEMPLATE(foo.twig)--
7 foo
11 foo
12 foo
H A Donly.test4 {% include "foo.twig" %}
5 {% include "foo.twig" only %}
6 {% include "foo.twig" with vars1 %}
7 {% include "foo.twig" with vars1 only %}
8 {% include "foo.twig" with vars2 %}
9 {% include "foo.twig" with vars2 only %}
10 --TEMPLATE(foo.twig)--
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Dstrings.test4 {{ "foo #{"foo #{bar} baz"} baz" }}
5 {{ "foo #{bar}#{bar} baz" }}
9 foo foo BAR baz baz
10 foo BARBAR baz
H A Dpostfix.test6 {% macro foo() %}foo{% endmacro %}
12 {{ macros.foo() }}
13 {{ (macros).foo() }}
21 foo
22 foo
H A Dternary_operator.test8 {{ 1 == 1 ? 'foo<br />':'' }}
9 {{ foo ~ (bar ? ('-' ~ bar) : '') }}
11 return ['foo' => 'foo', 'bar' => 'bar']
17 foo<br />
18 foo-bar
H A Dbinary.test19 {{ "foo" ~ "bar" }}
20 {{ foo ~ "bar" }}
21 {{ "foo" ~ bar }}
22 {{ foo ~ bar }}
25 return ['foo' => 'bar', 'bar' => 'foo']
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/macro/
H A Dglobal.test4 {% from 'forms.twig' import foo %}
6 {{ foo('foo') }}
7 {{ foo() }}
9 {% macro foo(name) %}{{ name|default('foo') }}{{ global }}{% endmacro %}
/plugin/farmer/lang/ja/
H A Dtab_new_help.txt14 * .htaccess 方式:''%%http://example.org/dokuwiki/!foo/%%'' にアクセス可能な動物用の ''foo''
15 * ドメイン方式:''%%http://www.foo.com/%%'' にアクセス可能な動物用の ''%%www.foo.com%%''
16 * サブドメイン方式: ''%%http://foo.example.com/%%'' にアクセス可能な動物用の ''foo''
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Xml/Notification/
H A DInviteTest.php42 'id' => 'foo',
45 'href' => 'mailto:foo@example.org',
80 'id' => 'foo',
83 'href' => 'mailto:foo@example.org',
115 'id' => 'foo',
118 'href' => 'mailto:foo@example.org',
154 'id' => 'foo',
157 'href' => 'mailto:foo@example.org',
210 'foo-i-will-break' => true,
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dyml_reference.rst20 groups: [foo, bar]
28 serialized_name: foo
33 serialized_name: foo
50 serialized_name: foo
53 groups: [foo, bar]
61 entry_name: foo
65 key_attribute_name: foo
75 pre_serialize: [foo, bar]
76 post_serialize: [foo, bar]
77 post_deserialize: [foo, bar]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/yml/
H A DSimpleSubClassObject.yml3 foo: http://better.foo.example.org
4 old_foo: http://foo.example.org
9 namespace: http://better.foo.example.org
13 namespace: http://foo.example.org
17 namespace: http://new.foo.example.org

12345678910>>...17