Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pair (0.01 sec)

  1. src/archive/tar/strconv.go

    		nsecs = -(nsecs - 1e9) // Take that second away from nsecs
    	}
    	return strings.TrimRight(fmt.Sprintf("%s%d.%09d", sign, secs, nsecs), "0")
    }
    
    // parsePAXRecord parses the input PAX record string into a key-value pair.
    // If parsing is successful, it will slice off the currently read record and
    // return the remainder as r.
    func parsePAXRecord(s string) (k, v, r string, err error) {
    	// The size field ends at the first space.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Sep 08 17:08:20 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ExtractData.java

        public static final String URL = "url";
    
        /** File passwords key for metadata */
        public static final String FILE_PASSWORDS = "file.passwords";
    
        /** Map containing metadata key-value pairs */
        protected Map<String, String[]> metadata = new HashMap<>();
    
        /** The extracted content text */
        protected String content;
    
        /**
         * Constructs a new ExtractData.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top