Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. test/codegen/mathbits.go

    //    bits.Add*    //
    // --------------- //
    
    func Add(x, y, ci uint) (r, co uint) {
    	// arm64:"ADDS","ADCS","ADC",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ","SBBQ","NEGQ"
    	// ppc64x: "ADDC", "ADDE", "ADDZE"
    	// s390x:"ADDE","ADDC\t[$]-1,"
    	// riscv64: "ADD","SLTU"
    	return bits.Add(x, y, ci)
    }
    
    func AddC(x, ci uint) (r, co uint) {
    	// arm64:"ADDS","ADCS","ADC",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ","SBBQ","NEGQ"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. docs/en/data/external_links.yml

    frameworkのパフォーマンス比較 (Django, Flask, responder, FastAPI, japronto) - author: ライトコードメディア編集部 author_link: https://rightcode.co.jp/author/jun link: https://rightcode.co.jp/blog/information-technology/fastapi-tutorial-todo-apps-admin-page-improvement title: '【第4回】FastAPIチュートリアル: toDoアプリを作ってみよう【管理者ページ改良編】' - author: ライトコードメディア編集部 author_link: https://rightcode.co.jp/author/jun link: https://rightcode.co.jp/blog/information-technology/fastapi-tutorial-todo-apps-authentication-user-registration title: '【第3回】FastAPIチュートリアル:...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top