Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 469 for atom (0.08 sec)

  1. guava/src/com/google/common/net/MediaType.java

       *
       * @since 14.0
       */
      public static final MediaType APPLICATION_XML_UTF_8 = createConstantUtf8(APPLICATION_TYPE, "xml");
    
      public static final MediaType ATOM_UTF_8 = createConstantUtf8(APPLICATION_TYPE, "atom+xml");
      public static final MediaType BZIP2 = createConstant(APPLICATION_TYPE, "x-bzip2");
    
      /**
       * Files in the <a href="https://www.dartlang.org/articles/embedding-in-html/">dart</a>
       * programming language.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  2. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    		</postConstruct>
    		<postConstruct name="addExtractor">
    			<arg>[
    				"application/activemessage",
    				"application/andrew-inset",
    				"application/applefile",
    				"application/applixware",
    				"application/atom+xml",
    				"application/atomcat+xml",
    				"application/atomicmail",
    				"application/atomsvc+xml",
    				"application/auth-policy+xml",
    				"application/batch-smtp",
    				"application/beep+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

    	  <glob pattern="*.iso19139"/>
    	  <sub-class-of type="application/xml"/>
       </mime-type>
    
    
      <mime-type type="application/atom+xml">
        <root-XML localName="feed" namespaceURI="http://purl.org/atom/ns#"/>
        <root-XML localName="feed" namespaceURI="http://www.w3.org/2005/Atom"/>
    
        <glob pattern="*.atom"/>
      </mime-type>
    
      <mime-type type="application/atomcat+xml">
        <glob pattern="*.atomcat"/>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  4. src/strconv/atoi.go

    		return -int64(cutoff), rangeError(fnParseInt, s0)
    	}
    	n := int64(un)
    	if neg {
    		n = -n
    	}
    	return n, nil
    }
    
    // Atoi is equivalent to ParseInt(s, 10, 0), converted to type int.
    func Atoi(s string) (int, error) {
    	const fnAtoi = "Atoi"
    
    	sLen := len(s)
    	if intSize == 32 && (0 < sLen && sLen < 10) ||
    		intSize == 64 && (0 < sLen && sLen < 19) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/strconv/atoc.go

    qiulaidongfeng <******@****.***> 1714788079 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/strconv/atof.go

    ******@****.*** <******@****.***> 1654492238 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  7. src/strconv/atob.go

    Mark Rushakoff <******@****.***> 1528502502 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 09 01:26:25 UTC 2018
    - 974 bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    grown so large in the last few minutes that she wasn't a bit
    afraid of interrupting him,) `I'll give him sixpence.  _I_ don't
    believe there's an atom of meaning in it.'
    
      The jury all wrote down on their slates, `SHE doesn't believe
    there's an atom of meaning in it,' but none of them attempted to
    explain the paper.
    
      `If there's no meaning in it,' said the King, `that saves a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    grown so large in the last few minutes that she wasn't a bit
    afraid of interrupting him,) `I'll give him sixpence.  _I_ don't
    believe there's an atom of meaning in it.'
    
      The jury all wrote down on their slates, `SHE doesn't believe
    there's an atom of meaning in it,' but none of them attempted to
    explain the paper.
    
      `If there's no meaning in it,' said the King, `that saves a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    }
    
    type Stat_t struct { //Linux Definition
    	Dev     uint64
    	Ino     uint64
    	Nlink   uint64
    	Mode    uint32
    	Uid     uint32
    	Gid     uint32
    	_       int32
    	Rdev    uint64
    	Size    int64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Blksize int64
    	Blocks  int64
    	_       [3]int64
    }
    
    type Stat_LE_t struct {
    	_            [4]byte // eye catcher
    	Length       uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top