Search Options

Results per page
Sort
Preferred Languages
Advance

Results 681 - 690 of 1,417 for itemId (0.12 sec)

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

    ///
    
    πŸ‘ˆ β›“: "πŸ”’ `items` `list`, & πŸ”  🏬 πŸ‘‰ πŸ“‡ `str`".
    
    /// tip
    
    πŸš₯ πŸ‘† βš™οΈ 🐍 3️⃣.9️⃣ βš–οΈ πŸ”›, πŸ‘† 🚫 βœ”οΈ πŸ—„ `List` βšͺ️➑️ `typing`, πŸ‘† πŸ’ͺ βš™οΈ 🎏 πŸ₯” `list` πŸ†Ž ↩️.
    
    ///
    
    πŸ”¨ πŸ‘ˆ, πŸ‘† πŸ‘¨β€πŸŽ¨ πŸ’ͺ 🚚 πŸ•β€πŸ¦Ί βͺ 🏭 🏬 βšͺ️➑️ πŸ“‡:
    
    <img src="/img/python-types/image05.png">
    
    🍡 πŸ†Ž, πŸ‘ˆ πŸŒ– πŸ’ͺ πŸ†.
    
    πŸ‘€ πŸ‘ˆ πŸ”’ `item` 1️⃣ πŸ”£ πŸ“‡ `items`.
    
    &amp; , πŸ‘¨β€πŸŽ¨ πŸ’­ ⚫️ `str`, &amp; 🚚 πŸ•β€πŸ¦Ί πŸ‘ˆ.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. docs_src/dependencies/tutorial002_an_py310.py

            self.skip = skip
            self.limit = limit
    
    
    @app.get("/items/")
    async def read_items(commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]):
        response = {}
        if commons.q:
            response.update({"q": commons.q})
        items = fake_items_db[commons.skip : commons.skip + commons.limit]
        response.update({"items": items})
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 664 bytes
    - Viewed (0)
  3. docs_src/dependencies/tutorial002_an.py

            self.skip = skip
            self.limit = limit
    
    
    @app.get("/items/")
    async def read_items(commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]):
        response = {}
        if commons.q:
            response.update({"q": commons.q})
        items = fake_items_db[commons.skip : commons.skip + commons.limit]
        response.update({"items": items})
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 706 bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 2;
    
      // items contains each of the included items.
      repeated k8s.io.apimachinery.pkg.apis.meta.v1.PartialObjectMetadata items = 1;
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_cookie_params/test_tutorial001_an.py

        "path,cookies,expected_status,expected_response",
        [
            ("/items", None, 200, {"ads_id": None}),
            ("/items", {"ads_id": "ads_track"}, 200, {"ads_id": "ads_track"}),
            (
                "/items",
                {"ads_id": "ads_track", "session": "cookiesession"},
                200,
                {"ads_id": "ads_track"},
            ),
            ("/items", {"session": "cookiesession"}, 200, {"ads_id": None}),
        ],
    )
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. istioctl/pkg/tag/util.go

    		LabelSelector: fmt.Sprintf("%s=%s", label.IoIstioRev.Name, tag),
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	nsNames := make([]string, len(namespaces.Items))
    	for i, ns := range namespaces.Items {
    		nsNames[i] = ns.Name
    	}
    	return nsNames, nil
    }
    
    // GetWebhookTagName extracts tag name from webhook object.
    func GetWebhookTagName(wh admitv1.MutatingWebhookConfiguration) string {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_cookie_params/test_tutorial001_py310.py

        "path,cookies,expected_status,expected_response",
        [
            ("/items", None, 200, {"ads_id": None}),
            ("/items", {"ads_id": "ads_track"}, 200, {"ads_id": "ads_track"}),
            (
                "/items",
                {"ads_id": "ads_track", "session": "cookiesession"},
                200,
                {"ads_id": "ads_track"},
            ),
            ("/items", {"session": "cookiesession"}, 200, {"ads_id": None}),
        ],
    )
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_query_params_str_validations/test_tutorial011_an_py310.py

        return client
    
    
    @needs_py310
    def test_multi_query_values(client: TestClient):
        url = "/items/?q=foo&q=bar"
        response = client.get(url)
        assert response.status_code == 200, response.text
        assert response.json() == {"q": ["foo", "bar"]}
    
    
    @needs_py310
    def test_query_no_values(client: TestClient):
        url = "/items/"
        response = client.get(url)
        assert response.status_code == 200, response.text
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestResponse.java

        protected final List<SuggestItem> items;
    
        public SuggestResponse(final String index, final long tookMs, final List<String> words, final long total,
                final List<SuggestItem> items) {
            this.index = index;
            this.tookMs = tookMs;
            this.words = words;
            num = words.size();
            this.total = total;
            this.items = items;
        }
    
        public String getIndex() {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Sat Oct 12 00:10:39 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. docs/zh/docs/advanced/security/oauth2-scopes.md

    {!../../docs_src/security/tutorial005.py!}
    ```
    
    ## 在*θ·―εΎ„ζ“δ½œ*δΈŽδΎθ΅–ι‘ΉδΈ­ε£°ζ˜Žδ½œη”¨εŸŸ
    
    ζŽ₯δΈ‹ζ₯,为*θ·―εΎ„ζ“δ½œ*  `/users/me/items/` ε£°ζ˜Žδ½œη”¨εŸŸ `items`。
    
    为歀,要从 `fastapi` δΈ­ε―Όε…₯幢使用 `Security` 。
    
    `Security` ε£°ζ˜ŽδΎθ΅–ι‘Ήηš„ζ–ΉεΌε’Œ `Depends` δΈ€ζ ·οΌŒδ½† `Security` θΏ˜θƒ½ζŽ₯ζ”Άδ½œη”¨εŸŸοΌˆε­—η¬¦δΈ²οΌ‰εˆ—θ‘¨η±»εž‹ηš„ε‚ζ•° `scopes`。
    
    ζ­€ε€„δ½Ώη”¨δΈŽ `Depends` η›ΈεŒηš„ζ–ΉεΌοΌŒζŠŠδΎθ΅–ι‘Ήε‡½ζ•° `get_current_active_user` δΌ ι€’η»™ `Security`。
    
    εŒζ—ΆοΌŒθΏ˜δΌ ι€’δΊ†δ½œη”¨εŸŸ**εˆ—θ‘¨**οΌŒζœ¬δΎ‹δΈ­εͺδΌ ι€’δΊ†δΈ€δΈͺδ½œη”¨εŸŸοΌš`items`οΌˆζ­€ε€„ζ”―ζŒδΌ ι€’ζ›΄ε€šδ½œη”¨εŸŸοΌ‰γ€‚
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top