Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for ISO (0.02 sec)

  1. subprojects/core/src/main/java/org/gradle/api/tasks/WriteProperties.java

     *     <li>the properties are sorted alphabetically</li>
     * </ul>
     *
     * <p>Like with {@link java.util.Properties}, Unicode characters are escaped when using the
     * default Latin-1 (ISO-8559-1) encoding.</p>
     *
     * @see java.util.Properties#store(OutputStream, String)
     * @since 3.3
     */
    @CacheableTask
    public abstract class WriteProperties extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/compress/gzip/gzip.go

    	if err != nil {
    		return err
    	}
    	_, err = z.w.Write(b)
    	return err
    }
    
    // writeString writes a UTF-8 string s in GZIP's format to z.w.
    // GZIP (RFC 1952) specifies that strings are NUL-terminated ISO 8859-1 (Latin-1).
    func (z *Writer) writeString(s string) (err error) {
    	// GZIP stores Latin-1 strings; error if non-Latin-1; convert if non-ASCII.
    	needconv := false
    	for _, v := range s {
    		if v == 0 || v > 0xff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. hack/verify-e2e-test-ownership.sh

      local -r total_tests=$(<"${spec_summaries}" wc -l | awk '{print $1}')
    
      # output results to console
      (
        echo "run at datetime: $(date -u +%Y-%m-%dT%H:%M:%SZ)"
        echo "based on commit: $(git log -n1 --date=iso-strict --pretty='%h - %cd - %s')"
        echo
        <"${failures_json}" cat
        printf "%4s: e2e tests %-40s: %-4d\n" "INFO" "in total" "${total_tests}"
        <"${summary_json}" jq -r 'to_entries[].value |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/MediaTypeTest.kt

        assertEquals("2", mediaType.parameter("B"))
        assertEquals("3", mediaType.parameter("C"))
      }
    
      @Test fun testCharsetAndQuoting() {
        val mediaType = parse("text/plain;a=\";charset=us-ascii\";charset=\"utf-8\";b=\"iso-8859-1\"")
        assertEquals("UTF-8", mediaType.charsetName())
      }
    
      @Test fun testDuplicatedCharsets() {
        val mediaType = parse("text/plain; charset=utf-8; charset=UTF-8")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top