Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 425 for Co (0.06 sec)

  1. docs/vi/docs/python-types.md

        {!> ../../../docs_src/python_types/tutorial008b.py!}
        ```
    
    Trong cả hai trường hợp  nghĩa là `item`  thể là một `int` hoặc `str`.
    
    #### Khả năng `None`
    
    Bạn  thể khai báo một giá trị  thể  một kiểu dữ liệu, giống như `str`, nhưng nó cũng  thể là `None`.
    
    Trong Python 3.6 hoặc lớn hơn (bao gồm Python 3.10) bạn  thể khai báo nó bằng các import và sử dụng `Optional` từ mô đun `typing`.
    
    ```Python hl_lines="1  4"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. docs/vi/docs/features.md

    Nó cũng  nghĩa là trong nhiều trường hợp, bạn  thể truyền cùng object bạn  từ một request **trực tiếp cho  sở dữ liệu**, vì mọi thứ được validate tự động.
    
    Điều tương tự áp dụng cho các cách khác nhau, trong nhiều trường hợp, bạn  thể chỉ truyền object từ  sở dữ liêu **trực tiếp tới client**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CertificatePinnerTest.kt

            "sha256/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
          )
        assertEquals(
          "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=".decodeBase64(),
          pin.hash,
        )
        assertEquals("sha256", pin.hashAlgorithm)
        assertEquals("**.example.co.uk", pin.pattern)
        Assertions.assertTrue(pin.matchesHostname("www.example.co.uk"))
        Assertions.assertTrue(pin.matchesHostname("gopher.example.co.uk"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. docs/vi/docs/tutorial/index.md

    Với hướng dẫn này, bạn  thể muốn cài đặt nó với tất cả các phụ thuộc và tính năng tùy chọn:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    
    ---> 100%
    ```
    
    </div>
    
    ...dó cũng bao gồm `uvicorn`, bạn  thể sử dụng như một server để chạy code của bạn.
    
    !!! note
        Bạn cũng  thể cài đặt nó từng phần.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. docs/vi/docs/tutorial/first-steps.md

    Định nghĩa cấu trúc này bao gồm những đường dẫn API của bạn, các tham số  thể ,...
    
    #### "Cấu trúc" dữ liệu
    
    Thuật ngữ "cấu trúc" (schema) cũng  thể được coi như là hình dạng của dữ liệu, tương tự như một JSON content.
    
    Trong trường hợp đó, nó  nghĩa là các thuộc tính JSON và các kiểu dữ liệu họ ,...
    
    #### OpenAPI và JSON Schema
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/net/http/cookiejar/jar_test.go

    	{"www.example.com", ".com", "", false, errIllegalDomain},
    	{"foo.bar.co.uk", ".co.uk", "", false, errIllegalDomain},
    	{"127.www.0.0.1", "127.0.0.1", "", false, errIllegalDomain},
    	{"com", "", "com", true, nil},
    	{"com", "com", "com", true, nil},
    	{"com", ".com", "com", true, nil},
    	{"co.uk", "", "co.uk", true, nil},
    	{"co.uk", "co.uk", "co.uk", true, nil},
    	{"co.uk", ".co.uk", "co.uk", true, nil},
    }
    
    func TestDomainAndType(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "foo.blogspot.co.uk",
              "foo.uk.com",
              "foo.bar.co.il",
              "state.CA.us",
              "www.state.pa.us",
              "pvt.k12.ca.us",
              "www.google.com",
              "www4.yahoo.co.uk",
              "home.netscape.com",
              "web.MIT.edu",
              "foo.eDu.au",
              "utenti.blah.IT",
              "dominio.com.co");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-classifierSubstitutionRule/groovy/consumer/build.gradle

    dependencies {
        implementation 'com.google.guava:guava:28.2-jre'
        implementation 'co.paralleluniverse:quasar-core:0.8.0'
        implementation project(':lib')
    }
    // end::dependencies[]
    
    // tag::substitution_rule[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute module('co.paralleluniverse:quasar-core') using module('co.paralleluniverse:quasar-core:0.8.0') withoutClassifier()
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 714 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-classifierSubstitutionRule/kotlin/consumer/build.gradle.kts

    dependencies {
        implementation("com.google.guava:guava:28.2-jre")
        implementation("co.paralleluniverse:quasar-core:0.8.0")
        implementation(project(":lib"))
    }
    // end::dependencies[]
    
    // tag::substitution_rule[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(module("co.paralleluniverse:quasar-core"))
                .using(module("co.paralleluniverse:quasar-core:0.8.0"))
                .withoutClassifier()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 769 bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt

       */
      @Test fun verifyNonAsciiSubjectAlt() {
        // Expecting actual:
        //  ["bar.com", "花子.co.jp"]
        // to contain exactly (and in same order):
        //  ["bar.com", "������.co.jp"]
        platform.assumeNotBouncyCastle()
    
        // CN=foo.com, subjectAlt=bar.com, subjectAlt=&#x82b1;&#x5b50;.co.jp
        // (hanako.co.jp in kanji)
        val session =
          session(
            """
            -----BEGIN CERTIFICATE-----
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 40.3K bytes
    - Viewed (0)
Back to top