Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 333 for message1 (0.19 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

            file("message") << """
                hello from settings
            """
            if (OperatingSystem.current().windows) {
                scriptFile << """
                    def message = providers.exec {
                        commandLine "cmd.exe", "/d", "/c", "type", "message"
                    }.standardOutput.asText.get()
                    print message
                """
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. cmd/server-startup-msg.go

    	// Prints credential, region and browser access.
    	printServerCommonMsg(strippedAPIEndpoints)
    
    	// Prints `mc` cli configuration message chooses
    	// first endpoint as default.
    	printCLIAccessMsg(strippedAPIEndpoints[0], "myminio")
    
    	// Prints documentation message.
    	printObjectAPIMsg()
    }
    
    // Returns true if input is IPv6
    func isIPv6(host string) bool {
    	h, _, err := net.SplitHostPort(host)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprog/crash.go

    	return string(p)
    }
    
    // Test that panic message is not clobbered.
    // See issue 30150.
    func DoublePanic() {
    	defer func() {
    		panic(P("YYY"))
    	}()
    	panic(P("XXX"))
    }
    
    // Test that panic while panicking discards error message
    // See issue 52257
    type exampleError struct{}
    
    func (e exampleError) Error() string {
    	panic("important multi-line\nerror message")
    }
    
    func ErrorPanic() {
    	panic(exampleError{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestOutputEvent.java

    /**
     * Standard output or standard error message logged during the execution of the test
     */
    public interface TestOutputEvent {
    
        /**
         * Destination of the message
         */
        Destination getDestination();
    
        /**
         * Message content
         */
        String getMessage();
    
        /**
         * Destination of the message
         */
        enum Destination {
            StdOut, StdErr
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptErrorIntegrationTest.groovy

    class BuildScriptErrorIntegrationTest extends AbstractIntegrationSpec {
    
        def "setup"() {
            settingsFile << "rootProject.name = 'ProjectError'"
        }
    
        def "produces reasonable error message when buildFile evaluation fails with Groovy Exception"() {
            buildFile << """
        createTakk('do-stuff')
    """
            when:
            fails()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/UncheckedIOException.java

     */
    public class UncheckedIOException extends RuntimeException {
        public UncheckedIOException() {
        }
    
        public UncheckedIOException(String message) {
            super(message);
        }
    
        public UncheckedIOException(String message, Throwable cause) {
            super(message, cause);
        }
    
        public UncheckedIOException(Throwable cause) {
            super(cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            throwWhen(new IOException("Could not dispatch a message to the daemon.", new IOException("An existing connection was forcibly closed by the remote host")), iteration == 1)
    
            then:
            IOException ioe = thrown()
            ioe.message == "Could not dispatch a message to the daemon."
        }
    
        private static void throwWhen(Throwable throwable, boolean condition) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

                this.messages = messages
            }
    
            void failsWith(String singleMessage, Severity severity) {
                failsWith([(singleMessage): severity])
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/GradleException.java

    public class GradleException extends RuntimeException {
        public GradleException() {
            super();
        }
    
        public GradleException(String message) {
            super(message);
        }
    
        public GradleException(String message, @Nullable Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. cmd/metrics-v3-logger-webhook.go

    	webhookFailedMessagesMD = NewCounterMD(webhookFailedMessages,
    		"Number of messages that failed to send",
    		allWebhookLabels...)
    	webhookQueueLengthMD = NewGaugeMD(webhookQueueLength,
    		"Webhook queue length",
    		allWebhookLabels...)
    	webhookTotalMessagesMD = NewCounterMD(webhookTotalMessages,
    		"Total number of messages sent to this target",
    		allWebhookLabels...)
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:27:33 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top