Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for ISO (0.02 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharset.java

    /**
     * A Java 8 compliant Charset implementation for reading properties files.  It first tries
     * to load the properties file using UTF-8 encoding and if it encounters an error, tries to
     * load the file using ISO-8859-1 encoding.
     *
     * This class is only necessary because {@code sun.util.PropertyResourceBundleCharset} is not
     * available in Java 8.  This class can be removed in favor of {@code sun.util.PropertyResourceBundleCharset}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    //
    //	secp224r1 OBJECT IDENTIFIER ::= {
    //	  iso(1) identified-organization(3) certicom(132) curve(0) 33 }
    //
    //	secp256r1 OBJECT IDENTIFIER ::= {
    //	  iso(1) member-body(2) us(840) ansi-X9-62(10045) curves(3)
    //	  prime(1) 7 }
    //
    //	secp384r1 OBJECT IDENTIFIER ::= {
    //	  iso(1) identified-organization(3) certicom(132) curve(0) 34 }
    //
    //	secp521r1 OBJECT IDENTIFIER ::= {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. docs/ja/docs/tutorial/encoder.md

    JSON互換のデータのみを受信するデータベース`fase_db`があるとしましょう。
    
    例えば、`datetime`オブジェクトはJSONと互換性がないので、このデーターベースには受け取られません。
    
    そのため、`datetime`オブジェクトは<a href="https://en.wikipedia.org/wiki/ISO_8601" class="external-link" target="_blank">ISO形式</a>のデータを含む`str`に変換されなければなりません。
    
    同様に、このデータベースはPydanticモデル(属性を持つオブジェクト)を受け取らず、`dict`だけを受け取ります。
    
    そのために`jsonable_encoder`を使用することができます。
    
    Pydanticモデルのようなオブジェクトを受け取り、JSON互換版を返します:
    
    ```Python hl_lines="5 22"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 20:09:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/net/http/readrequest_test.go

    			"User-Agent: Fake\r\n" +
    			"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n" +
    			"Accept-Language: en-us,en;q=0.5\r\n" +
    			"Accept-Encoding: gzip,deflate\r\n" +
    			"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n" +
    			"Keep-Alive: 300\r\n" +
    			"Content-Length: 7\r\n" +
    			"Proxy-Connection: keep-alive\r\n\r\n" +
    			"abcdef\n???",
    
    		&Request{
    			Method: "GET",
    			URL: &url.URL{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskEncodingIntegrationSpec.groovy

                        }
                    }
                }
            """
    
            file("res", nonAsciiFileName) << "foo"
    
            when:
            executer.withDefaultCharacterEncoding("ISO-8859-1").withTasks("copyFiles")
            executer.run()
    
            then:
            file("build/resources", nonAsciiFileName).exists()
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2181")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/encoder.md

    So, a `datetime` object would have to be converted to a `str` containing the data in <a href="https://en.wikipedia.org/wiki/ISO_8601" class="external-link" target="_blank">ISO format</a>.
    
    The same way, this database wouldn't receive a Pydantic model (an object with attributes), only a `dict`.
    
    You can use `jsonable_encoder` for that.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/base/CharsetsTest.java

        assertEquals(Charset.forName("US-ASCII"), Charsets.US_ASCII);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // Non-UTF-8 Charset
      public void testIso88591() {
        assertEquals(Charset.forName("ISO-8859-1"), Charsets.ISO_8859_1);
      }
    
      public void testUtf8() {
        assertEquals(Charset.forName("UTF-8"), Charsets.UTF_8);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // Non-UTF-8 Charset
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 04 09:41:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/encoder.md

    Então, um objeto `datetime` teria que ser convertido em um `str` contendo os dados no formato  <a href="https://en.wikipedia.org/wiki/ISO_8601" class="external-link" target="_blank">ISO</a>.
    
    Da mesma forma, este banco de dados não receberia um modelo Pydantic (um objeto com atributos), apenas um `dict`.
    
    Você pode usar a função `jsonable_encoder` para resolver isso.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/caching/internal/packaging/BuildCacheEntryPackingIntegrationTest.groovy

            "chinese": "敏捷的棕色狐狸跳过了懒狗",
            "cyrillic": "здравствуйте",
            "hungarian": "Árvíztűrő tükörfúrógép",
        ].values().join("-")
    
        private static final DEFAULT_ENCODINGS = [
            "UTF-8",
            "ISO-8859-1",
            "windows-1250",
        ]
    
        @Issue("https://github.com/gradle/gradle/issues/9877")
        @ToBeFixedForConfigurationCache(skip =  INVESTIGATE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. internal/bucket/object/lock/lock.go

    	ErrMalformedBucketObjectConfig = errors.New("invalid bucket object lock config")
    	// ErrInvalidRetentionDate - indicates that retention date needs to be in ISO 8601 format
    	ErrInvalidRetentionDate = errors.New("date must be provided in ISO 8601 format")
    	// ErrPastObjectLockRetainDate - indicates that retention date must be in the future
    	ErrPastObjectLockRetainDate = errors.New("the retain until date must be in the future")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top