Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 5,819 for message3 (0.14 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinProjectMessageBusProvider.kt

    import com.intellij.util.messages.MessageBus
    
    /**
     * Provides the [project]'s [MessageBus] as the Analysis API message bus. This is the default implementation for both the standalone and the
     * IDE Analysis API.
     *
     * [KotlinMessageBusProvider] exists so that this default may change in the future without breaking the API. Hence, it should not be assumed
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 952 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

            final FessMessages messages = createMessages();
            validationMessagesLambda.message(messages);
            sessionManager.info().saveMessages(messages);
        }
    
        protected void saveError(final VaMessenger<FessMessages> validationMessagesLambda) {
            final FessMessages messages = createMessages();
            validationMessagesLambda.message(messages);
            sessionManager.errors().saveMessages(messages);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/RejectedMessageListener.java

     */
    
    package org.gradle.internal.remote.internal.hub;
    
    /**
     * A listener which receives messages that cannot be delivered for some reason.
     */
    public interface RejectedMessageListener {
        /**
         * Called when the given message cannot be delivered for some reason.
         */
        void messageDiscarded(Object message);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 933 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      // or -1 if it's unknown.
      int line_number() const { return line_number_; }
    
      // Gets the summary of the failure message.
      const char* summary() const { return summary_.c_str(); }
    
      // Gets the message associated with the test part.
      const char* message() const { return message_.c_str(); }
    
      // Returns true iff the test part passed.
      bool passed() const { return type_ == kSuccess; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      // or -1 if it's unknown.
      int line_number() const { return line_number_; }
    
      // Gets the summary of the failure message.
      const char* summary() const { return summary_.c_str(); }
    
      // Gets the message associated with the test part.
      const char* message() const { return message_.c_str(); }
    
      // Returns true iff the test part passed.
      bool passed() const { return type_ == kSuccess; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    [[sec:fine_tuning_ant_logging]]
    === Fine-tuning Ant logging
    
    The default mapping of Ant message priority to the Gradle log level can sometimes be problematic.
    For example, no message priority maps directly to the `LIFECYCLE` log level, which is the default for Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r23/StandardStreamsCrossVersionSpec.groovy

            file("build.gradle") << """
    project.logger.error("error log message");
    project.logger.warn("warn log message");
    project.logger.lifecycle("lifecycle log message");
    project.logger.quiet("quiet log message");
    project.logger.info ("info log message");
    project.logger.debug("debug log message");
    
    task log {
        doLast {
            println "task log message"
        }
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

                if (verbose) {
                  println(record.message)
                  println(record.parameters[0])
                }
    
                // JSSE logs additional messages as parameters that are not referenced in the log message.
                val parameter = parameters[0] as String
    
                if (message == "Produced ClientHello handshake message") {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/ResponseProtocol.java

     * and {@link WorkerProblemProtocol} (for sending {@link org.gradle.api.problems.Problem}s through).
     * <p>
     * Bundling these protocols together will use a single connection for all communication,
     * which means that messages are guaranteed to be delivered <b>in-order</b> (i.e. log and problem messages are delivered before the completion/failed message).
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 14:22:05 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/java/org/apache/maven/internal/impl/DefaultSettingsValidatorTest.java

            assertEquals(4, problems.messages.size());
            assertContains(problems.messages.get(0), "'mirrors.mirror.id' must not be 'local'");
            assertContains(problems.messages.get(1), "'mirrors.mirror.url' for local is missing");
            assertContains(problems.messages.get(2), "'mirrors.mirror.mirrorOf' for local is missing");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top