Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 355 for Reporter (0.14 sec)

  1. samples/addons/grafana.yaml

    ponse_bytes_sum{source_workload=\"istio-ingressgateway\", reporter=\"source\"}[1m]))","format":"time_series","intervalFactor":1,"legendFormat":"istio-ingressgateway","refId":"A"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"sum(irate(istio_response_bytes_sum{source_workload_namespace!=\"istio-system\", reporter=\"source\"}[1m])) + sum(irate(istio_request_bytes_sum{source_workload_namespace!=\"istio-system\", reporter=\"source\"}[1m]))","format":"time_series","intervalFactor"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  2. src/cmd/gofmt/gofmt.go

    // A reporter reports output, warnings, and errors.
    type reporter struct {
    	prev  <-chan *reporterState
    	state *reporterState
    }
    
    // reporterState carries the state of a reporter instance.
    //
    // Only one reporter at a time may have access to a reporterState.
    type reporterState struct {
    	out, err io.Writer
    	exitCode int
    }
    
    // getState blocks until any prior reporters are finished with the reporter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

        }
    
        def doesNothingWhenBuildIsSuccessful() {
            expect:
            reporter.buildFinished(result(null))
            output.value == ''
        }
    
        def reportsBuildFailure() {
            GradleException exception = new GradleException(MESSAGE);
    
            expect:
            reporter.buildFinished(result(exception))
            output.value == """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks_linux.go

    	}
    	return warnings, errorList
    }
    
    // addOSValidator adds a new OSValidator
    func addOSValidator(validators []system.Validator, reporter *system.StreamReporter) []system.Validator {
    	validators = append(validators, &system.OSValidator{Reporter: reporter}, &system.CgroupsValidator{Reporter: reporter})
    	return validators
    }
    
    // addIPv6Checks adds IPv6 related checks
    func addIPv6Checks(checks []Checker) []Checker {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

        List<BuildExperimentSpec> specs = []
        boolean measureGarbageCollection = true
    
        final DataReporter<R> reporter
    
        AbstractCrossBuildPerformanceTestRunner(BuildExperimentRunner experimentRunner, DataReporter<R> dataReporter, IntegrationTestBuildContext buildContext) {
            this.reporter = dataReporter
            this.experimentRunner = experimentRunner
            this.buildContext = buildContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblems.java

    import org.gradle.api.problems.Problems;
    
    public interface InternalProblems extends Problems {
    
        /**
         * Returns a reporter then provides additional problem service functionality specific for Gradle internals.
         * <p>
         *
         * @return The reporter.
         */
        InternalProblemReporter getInternalReporter();
    
        Multimap<Throwable, Problem> getProblemsForThrowables();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

        private BuildAction buildAction
    
        CrossVersionPerformanceTestRunner(BuildExperimentRunner experimentRunner, DataReporter<CrossVersionPerformanceResults> reporter, ReleasedVersionDistributions releases, IntegrationTestBuildContext buildContext) {
            this.reporter = reporter
            this.experimentRunner = experimentRunner
            this.releases = releases
            this.buildContext = buildContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

            private final Action<ExecutionListener> action;
            private final Action<Throwable> reporter;
    
            WithLogging(ServiceRegistry loggingServices, List<String> args, LoggingConfiguration loggingConfiguration, Action<ExecutionListener> action, Action<Throwable> reporter) {
                this.loggingServices = loggingServices;
                this.args = args;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

        }
    
        private void reportDeprecation(final DeprecatedFeatureUsage usage, final ProblemDiagnostics diagnostics) {
            InternalProblemReporter reporter = ((InternalProblems) problemsService).getInternalReporter();
            Problem problem = reporter.create(new Action<InternalProblemSpec>() {
                @Override
                public void execute(InternalProblemSpec builder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

            InternalProblems problemsService = validationContext.getProblemsService();
            InternalProblemReporter reporter = problemsService.getInternalReporter();
            List<Problem> problems = validationContext.getProblems();
            for (Problem problem : problems) {
                reporter.report(problem);
            }
    
            Map<Severity, ImmutableList<Problem>> problemsMap = problems.stream()
                .collect(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top