Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for ISO (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. guava/src/com/google/common/base/Charsets.java

      public static final Charset US_ASCII = Charset.forName("US-ASCII");
    
      /**
       * ISO-8859-1: ISO Latin Alphabet Number 1 (ISO-LATIN-1).
       *
       * <p><b>Java 7+ users:</b> this constant should be treated as deprecated; use {@link
       * java.nio.charset.StandardCharsets#ISO_8859_1} instead.
       *
       */
      public static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1");
    
      /**
       * UTF-8: eight-bit UCS Transformation Format.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Charsets.java

      public static final Charset US_ASCII = Charset.forName("US-ASCII");
    
      /**
       * ISO-8859-1: ISO Latin Alphabet Number 1 (ISO-LATIN-1).
       *
       * <p><b>Java 7+ users:</b> this constant should be treated as deprecated; use {@link
       * java.nio.charset.StandardCharsets#ISO_8859_1} instead.
       *
       */
      public static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1");
    
      /**
       * UTF-8: eight-bit UCS Transformation Format.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/antMigration/importBuild/groovy/build.xml

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <project name="ant-import-sample" default="package" basedir=".">
        <property name="src.dir" value="src"/>
        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <target name="cleanAll">
            <delete dir="${build.dir}"/>
        </target>
    
        <target name="prepare">
            <tstamp>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 958 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ZipIntegrationTest.groovy

            Charset.defaultCharset().name() | 'file'
            'UTF-8'                         | '中文'
            'ISO-8859-1'                    | 'ÈÇ'
        }
    
        def "can convert metadata to ASCII"() {
            given:
            def filename = 'file-éö'
            createTestFilesWithEncoding(filename, 'ISO-8859-1')
            buildFile << """
                task zip(type: Zip) {
                    from 'dir1'
                    from 'dir2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  10. tests/integration/security/fuzz/backends/tomcat/private/WEB-INF/web.xml

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    
    <web-app>
        <display-name>HelloWorld</display-name>
    
        <servlet>
            <servlet-name>HelloWorld</servlet-name>
            <servlet-class>HelloWorld</servlet-class>
        </servlet>
    
        <servlet-mapping>
            <servlet-name>HelloWorld</servlet-name>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 23 20:55:02 UTC 2021
    - 506 bytes
    - Viewed (0)
Back to top