Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,639 for message2 (0.16 sec)

  1. platforms/documentation/docs/src/snippets/providers/connectProperties/groovy/build.gradle

        // Read-only property calculated from the greeting
        @Internal
        final Provider<String> message = greeting.map { it + ' from Gradle' }
    
        @TaskAction
        void printMessage() {
            logger.quiet(message.get())
        }
    }
    
    // Create the project extension
    project.extensions.create('messages', MessageExtension)
    
    // Create the greeting task
    tasks.register("greeting", Greeting) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. pkg/config/analysis/README.md

            if !c.Exists(collections.Gateway, resource.NewName(r.Metadata.FullName.Namespace, gwName)) {
                // Messages are defined in galley/pkg/config/analysis/msg/messages.yaml
                // From there, code is generated for each message type, including a constructor function
                // that you can use to create a new validation message of each type.
                msg := msg.NewReferencedResourceNotFound(r, "gateway", gwName)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

                )
            }}
        }
    
        final LogOutput sample = new LogOutput() {{
            error('An error log message.')
            quiet('An info log message which is always logged.')
            quiet('A message which is logged at QUIET level')
            warning('A warning log message.')
            lifecycle('A lifecycle info log message.')
            info('An info log message.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  4. maven-builder-support/src/main/java/org/apache/maven/building/ProblemCollector.java

         * @param cause The cause of the problem, may be {@code null}.
         */
        void add(Problem.Severity severity, String message, int line, int column, Exception cause);
    
        /**
         * The next messages will be bound to this source. When calling this method again, previous messages keep
         * their source, but the next messages will use the new source.
         *
         * @param source a source
         */
        void setSource(String source);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/Dispatch.java

    /**
     * A general purpose sink for a stream of messages.
     *
     * <p>Implementations are not required to be thread-safe.
     */
    public interface Dispatch<T> {
        /**
         * Dispatches the next message. Blocks until the messages has been accepted but generally does not wait for the
         * message to be processed. Delivery guarantees are implementation specific.
         *
         * @param message The message.
         */
        void dispatch(T message);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

     * <li>If the build is started, the client may send {@link org.gradle.launcher.daemon.protocol.Cancel} message before {@link CloseInput} message.</li>
     * <li>The daemon sends exactly one {@link Result} message. It may no longer send any messages.</li>
     * <li>The client sends a {@link CloseInput} message, if not already sent. It may no longer send any {@link ForwardInput} messages.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/ConnectionSetTest.groovy

            incoming.take(messages)
    
            then:
            messages.size() == 1
            messages == [sentinel]
    
            when:
            messages = []
            connection.dispatchFinished()
            connection.receiveFinished()
            incoming.take(messages)
    
            then:
            messages.size() == 2
            messages[0] instanceof RejectedMessage
            messages[0].payload == "payload"
            messages[1] instanceof EndOfStream
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/providers/connectProperties/kotlin/build.gradle.kts

        // Read-only property calculated from the greeting
        @Internal
        val message: Provider<String> = greeting.map { it + " from Gradle" }
    
        @TaskAction
        fun printMessage() {
            logger.quiet(message.get())
        }
    }
    
    // Create the project extension
    val messages = project.extensions.create<MessageExtension>("messages")
    
    // Create the greeting task
    tasks.register<Greeting>("greeting") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. istioctl/pkg/util/formatting/formatter_test.go

    	)
    
    	msgs := diag.Messages{firstMsg, secondMsg}
    	output, _ := Print(msgs, YAMLFormat, false)
    
    	expectedOutput := `- code: B1
      documentationUrl: ` + url.ConfigAnalysis + `/b1/
      level: Error
      message: 'Explosion accident: the bubble is too big'
      origin: SoapBubble
    - code: C1
      documentationUrl: ` + url.ConfigAnalysis + `/c1/
      level: Warning
      message: 'Collapse danger: the castle is too old'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                    upgradeFromAll();
    
                    saveInfo(messages -> messages.addSuccessStartedDataUpdate(GLOBAL));
    
                    systemHelper.reloadConfiguration();
                } catch (final Exception e) {
                    logger.warn("Failed to upgrade data.", e);
                    saveError(messages -> messages.addErrorsFailedToUpgradeFrom(GLOBAL, VERSION_13_0, e.getLocalizedMessage()));
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top