Home
last modified time | relevance | path

Searched refs:combinedOutput (Results 1 – 21 of 21) sorted by relevance

/dports/net-im/signald/signald-65cf5e8a1cf2b81fd1f5c3936e0164d53c5a9b29/tools/protocol-validator/
H A Dmain.go37 combinedOutput := checkOutputs{}
40 combinedOutput.failures = append(combinedOutput.failures, result.failures...)
41 combinedOutput.warnings = append(combinedOutput.warnings, result.warnings...)
49 combinedOutput.failures = append(combinedOutput.failures, d.failures...)
50 combinedOutput.warnings = append(combinedOutput.warnings, d.warnings...)
52 for _, failure := range combinedOutput.failures {
56 for _, warn := range combinedOutput.warnings {
60 recordMetrics(combinedOutput)
62 if len(combinedOutput.failures) > 0 {
/dports/www/mediawiki135/mediawiki-1.35.5/includes/Revision/
H A DRevisionRenderer.php223 $combinedOutput = new ParserOutput( null );
227 $options->registerWatcher( [ $combinedOutput, 'recordOption' ] );
234 $combinedOutput->mergeInternalMetaDataFrom( $out );
235 $combinedOutput->mergeTrackingMetaDataFrom( $out );
265 $combinedOutput->mergeHtmlMetaDataFrom( $out );
268 $combinedOutput->setText( $html );
272 return $combinedOutput;
/dports/www/mediawiki137/mediawiki-1.37.1/includes/Revision/
H A DRevisionRenderer.php225 $combinedOutput = new ParserOutput( null );
229 $options->registerWatcher( [ $combinedOutput, 'recordOption' ] );
236 $combinedOutput->mergeInternalMetaDataFrom( $out );
237 $combinedOutput->mergeTrackingMetaDataFrom( $out );
267 $combinedOutput->mergeHtmlMetaDataFrom( $out );
270 $combinedOutput->setText( $html );
274 return $combinedOutput;
/dports/www/mediawiki136/mediawiki-1.36.3/includes/Revision/
H A DRevisionRenderer.php225 $combinedOutput = new ParserOutput( null );
229 $options->registerWatcher( [ $combinedOutput, 'recordOption' ] );
236 $combinedOutput->mergeInternalMetaDataFrom( $out );
237 $combinedOutput->mergeTrackingMetaDataFrom( $out );
267 $combinedOutput->mergeHtmlMetaDataFrom( $out );
270 $combinedOutput->setText( $html );
274 return $combinedOutput;
/dports/sysutils/istio/istio-1.6.7/pkg/test/shell/
H A Dshell.go28 func Execute(combinedOutput bool, format string, args ...interface{}) (string, error) {
44 return ExecuteArgs(nil, combinedOutput, parts[0], argStrings...)
47 func ExecuteArgs(env []string, combinedOutput bool, name string, args ...string) (string, error) {
59 if combinedOutput {
/dports/sysutils/chezmoi/chezmoi-2.9.3/internal/chezmoilog/
H A Dchezmoilog.go129 combinedOutput, err := cmd.CombinedOutput()
133 Bytes("combinedOutput", Output(combinedOutput, err)).
135 Int("size", len(combinedOutput)).
137 return combinedOutput, err
/dports/www/pear-HTML_AJAX/HTML_AJAX-0.5.8/HTML/AJAX/
H A DServer.php358 $combinedOutput = false;
360 $combinedOutput = true;
374 if (!$combinedOutput && isset($stubETag)) {
394 if (!$combinedOutput && isset($stubETag)) {
412 if (!$combinedOutput && isset($jsETag)) {
432 if (!$combinedOutput && isset($jsETag)) {
/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/includes/Revision/
H A DRenderedRevisionTest.php52 $combinedOutput = new ParserOutput( null );
58 $combinedOutput->mergeInternalMetaDataFrom( $out );
59 $combinedOutput->mergeTrackingMetaDataFrom( $out );
73 $combinedOutput->mergeHtmlMetaDataFrom( $out );
76 $combinedOutput->setText( $html );
79 return $combinedOutput;
373 $combinedOutput = $rr->getRevisionParserOutput();
377 $combinedHtml = $combinedOutput->getText();
389 $combinedLinks = $combinedOutput->getLinks();
H A DRevisionRendererTest.php415 $combinedOutput = $rr->getRevisionParserOutput();
419 $combinedHtml = $combinedOutput->getText();
443 $this->assertStringNotContainsString( 'class="mw-parser-output"', $combinedOutput->getRawText() );
445 $combinedLinks = $combinedOutput->getLinks();
/dports/www/mediawiki136/mediawiki-1.36.3/tests/phpunit/includes/Revision/
H A DRenderedRevisionTest.php52 $combinedOutput = new ParserOutput( null );
58 $combinedOutput->mergeInternalMetaDataFrom( $out );
59 $combinedOutput->mergeTrackingMetaDataFrom( $out );
73 $combinedOutput->mergeHtmlMetaDataFrom( $out );
76 $combinedOutput->setText( $html );
79 return $combinedOutput;
373 $combinedOutput = $rr->getRevisionParserOutput();
377 $combinedHtml = $combinedOutput->getText();
389 $combinedLinks = $combinedOutput->getLinks();
H A DRevisionRendererTest.php418 $combinedOutput = $rr->getRevisionParserOutput();
422 $combinedHtml = $combinedOutput->getText();
446 $this->assertStringNotContainsString( 'class="mw-parser-output"', $combinedOutput->getRawText() );
448 $combinedLinks = $combinedOutput->getLinks();
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/includes/Revision/
H A DRenderedRevisionTest.php52 $combinedOutput = new ParserOutput( null );
58 $combinedOutput->mergeInternalMetaDataFrom( $out );
59 $combinedOutput->mergeTrackingMetaDataFrom( $out );
73 $combinedOutput->mergeHtmlMetaDataFrom( $out );
76 $combinedOutput->setText( $html );
79 return $combinedOutput;
413 $combinedOutput = $rr->getRevisionParserOutput();
417 $combinedHtml = $combinedOutput->getText();
429 $combinedLinks = $combinedOutput->getLinks();
H A DRevisionRendererTest.php445 $combinedOutput = $rr->getRevisionParserOutput();
449 $combinedHtml = $combinedOutput->getText();
473 $this->assertStringNotContainsString( 'class="mw-parser-output"', $combinedOutput->getRawText() );
475 $combinedLinks = $combinedOutput->getLinks();
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/johannesboyne/gofakes3/
H A Dawscli_test.go181 func (tc *testCLI) combinedOutput(method string, subcommand string, args ...string) (out []byte) { func
204 out := tc.combinedOutput("s3", "ls", fmt.Sprintf("s3://%s/%s", bucket, prefix))
231 out := tc.combinedOutput("s3", "ls")
247 return tc.combinedOutput("s3", "cp", fmt.Sprintf("s3://%s/%s", bucket, object), "-")
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/johannesboyne/gofakes3/
H A Dawscli_test.go181 func (tc *testCLI) combinedOutput(method string, subcommand string, args ...string) (out []byte) { func
204 out := tc.combinedOutput("s3", "ls", fmt.Sprintf("s3://%s/%s", bucket, prefix))
231 out := tc.combinedOutput("s3", "ls")
247 return tc.combinedOutput("s3", "cp", fmt.Sprintf("s3://%s/%s", bucket, object), "-")
/dports/net/syncthing/syncthing-1.18.1/syncthing/lib/versioner/
H A Dexternal.go100 combinedOutput, err := cmd.CombinedOutput()
101 l.Debugln("external command output:", string(combinedOutput))
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/its/
H A Dtester.go220 combinedOutput, err := cmd.CombinedOutput()
222 dmt.rawOutput = string(combinedOutput)
/dports/sysutils/docker-machine/machine-0.16.2/its/
H A Dtester.go220 combinedOutput, err := cmd.CombinedOutput()
222 dmt.rawOutput = string(combinedOutput)
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/cmd/link/internal/ld/
H A Dlib.go1331 combinedOutput := *flagOutfile + "~"
1332 if err := machoCombineDwarf(*flagOutfile, dsym, combinedOutput); err != nil {
1336 if err := os.Rename(combinedOutput, *flagOutfile); err != nil {
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/link/internal/ld/
H A Dlib.go1696 combinedOutput := *flagOutfile + "~"
1706 if err := machoCombineDwarf(ctxt, exef, exem, dsym, combinedOutput); err != nil {
1710 if err := os.Rename(combinedOutput, *flagOutfile); err != nil {
/dports/lang/go-devel/go-dragonfly-amd64-bootstrap/src/cmd/link/internal/ld/
H A Dlib.go1553 combinedOutput := *flagOutfile + "~"
1565 if err := machoCombineDwarf(ctxt, exef, exem, dsym, combinedOutput); err != nil {
1569 if err := os.Rename(combinedOutput, *flagOutfile); err != nil {