Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,639 for message2 (0.14 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

                                if (message instanceof EndOfStream) {
                                    boundedDispatch.endStream();
                                    return;
                                }
                                if (message instanceof ChannelMessage) {
                                    ChannelMessage channelMessage = (ChannelMessage) message;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/validation/ModelValidationResult.java

            messages.add(message);
        }
    
        public String toString() {
            return render("");
        }
    
        public String render(String indentation) {
            if (messages.size() == 0) {
                return indentation + "There were no validation errors.";
            }
    
            StringBuilder message = new StringBuilder();
    
            //        if ( messages.size() == 1 )
            //        {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValitdatePluginsTrait.groovy

            def problems = collectedProblems
            assert problems.size() == messages.size()
            problems.any { problem ->
                messages.any { message ->
                    if (message.config) {
                        TextUtil.endLineWithDot(problem.definition.id.displayName) == message.config.label().toString()
                    } else {
                        message.message.contains(TextUtil.endLineWithDot(problem.definition.id.displayName))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. hack/lib/logging.sh

      echo "!!! ${timestamp} ${1-}" >&2
      shift
      for message; do
        echo "    ${message}" >&2
      done
    }
    
    # Print an usage message to stderr.  The arguments are printed directly.
    kube::log::usage() {
      echo >&2
      local message
      for message; do
        echo "${message}" >&2
      done
      echo >&2
    }
    
    kube::log::usage_from_stdin() {
      local messages=()
      while read -r line; do
        messages+=("${line}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. pkg/config/analysis/msg/generate.main.go

    type messages struct {
    	Messages []message `json:"messages"`
    }
    
    type message struct {
    	Name        string `json:"name"`
    	Code        string `json:"code"`
    	Level       string `json:"level"`
    	Description string `json:"description"`
    	Template    string `json:"template"`
    	Url         string `json:"url"`
    	Args        []arg  `json:"args"`
    }
    
    type arg struct {
    	Name string `json:"name"`
    	Type string `json:"type"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/AsyncDispatch.java

                }
                if (state == State.Stopped) {
                    throw new IllegalStateException("Cannot dispatch message, as this message dispatch has been stopped. Message: " + message);
                }
                queue.add(message);
                condition.signalAll();
            } finally {
                lock.unlock();
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

       * that enqueued messages were not transmitted.
       */
      fun queueSize(): Long
    
      /**
       * Attempts to enqueue `text` to be UTF-8 encoded and sent as a the data of a text (type `0x1`)
       * message.
       *
       * This method returns true if the message was enqueued. Messages that would overflow the outgoing
       * message buffer will be rejected and trigger a [graceful shutdown][close] of this web socket.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/ClRuntimeException.java

            return args;
        }
    
        @Override
        public String getMessage() {
            return message;
        }
    
        /**
         * Returns a simple message without a message code.
         *
         * @return simple message without message code
         */
        public final String getSimpleMessage() {
            return simpleMessage;
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. istioctl/pkg/util/formatting/formatter.go

    func printYAML(ms diag.Messages) (string, error) {
    	yamlOutput, err := yaml.Marshal(ms)
    	return string(yamlOutput), err
    }
    
    // Formatting options for Message
    var (
    	colorPrefixes = map[diag.Level]string{
    		diag.Info:    "",           // no special color for info messages
    		diag.Warning: "\033[33m",   // yellow
    		diag.Error:   "\033[1;31m", // bold red
    	}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 02:41:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/analyzers_test.go

    	if err != nil {
    		return local.AnalysisResult{}, err
    	}
    	return result, err
    }
    
    // Pull just the fields we want to check out of diag.Message
    func extractFields(msgs diag.Messages) []message {
    	result := make([]message, 0)
    	for _, m := range msgs {
    		expMsg := message{
    			messageType: m.Type,
    		}
    		if m.Resource != nil {
    			expMsg.origin = m.Resource.Origin.FriendlyName()
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top