Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for ISO (0.07 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.WriteProperties.xml

                </tr>
                <tr>
                    <td>comment</td>
                    <td><literal>null</literal></td>
                </tr>
                <tr>
                    <td>encoding</td>
                    <td><literal>ISO-8859-1</literal></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/expiration.go

    import (
    	"encoding/xml"
    	"time"
    )
    
    var (
    	errLifecycleInvalidDate         = Errorf("Date must be provided in ISO 8601 format")
    	errLifecycleInvalidDays         = Errorf("Days must be positive integer when used with Expiration")
    	errLifecycleInvalidExpiration   = Errorf("Exactly one of Days (positive integer) or Date (positive ISO 8601 format) should be present inside Expiration.")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishValidationIntegTest.groovy

            "branch 'a\tb'" | "Invalid publication 'ivy': branch cannot contain ISO control character '\\u0009'"
            "status ''"     | "Invalid publication 'ivy': status cannot be an empty string. Use null instead"
            "status 'a\tb'" | "Invalid publication 'ivy': status cannot contain ISO control character '\\u0009'"
            "status 'a/b'"  | "Invalid publication 'ivy': status cannot contain '/'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/DownloadedUriTextResourceTest.groovy

            when:
            downloadedFile.text = "Some content"
            underTest = new DownloadedUriTextResource("Test description", sourceUri, "text/html; charset=ISO-8859-1", downloadedFile, resolver)
    
            then:
            underTest.getCharset() == Charset.forName("ISO-8859-1")
        }
    
        def "should return default charset when charset is missing in content type"() {
            when:
            downloadedFile.text = "Some content"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. docs/uk/docs/tutorial/encoder.md

    Отже, об'єкт типу `datetime` потрібно перетворити в рядок `str`, який містить дані в <a href="https://en.wikipedia.org/wiki/ISO_8601" class="external-link" target="_blank">ISO форматі</a>.
    
    Тим самим способом ця база даних не прийматиме об'єкт типу Pydantic model (об'єкт з атрибутами), а лише `dict`.
    
    Ви можете використовувати `jsonable_encoder` для цього.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. docs/ru/docs/tutorial/encoder.md

    В таком случае объект `datetime` следует преобразовать в строку соответствующую <a href="https://en.wikipedia.org/wiki/ISO_8601" class="external-link" target="_blank">формату ISO</a>.
    
    Точно так же эта база данных не может принять Pydantic модель (объект с атрибутами), а только `dict`.
    
    Для этого можно использовать функцию `jsonable_encoder`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 13:56:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonSystemPropertiesIntegrationTest.groovy

            run("verify")
    
            then:
            daemons.daemons.size() == 1
    
            when:
            executer.withArgument("-Dfile.encoding=ISO-8859-1")
            run("verify")
    
            then:
            output.contains("verified = ISO-8859-1")
            daemons.daemons.size() == 2
        }
    
        def "forks new daemon when tmpdir is set to different value via commandline"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/encoder.md

    Ein `datetime`-Objekt müsste also in einen `str` umgewandelt werden, der die Daten im <a href="https://en.wikipedia.org/wiki/ISO_8601" class="external-link" target="_blank">ISO-Format</a> enthält.
    
    Genauso würde die Datenbank kein Pydantic-Modell (ein Objekt mit Attributen) akzeptieren, sondern nur ein `dict`.
    
    Sie können für diese Fälle `jsonable_encoder` verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:21 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. android/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)
  10. subprojects/core-api/src/main/java/org/gradle/work/NormalizeLineEndings.java

     * when snapshotting inputs. Two files with the same contents but different line endings
     * will be considered equivalent.
     *
     * Line ending normalization is only supported with ASCII encoding and its supersets (i.e.
     * UTF-8, ISO-8859-1, etc).  Other encodings (e.g. UTF-16) will be treated as binary files
     * and will not be subject to line ending normalization.
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top