Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,444 for message_0 (0.19 sec)

  1. src/main/java/jcifs/util/transport/Message.java

    /**
     * @author mbechler
     *
     */
    public interface Message {
    
        /**
         * Indicate that this message should retain it's raw payload
         */
        void retainPayload ();
    
    
        /**
         * 
         * @return whether to retain the message payload
         */
        boolean isRetainPayload ();
    
    
        /**
         * 
         * @return the raw response message
         */
        byte[] getRawPayload ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/InterHubMessageSerializerTest.groovy

            def channelId = new ChannelIdentifier("channel name")
            def message1 = new ChannelMessage(channelId, "payload 1")
            def message2 = new ChannelMessage(channelId, "payload 2")
    
            given:
            def message1Serialized = serialize(message1)
            def message2Serialized = serialize(message2)
    
            when:
            def serialized = serialize(message1, message2)
            def result = deserializeMultiple(serialized, 2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    	}
    }
    
    // NewInternalError returns a new diag.Message based on InternalError.
    func NewInternalError(r *resource.Instance, detail string) diag.Message {
    	return diag.NewMessage(
    		InternalError,
    		r,
    		detail,
    	)
    }
    
    // NewDeprecated returns a new diag.Message based on Deprecated.
    func NewDeprecated(r *resource.Instance, detail string) diag.Message {
    	return diag.NewMessage(
    		Deprecated,
    		r,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    // class hides this difference by treating a NULL char pointer as
    // "(null)".
    class GTEST_API_ Message {
     private:
      // The type of basic IO manipulators (endl, ends, and flush) for
      // narrow streams.
      typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&);
    
     public:
      // Constructs an empty Message.
      Message();
    
      // Copy constructor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. pkg/config/analysis/diag/messages.go

    package diag
    
    import (
    	"sort"
    )
    
    // Messages is a slice of Message items.
    type Messages []Message
    
    // Add a new message to the messages
    func (ms *Messages) Add(m ...Message) {
    	*ms = append(*ms, m...)
    }
    
    // Sort the message lexicographically by level, code, resource origin name, then string.
    func (ms *Messages) Sort() {
    	sort.Slice(*ms, func(i, j int) bool {
    		a, b := (*ms)[i], (*ms)[j]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 02:47:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

    # Please keep entries ordered by code.
    # NOTE: The range 0000-0100 is reserved for internal and/or future use.
    messages:
      - name: "InternalError"
        code: IST0001
        level: Error
        description: "There was an internal error in the toolchain. This is almost always a bug in the implementation."
        template: "Internal error: %v"
        args:
          - name: detail
            type: string
    
      - name: "Deprecated"
        code: IST0002
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/diag/message.go

    func (m *MessageType) Code() string { return m.code }
    
    // Template returns the message template used by the MessageType
    func (m *MessageType) Template() string { return m.template }
    
    // Message is a specific diagnostic message
    // TODO: Implement using Analysis message API
    type Message struct {
    	Type *MessageType
    
    	// The Parameters to the message
    	Parameters []any
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  8. internal/s3select/message.go

    	207, 151, 211, 146, // message crc.
    }
    
    // newErrorMessage - creates new Request Level Error Message. S3 sends this message if the request failed for any reason.
    // It contains the error code and error message for the failure. If S3 sends a RequestLevelError message,
    // it doesn't send an End message.
    //
    // Header specification:
    // Request-level error messages contain three headers, as follows:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/dispatch/AsyncDispatchTest.groovy

            e.message == 'Cannot wait for messages to be dispatched, as there are no dispatch threads running.'
        }
    
        def 'cannot dispatch messages after stop'() {
            given:
            dispatch.stop()
    
            when:
            dispatch.dispatch('message')
    
            then:
            IllegalStateException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. src/net/mail/message.go

    	if d {
    		log.Printf(format, args...)
    	}
    }
    
    // A Message represents a parsed mail message.
    type Message struct {
    	Header Header
    	Body   io.Reader
    }
    
    // ReadMessage reads a message from r.
    // The headers are parsed, and the body of the message will be available
    // for reading from msg.Body.
    func ReadMessage(r io.Reader) (msg *Message, err error) {
    	tp := textproto.NewReader(bufio.NewReader(r))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top