Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for MBox (0.06 sec)

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

    	var ns Name
    	off, err := ns.unpack(msg, off)
    	if err != nil {
    		return SOAResource{}, &nestedError{"NS", err}
    	}
    	var mbox Name
    	if off, err = mbox.unpack(msg, off); err != nil {
    		return SOAResource{}, &nestedError{"MBox", err}
    	}
    	serial, off, err := unpackUint32(msg, off)
    	if err != nil {
    		return SOAResource{}, &nestedError{"Serial", err}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/MediaType.java

      public static final MediaType KMZ = createConstant(APPLICATION_TYPE, "vnd.google-earth.kmz");
    
      /**
       * The <a href="https://tools.ietf.org/html/rfc4155">mbox database format</a>.
       *
       * @since 13.0
       */
      public static final MediaType MBOX = createConstant(APPLICATION_TYPE, "mbox");
    
      /**
       * <a href="http://goo.gl/1pGBFm">Apple over-the-air mobile configuration profiles</a>.
       *
       * @since 18.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/MediaType.java

      public static final MediaType KMZ = createConstant(APPLICATION_TYPE, "vnd.google-earth.kmz");
    
      /**
       * The <a href="https://tools.ietf.org/html/rfc4155">mbox database format</a>.
       *
       * @since 13.0
       */
      public static final MediaType MBOX = createConstant(APPLICATION_TYPE, "mbox");
    
      /**
       * <a href="http://goo.gl/1pGBFm">Apple over-the-air mobile configuration profiles</a>.
       *
       * @since 18.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  4. src/net/mail/message.go

      - The full range of spacing (the CFWS syntax element) is not supported,
        such as breaking addresses across lines.
      - No unicode normalization is performed.
      - A leading From line is permitted, as in mbox format (RFC 4155).
    */
    package mail
    
    import (
    	"bufio"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"mime"
    	"net"
    	"net/textproto"
    	"strings"
    	"sync"
    	"time"
    	"unicode/utf8"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. src/net/mail/message_test.go

    Custom/Header: v
    
    Body
    `,
    		header: Header{
    			"From":          []string{"******@****.***"},
    			"Custom/Header": []string{"v"},
    		},
    		body: "Body\n",
    	},
    	{
    		// RFC 4155 mbox format. We've historically permitted this,
    		// so we continue to permit it. Issue #60332.
    		in: `From ******@****.*** Mon Jun 19 00:00:00 2023
    From: ******@****.***
    
    Hello, gophers!
    `,
    		header: Header{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/mbms-reception-report+xml",
    				"application/mbms-register+xml",
    				"application/mbms-register-response+xml",
    				"application/mbms-user-service-description+xml",
    				"application/mbox",
    				"application/media_control+xml",
    				"application/mediaservercontrol+xml",
    				"application/mikey",
    				"application/moss-keys",
    				"application/moss-signature",
    				"application/mosskey-data",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/mbms-register+xml"/>
      <mime-type type="application/mbms-register-response+xml"/>
      <mime-type type="application/mbms-user-service-description+xml"/>
    
      <mime-type type="application/mbox">
        <!-- MBOX files start with "From [sender] [date]" -->
        <!-- To avoid false matches, check for other headers after that -->
    
        <magic priority="70">
          <match value="From " type="string" offset="0">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top