Home
last modified time | relevance | path

Searched refs:group (Results 426 – 450 of 769) sorted by path

1...<<11121314151617181920>>...31

/plugin/findologicxmlexport/vendor/hoa/file/
H A DGeneric.php384 * @param mixed $group Group name or number.
387 public function changeGroup($group) argument
389 return chgrp($this->getStreamName(), $group);
/plugin/findologicxmlexport/vendor/hoa/file/Link/
H A DLink.php95 * @param mixed $group Group name or number.
98 public function changeGroup($group) argument
100 return lchgrp($this->getStreamName(), $group);
/plugin/findologicxmlexport/vendor/hoa/math/
H A DArithmetic.pp68 ( ::bracket_:: expression() ::_bracket:: #group )
H A DREADME.md113 * > > > > #group
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/
H A DArithmetic.pp67 ( ::bracket_:: expression() ::_bracket:: #group )
/plugin/findologicxmlexport/vendor/hoa/math/Visitor/
H A DArithmetic.php198 $group = new $classname(
204 $element->setParent($group);
206 $this->visit($group, $acc, $eldnah);
/plugin/findologicxmlexport/vendor/hoa/protocol/Test/Unit/
H A DWrapper.php256 $this->function->chgrp = function ($path, $group) use (&$_path, &$_group) {
258 $_group = $group;
263 $group = 'root',
266 ->when($result = $wrapper->stream_metadata('foo', $grp, $group))
272 ->string($group)
/plugin/findologicxmlexport/vendor/hoa/regex/
H A DGrammar.pp75 // Capturing group.
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DTouchable.php127 * @param mixed $group Group name or number.
130 public function changeGroup($group); argument
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md94 - I want to change the default group used when overriding groups of deeper branches [\#898](https:/…
96 - Simplify deep group exclusion strategy [\#946](https://github.com/schmittjoh/serializer/pull/946)…
242 - Double logic for group exclusion \(20% faster\) [\#941](https://github.com/schmittjoh/serializer/…
477 - When setting a group of serialization, the inheritance doesn't work anymore [\#328](https://githu…
565 - Discriminator is not exposed when using a group exclusion strategy [\#157](https://github.com/sch…
682 - Document the implied 'Default' property group when no group is specified [\#661](https://github.c…
697 - YML virtual\_properties no group exlcusion [\#656](https://github.com/schmittjoh/serializer/issue…
705 - Use different accessor for each group [\#420](https://github.com/schmittjoh/serializer/issues/420)
707 - Specify group along with MaxDepth [\#150](https://github.com/schmittjoh/serializer/issues/150)
875 - \[doc\] Default group informations [\#345](https://github.com/schmittjoh/serializer/pull/345) ([e…
[all …]
H A DUPGRADING.md13 - "deeper branch group exclusion strategy" has a different behaviour, the latest group is used inst…
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst91 ``Default`` group, which can be used when specifying groups in the serialization
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dxml_reference.rst15 <group>foo</group>
/plugin/findologicxmlexport/vendor/jms/serializer/src/Exclusion/
H A DGroupsExclusionStrategy.php32 foreach ($groups as $group) {
33 if (is_array($group)) {
42 foreach ($groups as $group) {
43 $this->groups[$group] = true;
74 foreach ($property->groups as $group) {
75 if (isset($this->groups[$group])) {
85 foreach ($property->groups as $group) {
86 if (in_array($group, $groups)) {
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/
H A Dbootstrap.min.css5group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/
H A DChangeLog-5.7.md19 …here is a test class with `@group` and provider throwing exception in it, tests are run with `--ex…
157 * Fixed [#2435](https://github.com/sebastianbergmann/phpunit/issues/2435): Empty `@group` annotatio…
164 * Fixed [#2427](https://github.com/sebastianbergmann/phpunit/issues/2427): TestDox group configurat…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DGroupTestSuite.php31 foreach ($groups as $group) {
32 $groupSuites[$group] = new PHPUnit_Framework_TestSuite($name . ' - ' . $group);
33 $this->addTest($groupSuites[$group]);
48 foreach ($groups as $group) {
50 if ($group == $testGroup) {
51 $groupSuites[$group]->addTest($test);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestSuite.php225 foreach ($groups as $group) {
226 if (!isset($this->groups[$group])) {
227 $this->groups[$group] = [$test];
229 $this->groups[$group][] = $test;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/Filter/
H A DGroup.php27 foreach ($suite->getGroupDetails() as $group => $tests) {
28 if (in_array($group, $groups)) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/TextUI/
H A DCommand.php150 foreach ($groups as $group) {
151 print " - $group\n";
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DConfiguration.php291 foreach ($this->xpath->query($root . '/include/group') as $group) {
292 $groups['include'][] = (string) $group->textContent;
295 foreach ($this->xpath->query($root . '/exclude/group') as $group) {
296 $groups['exclude'][] = (string) $group->textContent;
1054 $group = (string) $directory->getAttribute('group');
1056 $group = 'DEFAULT';
1063 'group' => $group
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DResultPrinter.php378 foreach ($test->getGroups() as $group) {
379 if (in_array($group, $this->groups)) {
388 foreach ($test->getGroups() as $group) {
389 if (in_array($group, $this->excludeGroups)) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/ResultPrinter/
H A DXML.php171 function ($group) {
172 if ($group == 'small' || $group == 'medium' || $group == 'large') {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D2435.phpt2 GH-2435: Test empty @group annotation
H A D322.phpt2 GH-322: group commandline option should override group/exclude setting in phpunit.xml
9 $_SERVER['argv'][4] = '--group';

1...<<11121314151617181920>>...31