| /plugin/findologicxmlexport/vendor/symfony/yaml/Tests/ |
| D | ParserTest.php | 40 public function testSpecifications($expected, $yaml, $comment) argument 42 $this->assertEquals($expected, var_export($this->parser->parse($yaml), true), $comment); 65 foreach ($yamls as $yaml) { 67 $content = $this->parser->parse($yaml); 72 … YAML file cannot contain tabs as indentation at line 2 (near "'.strpbrk($yaml, "\t").'").', $e->g… 79 $yaml = <<<'EOF' 85 $this->assertEquals('foo', $this->parser->parse($yaml)); 92 $yaml = <<<'EOF' 105 $tests['Literal block chomping strip with single trailing newline'] = [$expected, $yaml]; 107 $yaml = <<<'EOF' [all …]
|
| D | InlineTest.php | 30 public function testParse($yaml, $value, $flags = 0) argument 32 …sertSame($value, Inline::parse($yaml, $flags), sprintf('::parse() converts an inline YAML to a PHP… 38 public function testParseWithMapObjects($yaml, $value, $flags = Yaml::PARSE_OBJECT_FOR_MAP) argument 40 $actual = Inline::parse($yaml, $flags); 48 public function testParsePhpConstants($yaml, $value) argument 50 $actual = Inline::parse($yaml, Yaml::PARSE_CONSTANT); 87 public function testDump($yaml, $value, $parseFlags = 0) argument 89 …$this->assertEquals($yaml, Inline::dump($value), sprintf('::dump() converts a PHP structure to an … 201 public function testParseReferences($yaml, $expected) argument 203 $this->assertSame($expected, Inline::parse($yaml, 0, ['var' => 'var-value'])); [all …]
|
| D | DumperTest.php | 87 foreach (preg_split('/^---( %YAML\:1\.0)?/m', $yamls) as $yaml) { 88 if (!$yaml) { 92 $test = $this->parser->parse($yaml); 254 $yaml = $this->dumper->dump($object, 0, 0, Yaml::DUMP_OBJECT_AS_MAP); 256 $this->assertEquals($expected, Yaml::parse($yaml, Yaml::PARSE_OBJECT_FOR_MAP)); 294 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); 304 $this->assertSame($expected, $yaml); 313 $yaml = $this->dumper->dump($outer, 0, 0, Yaml::DUMP_OBJECT_AS_MAP); 317 $this->assertSame($expected, $yaml); 325 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); [all …]
|
| /plugin/statistics/vendor/mustangostang/spyc/php4/ |
| D | test.php4 | 23 $yaml = Spyc::YAMLLoad('../spyc.yaml'); variable 28 if ($yaml[1040] != "Ooo, a numeric key!") 32 if ($yaml['String'] != "Anyone's name, really.") 35 if ($yaml['Int'] !== 13) 38 if ($yaml['True'] !== true) 41 if ($yaml['False'] !== false) 44 if ($yaml['Zero'] !== 0) 47 if (isset($yaml['Null'])) 50 if ($yaml['Float'] !== 5.34) 55 if ($yaml[0] != "PHP Class") [all …]
|
| /plugin/findologicxmlexport/vendor/symfony/yaml/ |
| D | Yaml.php | 54 $yaml = new Parser(); 56 return $yaml->parseFile($filename, $flags); 77 $yaml = new Parser(); 79 return $yaml->parse($input, $flags); 97 $yaml = new Dumper($indent); 99 return $yaml->dump($input, $inline, 0, $flags);
|
| D | CHANGELOG.md | 70 $yaml = <<<YAML 76 Yaml::parse($yaml); 83 $yaml = <<<YAML 89 Yaml::parse($yaml);
|
| D | README.md | 9 * [Documentation](https://symfony.com/doc/current/components/yaml/index.html)
|
| /plugin/combo/vendor/symfony/yaml/ |
| H A D | Yaml.php | 55 $yaml = new Parser(); 57 return $yaml->parseFile($filename, $flags); 78 $yaml = new Parser(); 80 return $yaml->parse($input, $flags); 96 $yaml = new Dumper($indent); 98 return $yaml->dump($input, $inline, 0, $flags);
|
| H A D | CHANGELOG.md | 7 * Add new `lint:yaml dirname --exclude=/dirname/foo.yaml --exclude=/dirname/bar.yaml` 26 ```yaml 32 ```yaml 36 * Added `yaml-lint` binary. 43 …* removed support for implicit STDIN usage in the `lint:yaml` command, use `lint:yaml -` (append a… 50 …* deprecated accepting STDIN implicitly when using the `lint:yaml` command, use `lint:yaml -` (app… 123 $yaml = <<<YAML 129 Yaml::parse($yaml); 136 $yaml = <<<YAML 142 Yaml::parse($yaml);
|
| H A D | README.md | 9 * [Documentation](https://symfony.com/doc/current/components/yaml.html)
|
| /plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Command/ |
| D | LintCommandTest.php | 68 $yaml = <<<YAML 71 …$ret = $this->createCommandTester()->execute(['filename' => $this->createFile($yaml)], ['verbosity… 77 $yaml = <<<YAML 80 …$ret = $this->createCommandTester()->execute(['filename' => $this->createFile($yaml), '--parse-tag… 86 $yaml = <<<YAML 89 …$ret = $this->createCommandTester()->execute(['filename' => $this->createFile($yaml)], ['verbosity…
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/ |
| D | Dockerfile | 17 # Install yaml extension for PHP 19 RUN pecl install yaml && docker-php-ext-enable yaml 37 CMD ["bash", ".ci/yaml-tests.sh"]
|
| /plugin/codemirror/dist/modes/ |
| D | yaml-frontmatter.min.js.map | 1 …yaml-frontmatter/yaml-frontmatter.js"],"names":["mod","exports","module","require","define","amd",…
|
| D | yaml.min.js.map | 1 …yaml/yaml.js"],"names":["mod","exports","module","require","define","amd","CodeMirror","defineMode…
|
| /plugin/questionnaire/ |
| D | miniYAML.php | 86 * @param string $yaml zapis struktury v YAML 89 static function Load($yaml,$options = array()){ argument 96 $yaml = miniYAML::InterpretPHP($yaml,$options["values"]); 103 return $obj->_load($yaml); 154 function _load($yaml){ argument 155 $yaml = str_replace("\r","",$yaml); 156 $ar = explode("\n",$yaml);
|
| /plugin/statistics/vendor/mustangostang/spyc/ |
| D | README.md | 6 for log files, config files, custom protocols, the works. For more information, see http://www.yaml… 17 $Data = Spyc::YAMLLoad('spyc.yaml'); 25 $Data = spyc_load_file('spyc.yaml');
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/ |
| D | CatNamespace.asciidoc | 56 $params['format'] = (string) a short version of the Accept header, e.g. json, yaml 76 $params['format'] = (string) a short version of the Accept header, e.g. json, yaml 97 $params['format'] = (string) a short version of the Accept header, e.g. json, yaml 115 $params['format'] = (string) a short version of the Accept header, e.g. json, yaml 133 $params['format'] = (string) a short version of the Accept header, e.g. json, yaml 167 …arams['format'] = (string) a short version of the Accept header, e.g. json, yaml 192 $params['format'] = (string) a short version of the Accept header, e.g. json, yaml 214 $params['format'] = (string) a short version of the Accept header, e.g. json, yaml 235 $params['format'] = (string) a short version of the Accept header, e.g. json, yaml 257 $params['format'] = (string) a short version of the Accept header, e.g. json, yaml [all …]
|
| /plugin/statistics/ |
| D | composer.lock | 38 "symfony/yaml": "^5.1.7" 42 "ext-yaml": "Necessary for using the Pecl YAML parser" 124 "yaml",
|
| /plugin/combo/vendor/bin/ |
| H A D | yaml-lint.bat | 3 SET BIN_TARGET=%~dp0/yaml-lint
|
| /plugin/statistics/vendor/mustangostang/spyc/examples/ |
| D | yaml-dump.php | 25 $yaml = Spyc::YAMLDump($array,4,60); variable
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/Log/ |
| D | TAP.php | 101 $yaml = new Symfony\Component\Yaml\Dumper; 106 $yaml->dump($diagnostic, 2, 2)
|
| /plugin/golocal/src/ |
| D | go.mod | 15 gopkg.in/yaml.v2 v2.4.0 46 gopkg.in/yaml.v3 v3.0.1 // indirect
|
| D | go.sum | 83 gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0/go.mod h1:WDnlLJ4WF5VGsH/HVa3CI79GS0ol3YnhVnKP8… 84 gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= 85 gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= 86 gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= 87 gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
| /plugin/gitbacked/ |
| D | .editorconfig | 13 [*.{json,jsonc,yml,yaml}]
|
| /plugin/include/ |
| H A D | deleted.files | 1 .travis.yaml
|