Home
last modified time | relevance | path

Searched +refs:make +refs:progress +refs:reporter (Results 1 – 25 of 1228) sorted by relevance

12345678910>>...50

/dports/devel/R-cran-testthat/testthat/man/
H A Dtestthat-package.Rd7 \title{An R package to make testing fun!}
17 reports printed for the summary reporter (default: 10).
18 \item \code{testthat.summary.omit_dots}: Omit progress dots in the summary reporter
/dports/devel/p5-Test-Reporter/Test-Reporter-1.62/
H A DREADME15 $reporter->grade('pass');
17 $reporter->send() || die $reporter->errstr();
28 $reporter->comments('output of a failed make test goes here...');
30 $reporter->send() || die $reporter->errstr();
40 comments => 'output of a failed make test goes here...',
43 $reporter->send() || die $reporter->errstr();
82 Gets or sets the success or failure of the distributions's 'make
122 used for distributions that did not pass a 'make test'.
185 make and expect them to be included in the report.
233 my $reporter;
[all …]
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/man/userguide/
H A Dreport.doc6 desirable to inform the application user of progress, status or
48 \class{dialog} will look for an object named {\tt reporter}. If it can
64 Information on progress, status change of the system, etc. such
72 \tick{progress}
75 effect. A sequence of {\tt progress} reports should be closed with a
78 Terminates a (sequence of) ->report: progress messages.
111 named {\em reporter} to a dialog window of the applications frame. For
113 graphical window window could choose to make place for a small dialog for
137 send(RD, append, label(reporter)),
152 send(Frame, report, progress,
[all …]
H A Dlibdia.doc13 \pllib{pce_report} defines the classes \class{reporter} and
17 \item[\class{reporter}]
24 \class{reporter} and constraining this reporter to occupy the entire
47 Append a tool-button to the bar or, using the name \const{gap}, make
153 send(MyApp, report, progress, 'Printing ...'),
156 send(MyApp, report, progress, done).
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/polymer2/bower_components/mocha/
H A DCHANGELOG.md389 - [#2299]: Fix progress bar in `html` (browser) reporter. ([@AviVahl])
859 * Fix 1585: make _mocha executable again
884 * fix(utils): issue #1558 + make
1006 * fix: re-render the progress bar when progress has changed only (#1151)
1303 * fix HTML progress indicator retina display
1325 * fix `make tm`
1438 …` and `xit()` to the BDD interface. Closes #263 (docs * Changed: make json reporter output prett…
1456 * Changed: made HTML progress indicator smaller
1529 * Added "view source" on hover for HTML reporter to make it obvious
1547 * Added progress indicator to the HTML reporter
[all …]
/dports/devel/R-cran-testthat/testthat/
H A DMD533 a2a562b4b752424a7a66c1bd11e8d718 *R/make-expectation.R
43 758b2751f8e124b79ba99365f23a6d47 *R/reporter-fail.R
45 a7bd75128e704dffeed4b300de5b27e9 *R/reporter-list.R
49 8f289ec9a86b1973f9b30015e428210a *R/reporter-progress.R
54 ab483ded469442eb3e7de3c5abf1bdad *R/reporter-tap.R
56 d379da0a76cba131735f2f8247fc5803 *R/reporter-zzz.R
57 a50ff2a524dbb557b6f010c08447016a *R/reporter.R
238 a7743f86e8dc9048dd1b41c29e6046ad *tests/testthat/_snaps/reporter-progress.md
306 3161831aded4882822106344d35eed7e *tests/testthat/test-list-reporter/test-exercise-list-reporter.R
309 80f9ec8717b0d42b02dc49422f715f63 *tests/testthat/test-make-expectation.R
[all …]
H A DNEWS.md198 * New `testthat.progress.verbose_skips` option. Set to `FALSE` to stop
288 * `test_that()` now sets a number of options and env vars to make output as
317 the name of a reporter.
322 of failures (from option `testthat.progress.max_fails`) after each
457 displayed by the reporter (#936).
658 * New `testthat_examples()` and `testthat_example()` make it easy to access
660 to make it easier to understand how to use the package.
739 * `expect_error()` gains a `class` argument that allows you to make an
835 ### New default reporter
861 * New option `testthat.summary.omit_dots = TRUE` hides the progress dots
[all …]
/dports/devel/R-cran-progressr/progressr/
H A DNEWS178 * Add the 'pbcol' handler, which renders the progress as a colored progress
185 * Zero-amount progress updates never reached the progress handlers.
195 progress will not interfere with the progress output and vice versa, which
205 will be "pushed" above the progress bar.
227 * The 'progress' handler, which uses progress::progress_bar(), did not support
257 to handler_<name>() to make it easier to use autocompletion on them.
266 * handlers() gained argument 'append' to make it easier to append handlers.
324 the progress step to zero, e.g. progress(amount = 0). This type of
447 reporter functions.
519 * Add argument 'clear' to control whether progress reporter should clear
[all …]
/dports/www/trac-devel/Trac-1.5.3/trac/wiki/default-pages/
H A DTracTicketsCustomFields41 * reporter
158 '''Note''': To make a `select` type field optional, specify a leading `|` in `fieldname.options` (e…
162 …ill need a join on the 2 tables. Let's use an example with a custom ticket field called `progress`.
166 id AS ticket, summary, owner, c.value AS progress
168 WHERE status IN ('assigned') AND t.id = c.ticket AND c.name = 'progress'
172 '''Note''': This will only show tickets that have progress set in them. This is '''not the same as …
174 However, if you want to show all ticket entries (with progress defined and without), you need to us…
181 reporter AS _reporter,
182 (CASE WHEN c.value = '0' THEN 'None' ELSE c.value END) AS progress
184 LEFT OUTER JOIN ticket_custom c ON (t.id = c.ticket AND c.name = 'progress')
/dports/audio/calf-lv2/calf-648f05e85287cf08af198bdd9e52baba95b502ec/src/
H A Dorgan.cpp244 …define LARGE_WAVEFORM_PROGRESS() do { if (reporter) { progress += 100; reporter->report_progress(f…
253 void organ_voice_base::precalculate_waves(progress_report_iface *reporter) in precalculate_waves() argument
263 float progress = 0.0; in precalculate_waves() local
265 if (reporter) in precalculate_waves()
266 reporter->report_progress(0, "Precalculating small waveforms"); in precalculate_waves()
351 waves[wave_w1].make(bl, tmp); in precalculate_waves()
358 waves[wave_w2].make(bl, tmp); in precalculate_waves()
365 waves[wave_w3].make(bl, tmp); in precalculate_waves()
372 waves[wave_w4].make(bl, tmp); in precalculate_waves()
379 waves[wave_w5].make(bl, tmp); in precalculate_waves()
[all …]
/dports/audio/lmms/lmms-1.2.2/plugins/LadspaEffect/calf/src/
H A Dorgan.cpp238 …define LARGE_WAVEFORM_PROGRESS() do { if (reporter) { progress += 100; reporter->report_progress(f…
247 void organ_voice_base::precalculate_waves(progress_report_iface *reporter) in precalculate_waves() argument
257 float progress = 0.0; in precalculate_waves() local
259 if (reporter) in precalculate_waves()
260 reporter->report_progress(0, "Precalculating small waveforms"); in precalculate_waves()
345 waves[wave_w1].make(bl, tmp); in precalculate_waves()
352 waves[wave_w2].make(bl, tmp); in precalculate_waves()
359 waves[wave_w3].make(bl, tmp); in precalculate_waves()
366 waves[wave_w4].make(bl, tmp); in precalculate_waves()
373 waves[wave_w5].make(bl, tmp); in precalculate_waves()
[all …]
/dports/devel/grpc130/grpc-1.30.2/src/proto/grpc/lb/v1/
H A Dload_reporter.proto35 // The hostname this load reporter client is requesting load for.
39 // gone to this load reporter client, but was not able to be sent since the
40 // load reporter client has disconnected. load_key is sent in orphaned load
113 // Indicates whether this load report is an in-progress load report in which
118 // make this explicit in hierarchy. From the log, I see in_progress_report_
122 // The number of calls in progress (instantaneously) per load balancer id.
/dports/devel/grpc134/grpc-1.34.1/src/proto/grpc/lb/v1/
H A Dload_reporter.proto35 // The hostname this load reporter client is requesting load for.
39 // gone to this load reporter client, but was not able to be sent since the
40 // load reporter client has disconnected. load_key is sent in orphaned load
113 // Indicates whether this load report is an in-progress load report in which
118 // make this explicit in hierarchy. From the log, I see in_progress_report_
122 // The number of calls in progress (instantaneously) per load balancer id.
/dports/devel/grpc/grpc-1.42.0/src/proto/grpc/lb/v1/
H A Dload_reporter.proto35 // The hostname this load reporter client is requesting load for.
39 // gone to this load reporter client, but was not able to be sent since the
40 // load reporter client has disconnected. load_key is sent in orphaned load
113 // Indicates whether this load report is an in-progress load report in which
118 // make this explicit in hierarchy. From the log, I see in_progress_report_
122 // The number of calls in progress (instantaneously) per load balancer id.
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/src/proto/grpc/lb/v1/
H A Dload_reporter.proto35 // The hostname this load reporter client is requesting load for.
39 // gone to this load reporter client, but was not able to be sent since the
40 // load reporter client has disconnected. load_key is sent in orphaned load
113 // Indicates whether this load report is an in-progress load report in which
118 // make this explicit in hierarchy. From the log, I see in_progress_report_
122 // The number of calls in progress (instantaneously) per load balancer id.
/dports/games/renpy/renpy-7.4.11-sdk/launcher/game/
H A Ddistribute.rpy289 # If it's documentation, keep the file. (But also make
380 `reporter`
423 # Status reporter.
424 self.reporter = reporter
797 self.reporter.progress(_("Archiving files..."), i, fll)
1135 … self.reporter.progress(_("Unpacking the Macintosh application for signing..."), i, len(fl))
1334 # The path to the DMG, if we're going to make one.
1400 …self.reporter.progress(_("Writing the [variant] [format] package."), i, len(fl), variant=variant, …
1510 Displays progress using the gui.
1538 Displays progress on the command line.
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/devtools-frontend/src/node_modules/mocha/
H A DCHANGELOG.md482 - [#2661](https://github.com/mochajs/mocha/issues/2661): `progress` reporter now accepts reporter o…
832 …#2299](https://github.com/mochajs/mocha/pull/2299): Fix progress bar in `html` (browser) reporter.…
1060 - Fix 1585: make \_mocha executable again
1199 - fix: re-render the progress bar when progress has changed only ([#1151](https://github.com/mochaj…
1460 - fix HTML progress indicator retina display
1480 - fix `make tm`
1581 …63](https://github.com/mochajs/mocha/issues/263) (docs \* Changed: make json reporter output prett…
1595 - Changed: made HTML progress indicator smaller
1659 - Added "view source" on hover for HTML reporter to make it obvious
1675 - Added progress indicator to the HTML reporter
[all …]
/dports/devel/cquery/cquery-20180718/third_party/doctest/doc/markdown/
H A Droadmap.md12 - move from printf to using streams in the current console reporter and clean that mess
17 - a compact reporter
18 - a progress reporter - or maybe just an option for the console reporter
19 - an xml reporter
20 - xUnit reporter
21 - a listener interface - similar to a reporter - look at Catch
65 - ability to make the framework not capture unexpected exceptions - as requested [here](https://git…
107 …t_test/test_output/test_tools_support_for_logging/checkpoints.html) (also make all assert/subcase/…
144 - make the _MESSAGE assert macros work with variadic arguments - and maybe write the ones for binar…
168 - put everything from the ```detail``` namespace also in a nested anonymous namespace to make them …
/dports/devel/py-resolvelib/resolvelib-0.8.1/
H A DCHANGELOG.rst7 - A new reporter hook ``resolving_conflicts`` is added. The resolver triggers
32 - When merging a candidate's dependencies, make sure the merge target is
125 - Add ``parent`` argument to the ``add_requirement()`` reporter hook. `#46 <https://github.com/sar…
162 …_requirements`, `adding_candidate`, and `replacing_candidate` to report progress in requirement pi…
/dports/devel/git-town/git-town-7.6.0/vendor/github.com/cucumber/godog/godog-0.9.0/
H A DREADME.md221 is to make steps orthogonal, small and simple to read for a user. Whether
231 - [cucumber-html-reporter](https://github.com/gkushang/cucumber-html-reporter)
234 image](https://github.com/myie/cucumber-html-reporter) for usage
269 Format: "progress", // can define default values
307 Format: "progress",
325 format := "progress"
362 project based commands: `alias godog-wip="godog --format=progress
381 run the suite concurrently in order to make sure there is no state
/dports/devel/git-town/git-town-7.6.0/vendor/github.com/cucumber/godog/
H A DREADME.md221 is to make steps orthogonal, small and simple to read for a user. Whether
231 - [cucumber-html-reporter](https://github.com/gkushang/cucumber-html-reporter)
234 image](https://github.com/myie/cucumber-html-reporter) for usage
269 Format: "progress", // can define default values
307 Format: "progress",
325 format := "progress"
362 project based commands: `alias godog-wip="godog --format=progress
381 run the suite concurrently in order to make sure there is no state
/dports/devel/py-buildbot/buildbot-3.4.1/docs/relnotes/
H A D0.9.0.rst51 …We've taken pains to not make either a requirement for users - you can simply 'pip install' ``buil…
141 Misc. clean-up and reorganization in order to make the code a bit more readable.
170 * ``GithubStatusPush`` has been ported to reporter API.
245 To make this happen, the return result of ``reviewCB`` and ``summaryCB``
267 :bb:reporter:`GerritStatusPush` will not work
471 * :bb:reporter:`IRC` has the following changes:
528 If you have custom code using these methods, check your code and make the necessary adjustments.
555 * The ``progress`` attributes of both :py:class:`buildbot.process.buildstep.BuildStep` and :py:clas…
556 …Subclasses should only be accessing the progress-tracking mechanics via the :py:meth:`buildbot.pro…
579 …Please run ``make isort`` before creating a PR or use any available editor plugin in order to reor…
[all …]
H A D0.9.0b1.rst49 …We've taken pains to not make either a requirement for users - you can simply 'pip install' ``buil…
67 * Not all status plugin are converted to the new reporter API.
69 Irc support is limited, and not converted to reporter api
141 * :bb:reporter:`MailNotifier` no longer forces SSL 3.0 when ``useTls`` is true.
166 To make this happen, the return result of ``reviewCB`` and ``summaryCB``
188 :bb:reporter:`GerritStatusPush` will not work
196 More detailed information is available in :bb:reporter:`GerritStatusPush`
343 * :bb:reporter:`IRC` has the following changes:
397 If you have custom code using these methods, check your code and make the necessary adjustments.
424 * The ``progress`` attributes of both :py:class:`buildbot.process.buildstep.BuildStep` and :py:clas…
[all …]
/dports/sysutils/nomad/nomad-1.1.0/contributing/
H A Dissue-labels.md4 open a GitHub issue. The workflows described here are a work-in-progress.
27 stage/waiting-reply | We need more information from the reporter.
40 When you as a community member make a feature request, a Nomad maintainer will
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/doc/ci/
H A Dunit_test_reports.md89 To make the Unit test report output files browsable, include them with the
106 - bundle exec rspec --format progress --format RspecJunitFormatter --out rspec.xml
278 The [Karma-junit-reporter](https://github.com/karma-runner/karma-junit-reporter) npm package can ge…
295 The [JUnit Reporter for Mocha](https://github.com/michaelleeallen/mocha-junit-reporter) NPM package…
303 - mocha --reporter mocha-junit-reporter --reporter-options mochaFile=junit.xml
358 details, including the cases that make up the suite.
373 …ere is [an issue](https://gitlab.com/gitlab-org/gitlab/-/issues/268035) open to make this optional.

12345678910>>...50