Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,870 for message1 (0.26 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		return err
    	}
    	return nil
    }
    
    // Pack packs a full Message.
    func (m *Message) Pack() ([]byte, error) {
    	return m.AppendPack(make([]byte, 0, packStartingCap))
    }
    
    // AppendPack is like Pack but appends the full Message to b and returns the
    // extended buffer.
    func (m *Message) AppendPack(b []byte) ([]byte, error) {
    	// Validate the lengths. It is very unlikely that anyone will try to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/application/src/main/java/org/gradle/sample/app/data/Message.java

    package org.gradle.sample.app.data;
    
    import java.util.List;
    import java.util.ArrayList;
    
    public class Message {
        private String message;
        private List<String> receivers = new ArrayList<>();
    
        public String getMessage() {
            return message;
        }
    
        public void setMessage(String message) {
            this.message = message;
        }
    
        public List<String> getReceivers() {
            return receivers;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 670 bytes
    - Viewed (0)
  4. 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)
  5. pkg/config/analysis/msg/messages.go

    // limitations under the License.
    
    package msg
    
    // Create static initializers file
    //go:generate go run generate.main.go messages.yaml messages.gen.go
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 762 bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Message.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * A message sent between daemon client and daemon server.
     */
    public class Message {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 755 bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Message.java

    import java.io.OutputStream;
    
    public abstract class Message {
        /**
         * Serialize the <code>message</code> onto the provided <code>outputStream</code>, replacing all {@link Throwable}s in the object graph with a placeholder object that can be read back by {@link
         * #receive(java.io.InputStream, ClassLoader)}.
         *
         * @param message object to serialize
         * @param outputSteam stream to serialize onto
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. 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)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. 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)
Back to top