Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for ISO (0.08 sec)

  1. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarEncodingIntegrationTest.groovy

                        from('manifest-ISO-8859-15.txt') {
                            // Charset used to decode the read manifest content
                            contentCharset = 'ISO-8859-15'
                        }
                    }
                }
            """.stripIndent()
            file('manifest-ISO-8859-15.txt').setText('bake: moji€', 'ISO-8859-15')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginInEncodingtegrationSpec.groovy

            // embed a euro character in the text - this is encoded differently in ISO-8859-15 and UTF-8
            assert '\u20AC'.charAt(0) == 0x20AC
        }
    }
    """, "ISO-8859-15")
            assert scriptFile.getText("ISO-8859-15") != scriptFile.getText("UTF-8")
            server.expectGet('/script.gradle', scriptFile).contentType("text/plain; charset=ISO-8859-15")
    
            and:
            buildFile << "apply from: '${server.uri}/script.gradle'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:45:30 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopySpecEncodingIntegrationSpec.groovy

            when:
            run 'copy'
    
            then:
            skipped(':copy')
            file('dest/accents.c').getText('ISO-8859-1') == 'éàüî 1'
    
            when:
            file('files/accents.c').write('áëü $one', 'ISO-8859-1')
            run 'copy'
    
            then:
            executedAndNotSkipped(':copy')
            file('dest/accents.c').getText('ISO-8859-1') == 'áëü 1'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:45:30 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. docs/uk/docs/tutorial/extra-data-types.md

        * У запитах та відповідях буде представлений як `str` в форматі ISO 8601, як: `2008-09-15T15:53:00+05:00`.
    * `datetime.date`:
        * Пайтонівський `datetime.date`.
        * У запитах та відповідях буде представлений як `str` в форматі ISO 8601, як: `2008-09-15`.
    * `datetime.time`:
        * Пайтонівський `datetime.time`.
        * У запитах та відповідях буде представлений як `str` в форматі ISO 8601, як: `14:23:55.003`.
    * `datetime.timedelta`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptExecutionIntegrationSpec.groovy

            given:
            executer.withDefaultCharacterEncoding("ISO-8859-15")
    
            and:
            buildFile.setText("""
    task check {
        doLast {
            assert java.nio.charset.Charset.defaultCharset().name() == "ISO-8859-15"
            // embed a euro character in the text - this is encoded differently in ISO-8859-12 and UTF-8
            assert '\u20AC'.charAt(0) == 0x20AC
        }
    }
    """, "UTF-8")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:26:59 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/extra-data-types.md

        * In requests and responses will be represented as a `str` in ISO 8601 format, like: `2008-09-15T15:53:00+05:00`.
    * `datetime.date`:
        * Python `datetime.date`.
        * In requests and responses will be represented as a `str` in ISO 8601 format, like: `2008-09-15`.
    * `datetime.time`:
        * A Python `datetime.time`.
        * In requests and responses will be represented as a `str` in ISO 8601 format, like: `14:23:55.003`.
    * `datetime.timedelta`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/mime/encodedword_test.go

    		{"=?UTF-8?Q?A", "=?UTF-8?Q?A"},
    		{"=?UTF-8?Q?A?", "=?UTF-8?Q?A?"},
    		// Tests from RFC 2047
    		{"=?ISO-8859-1?Q?a?=", "a"},
    		{"=?ISO-8859-1?Q?a?= b", "a b"},
    		{"=?ISO-8859-1?Q?a?= =?ISO-8859-1?Q?b?=", "ab"},
    		{"=?ISO-8859-1?Q?a?=  =?ISO-8859-1?Q?b?=", "ab"},
    		{"=?ISO-8859-1?Q?a?= \r\n\t =?ISO-8859-1?Q?b?=", "ab"},
    		{"=?ISO-8859-1?Q?a_b?=", "a b"},
    	}
    
    	for _, test := range tests {
    		dec := new(WordDecoder)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 7K bytes
    - Viewed (0)
  8. docs/zh/docs/tutorial/extra-data-types.md

        * 在请求和响应中将以 `str` 表示。
    * `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.9K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/extra-data-types.md

        * В запросах и ответах будет представлен как `str` в формате ISO 8601, например: `2008-09-15T15:53:00+05:00`.
    * `datetime.date`:
        * Встроенный в Python `datetime.date`.
        * В запросах и ответах будет представлен как `str` в формате ISO 8601, например: `2008-09-15`.
    * `datetime.time`:
        * Встроенный в Python `datetime.time`.
        * В запросах и ответах будет представлен как `str` в формате ISO 8601, например: `14:23:55.003`.
    * `datetime.timedelta`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/extra-data-types.md

    * `datetime.date`:
        * O `datetime.date` do Python.
        * Em requisições e respostas será representado como uma `str` no formato ISO 8601, exemplo: `2008-09-15`.
    * `datetime.time`:
        * O `datetime.time` do Python.
        * Em requisições e respostas será representado como uma `str` no formato ISO 8601, exemplo: `14:23:55.003`.
    * `datetime.timedelta`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top