Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,459 for message1 (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/message.go

    Alexander Zielenski <******@****.***> 1705543770 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1K 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. docs_src/websockets/tutorial003_py39.py

            </form>
            <ul id='messages'>
            </ul>
            <script>
                var client_id = Date.now()
                document.querySelector("#ws-id").textContent = client_id;
                var ws = new WebSocket(`ws://localhost:8000/ws/${client_id}`);
                ws.onmessage = function(event) {
                    var messages = document.getElementById('messages')
                    var message = document.createElement('li')
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. pkg/util/protomarshal/protomarshal.go

    )
    
    func Unmarshal(b []byte, m proto.Message) error {
    	return strictUnmarshaler.Unmarshal(bytes.NewReader(b), legacyproto.MessageV1(m))
    }
    
    func UnmarshalString(s string, m proto.Message) error {
    	return Unmarshal([]byte(s), m)
    }
    
    func UnmarshalAllowUnknown(b []byte, m proto.Message) error {
    	return unmarshaler.Unmarshal(bytes.NewReader(b), legacyproto.MessageV1(m))
    }
    
    type resolver interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. docs_src/websockets/tutorial002.py

                    ws.onmessage = function(event) {
                        var messages = document.getElementById('messages')
                        var message = document.createElement('li')
                        var content = document.createTextNode(event.data)
                        message.appendChild(content)
                        messages.appendChild(message)
                    };
                    event.preventDefault()
                }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 16:10:54 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. 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)
Back to top