Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 309 for noOutput (0.21 sec)

  1. manifests/addons/dashboards/lib/output.json

    John Howard <******@****.***> 1717524306 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/ProgressLogEventGenerator.java

                listener.onOutput(event);
            }
        }
    
        private void doOutput(RenderableOutputEvent event) {
            for (Operation operation : operations.values()) {
                operation.completeHeader();
            }
            listener.onOutput(event);
        }
    
        private void onComplete(ProgressCompleteEvent progressCompleteEvent) {
            if (operations.isEmpty()) {
                return;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ThrottlingOutputEventListener.java

                        LOGGER.debug("Exception while displaying output", t);
                    }
                }
            }, throttleMs, throttleMs, TimeUnit.MILLISECONDS);
        }
    
        @Override
        public void onOutput(OutputEvent newEvent) {
            synchronized (lock) {
                queue.add(newEvent);
    
                if (queue.size() == 10000) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestListenerIntegrationTest.groovy

                            useJUnitJupiter()
                        }
                    }
                }
                tasks.test {
                    onOutput(
                        KotlinClosure2<TestDescriptor, TestOutputEvent, Any>({ descriptor, event ->
                            println("onOutput:" + descriptor.displayName + ":" + event.message)
                        })
                    )
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue21317.go

    		"7:9: declared and not used: n",
    		"7:12: declared and not used: err",
    	}
    	outStr := string(out)
    	for _, want := range wantErrs {
    		if !strings.Contains(outStr, want) {
    			log.Fatalf("failed to match %q\noutput: %q", want, outStr)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

            this.listener = listener;
            this.buildStatusLabel = buildStatusLabel;
            this.console = console;
            this.consoleMetaData = consoleMetaData;
        }
    
        @Override
        public void onOutput(OutputEvent event) {
            if (event instanceof ProgressStartEvent) {
                ProgressStartEvent startEvent = (ProgressStartEvent) event;
                if (startEvent.isBuildOperationStart()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/JULRedirectorTest.groovy

            then:
            3 * stdErrListener.onOutput('[SEVERE] Test' + EOL)
            3 * stdErrListener.onOutput('[WARNING] Test' + EOL)
            3 * stdErrListener.onOutput('[INFO] Test' + EOL)
            2 * stdErrListener.onOutput('[CONFIG] Test' + EOL)
            2 * stdErrListener.onOutput('[FINE] Test' + EOL)
            2 * stdErrListener.onOutput('[FINER] Test' + EOL)
            1 * stdErrListener.onOutput('[FINEST] Test' + EOL)
            0 * _
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirector.java

            }
    
            @Override
            public void onOutput(CharSequence output) {
                if (outputOwner == null) {
                    throw new RuntimeException("Unable send output event from test executor. Please report this problem. Destination: " + dest + ", event: " + output.toString());
                }
                processor.output(outputOwner, new DefaultTestOutputEvent(dest, output.toString()));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirectorTest.groovy

            redirector.errForwarder.outputOwner == "2"
        }
    
        def "passes output events"() {
            def f = new TestOutputRedirector.Forwarder(processor, TestOutputEvent.Destination.StdErr)
            f.outputOwner = "5"
    
            when: f.onOutput("ala")
    
            then:
            1 * processor.output("5", { DefaultTestOutputEvent e ->
                e.destination == TestOutputEvent.Destination.StdErr
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/StreamBackedStandardOutputListener.java

            this(new OutputStreamWriter(outputStream, Charset.defaultCharset()));
        }
    
        @Override
        public void onOutput(CharSequence output) {
            try {
                appendable.append(output);
                flushable.flush();
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top