Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 141 for ISO (0.02 sec)

  1. okhttp/src/test/java/okhttp3/MediaTypeJvmTest.kt

        )
        assertEquals(
          "US-ASCII",
          noCharset.charset(Charsets.US_ASCII)!!.name(),
        )
        val charset = parse("text/plain; charset=iso-8859-1")
        assertEquals(
          "ISO-8859-1",
          charset.charset(Charsets.UTF_8)!!.name(),
        )
        assertEquals(
          "ISO-8859-1",
          charset.charset(Charsets.US_ASCII)!!.name(),
        )
      }
    
      @Test fun testTurkishDotlessIWithEnUs() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/process/internal/JvmOptionsTest.groovy

            when:
            opts.systemProperty("file.encoding", "ISO-8859-1");
            opts.defaultCharacterEncoding = "ISO-8859-2"
            then:
            !opts.allJvmArgs.contains("-Dfile.encoding=ISO-8859-1");
            opts.allJvmArgs.contains("-Dfile.encoding=ISO-8859-2");
    
            when:
            opts.defaultCharacterEncoding = "ISO-8859-2"
            opts.systemProperty("file.encoding", "ISO-8859-1")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/extra-data-types.md

    * `datetime.datetime`:
        * 파이썬의 `datetime.datetime`.
        * 요청과 응답에서 `2008-09-15T15:53:00+05:00`와 같은 ISO 8601 형식의 `str`로 표현됩니다.
    * `datetime.date`:
        * 파이썬의 `datetime.date`.
        * 요청과 응답에서 `2008-09-15`와 같은 ISO 8601 형식의 `str`로 표현됩니다.
    * `datetime.time`:
        * 파이썬의 `datetime.time`.
        * 요청과 응답에서 `14:23:55.003`와 같은 ISO 8601 형식의 `str`로 표현됩니다.
    * `datetime.timedelta`:
        * 파이썬의 `datetime.timedelta`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 02:45:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/hash/crc64/crc64.go

    import (
    	"errors"
    	"hash"
    	"internal/byteorder"
    	"sync"
    )
    
    // The size of a CRC-64 checksum in bytes.
    const Size = 8
    
    // Predefined polynomials.
    const (
    	// The ISO polynomial, defined in ISO 3309 and used in HDLC.
    	ISO = 0xD800000000000000
    
    	// The ECMA polynomial, defined in ECMA 182.
    	ECMA = 0xC96C5795D7870F42
    )
    
    // Table is a 256-word table representing the polynomial for efficient processing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/mime/multipart/multipart_test.go

    tent-Type: text/plain; charset=ISO-8859-1\r\nContent-Disposition: form-data; name=otherEmpty2\r\n\r\n--00151757727e9583fd04bfbca4c6\r\nContent-Type: text/plain; charset=ISO-8859-1\r\nContent-Disposition: form-data; name=otherRepeatFoo\r\n\r\nfoo\r\n--00151757727e9583fd04bfbca4c6\r\nContent-Type: text/plain; charset=ISO-8859-1\r\nContent-Disposition: form-data; name=otherRepeatFoo\r\n\r\nfoo\r\n--00151757727e9583fd04bfbca4c6\r\nContent-Type: text/plain; charset=ISO-8859-1\r\nContent-Disposition: form-data;...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharsetTest.groovy

            result.toString() != new String(utf8bytes, "ISO-8859-1")
        }
    
        def "can fallback to decode an IS0-8859-1 stream"() {
            when:
            CharBuffer result = charset.newDecoder().decode(buffer(iso8859bytes))
    
            then:
            result.toString() == new String(iso8859bytes, "ISO-8859-1")
            result.toString() != new String(iso8859bytes, "UTF-8")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. docs/ja/docs/tutorial/extra-data-types.md

    * `datetime.datetime`:
        * Pythonの`datetime.datetime`です。
        * リクエストとレスポンスはISO 8601形式の`str`で表現されます: `2008-09-15T15:53:00+05:00`
    * `datetime.date`:
        * Pythonの`datetime.date`です。
        * リクエストとレスポンスはISO 8601形式の`str`で表現されます: `2008-09-15`
    * `datetime.time`:
        * Pythonの`datetime.time`.
        * リクエストとレスポンスはISO 8601形式の`str`で表現されます: `14:23:55.003`
    * `datetime.timedelta`:
        * Pythonの`datetime.timedelta`です。
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/hash/crc64/crc64_test.go

    		h.Write(data)
    		h.Sum(in)
    	}
    }
    
    func BenchmarkCrc64(b *testing.B) {
    	b.Run("ISO64KB", func(b *testing.B) {
    		bench(b, ISO, 64<<10)
    	})
    	b.Run("ISO4KB", func(b *testing.B) {
    		bench(b, ISO, 4<<10)
    	})
    	b.Run("ISO1KB", func(b *testing.B) {
    		bench(b, ISO, 1<<10)
    	})
    	b.Run("ECMA64KB", func(b *testing.B) {
    		bench(b, ECMA, 64<<10)
    	})
    	b.Run("Random64KB", func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 25 06:32:12 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            "someBranch\t"     | "release"       | "branch cannot contain ISO control character '\\u0009'"
            "someBranch"       | "release\t"     | "status cannot contain ISO control character '\\u0009'"
            "someBranch\n"     | "release"       | "branch cannot contain ISO control character '\\u000a'"
            "someBranch"       | "release\n"     | "status cannot contain ISO control character '\\u000a'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/extra-data-types.md

        * Wird in Requests und Responses als `str` im ISO 8601-Format dargestellt, etwa: `2008-09-15T15:53:00+05:00`.
    * `datetime.date`:
        * Python-`datetime.date`.
        * Wird in Requests und Responses als `str` im ISO 8601-Format dargestellt, etwa: `2008-09-15`.
    * `datetime.time`:
        * Ein Python-`datetime.time`.
        * Wird in Requests und Responses als `str` im ISO 8601-Format dargestellt, etwa: `14:23:55.003`.
    * `datetime.timedelta`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top