Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 294 for gtar (0.1 sec)

  1. src/main/java/jcifs/smb1/util/mime.map

    application/x-director         dcr              # Director File
    application/x-dvi              dvi              # TeX dvi Format
    application/x-gtar             gtar             # Gzip and Tar file
    application/x-gzip             gz tgz           # Gzip and Tar file
    application/x-compress         z                # Gzip and Tar file
    application/x-hdf              hdf              # NCSA HDF
    application/x-ica              ica              # WinFrames
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  2. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-font-printer-metric",
    				"application/x-font-vfont",
    				"application/x-foxmail",
    				"application/x-futuresplash",
    				"application/x-gnucash",
    				"application/x-gnumeric",
    				"application/x-gtar",
    				"application/gzip",
    				"application/x-hdf",
    				"application/x-hwp",
    				"application/x-ibooks+zip",
    				"application/x-iso9660-image",
    				"application/x-itunes-ipa",
    				"application/x-java-jnlp-file",
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  3. src/archive/tar/testdata/star.tar

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 3K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/extractor/gz/test.tar.gz

    test.tar data/folder/file.html テスト data/file.txt テキスト...
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 351 bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        </magic>
      </mime-type>
      <mime-type type="application/x-gtar">
        <_comment>GNU tar Compressed File Archive (GNU Tape Archive)</_comment>
        <magic priority="50">
          <!-- GNU tar archive -->
          <match value="ustar  \0" type="string" offset="257" />
        </magic>
        <glob pattern="*.gtar"/>
        <sub-class-of type="application/x-tar"/>
      </mime-type>
      <mime-type type="application/x-guitar-pro">
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  6. src/archive/tar/format.go

    	// application can only parse GNU formatted archives.
    	//
    	// Reference:
    	//	https://www.gnu.org/software/tar/manual/html_node/Standard.html
    	FormatGNU
    
    	// Schily's tar format, which is incompatible with USTAR.
    	// This does not cover STAR extensions to the PAX format; these fall under
    	// the PAX format.
    	formatSTAR
    
    	formatMax
    )
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/archive/tar/testdata/pax-bad-hdr-large.tar.bz2

    pax-bad-hdr-large.tar XXXXXXXXXXXXXXXXXXXX...
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 05 20:40:43 UTC 2022
    - 156 bytes
    - Viewed (0)
  8. src/archive/tar/reader.go

    				hdr.Format = FormatUnknown // Numeric fields must end in NUL
    			}
    		case format.has(formatSTAR):
    			star := tr.blk.toSTAR()
    			prefix = p.parseString(star.prefix())
    			hdr.AccessTime = time.Unix(p.parseNumeric(star.accessTime()), 0)
    			hdr.ChangeTime = time.Unix(p.parseNumeric(star.changeTime()), 0)
    		case format.has(FormatGNU):
    			hdr.Format = format
    			var p2 parser
    			gnu := tr.blk.toGNU()
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. src/archive/tar/testdata/pax.tar

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 10K bytes
    - Viewed (0)
  10. src/archive/tar/reader_test.go

    	}, {
    		// Matches the behavior of GNU, BSD, and STAR tar utilities.
    		file: "testdata/gnu-multi-hdrs.tar",
    		headers: []*Header{{
    			Name:     "GNU2/GNU2/long-path-name",
    			Linkname: "GNU4/GNU4/long-linkpath-name",
    			ModTime:  time.Unix(0, 0),
    			Typeflag: '2',
    			Format:   FormatGNU,
    		}},
    	}, {
    		// GNU tar file with atime and ctime fields set.
    		// Created with the GNU tar v1.27.1.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 03 15:48:09 UTC 2024
    - 46.9K bytes
    - Viewed (0)
Back to top