Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for Co (0.02 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. 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)
  5. 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)
  6. 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=花子.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)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

                buildFile << """
                    apply plugin: 'java-library'
                    version "2.0"
                """
            }
    
            pluginBuild = pluginProjectBuild("pluginBuild")
        }
    
        def "can co-develop plugin and consumer with plugin as included build withVersion: #withVersion"() {
            given:
            applyPlugin(buildA, true, withVersion)
            addLifecycleTasks(buildA)
    
            includePluginBuild pluginBuild
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InternetDomainName.java

      }
    
      /**
       * Returns the portion of this domain name that is one level beneath the {@linkplain
       * #isPublicSuffix() public suffix}. For example, for {@code x.adwords.google.co.uk} it returns
       * {@code google.co.uk}, since {@code co.uk} is a public suffix. Similarly, for {@code
       * myblog.blogspot.com} it returns the same domain, {@code myblog.blogspot.com}, since {@code
       * blogspot.com} is a public suffix.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InternetDomainName.java

      }
    
      /**
       * Returns the portion of this domain name that is one level beneath the {@linkplain
       * #isPublicSuffix() public suffix}. For example, for {@code x.adwords.google.co.uk} it returns
       * {@code google.co.uk}, since {@code co.uk} is a public suffix. Similarly, for {@code
       * myblog.blogspot.com} it returns the same domain, {@code myblog.blogspot.com}, since {@code
       * blogspot.com} is a public suffix.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. docs/vi/docs/index.md

    * Với request `PUT` tới `/items/{item_id}`, đọc body như JSON:
        * Kiểm tra xem nó  một thuộc tính bắt buộc kiểu  `str` là `name` không?
        * Kiểm tra xem nó  một thuộc tính bắt buộc kiểu `float` là `price` không?
        * Kiểm tra xem nó  một thuộc tính tùy chọn là `is_offer` không? Nếu , nó phải  kiểu `bool`.
        * Tất cả những kiểm tra này cũng được áp dụng với các JSON lồng nhau.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top