Search Options

Results per page
Sort
Preferred Languages
Advance

Results 691 - 700 of 1,721 for item (0.04 sec)

  1. tests/test_tutorial/test_extra_data_types/test_tutorial001_py310.py

                            },
                        },
                        "summary": "Read Items",
                        "operationId": "read_items_items__item_id__put",
                        "parameters": [
                            {
                                "required": True,
                                "schema": {
                                    "title": "Item Id",
                                    "type": "string",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    boolean first = true;
                    for (final SuggestItem item : suggestResponse.getItems()) {
                        if (!first) {
                            buf.append(',');
                        }
                        first = false;
    
                        buf.append("{\"text\":\"").append(StringEscapeUtils.escapeJson(item.getText())).append('\"');
                        buf.append(",\"labels\":[");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  3. cmd/admin-heal-ops.go

    	// the last result index sent to client
    	lastSentResultIndex int64
    
    	// Number of total items scanned against item type
    	scannedItemsMap map[madmin.HealItemType]int64
    
    	// Number of total items healed against item type
    	healedItemsMap map[madmin.HealItemType]int64
    
    	// Number of total items where healing failed against item type
    	healFailedItemsMap map[madmin.HealItemType]int64
    
    	// The time of the last scan/heal activity
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 26 09:58:27 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. docs/em/docs/advanced/response-directly.md

    **FastAPI** 🚚 🎏 `starlette.responses` `fastapi.responses` đŸĒ 👆, 👩‍đŸ’ģ. ✋ī¸ 🌅 đŸ’Ē 📨 👟 🔗 âšĒī¸âžĄī¸ 💃.
    
    ///
    
    ## đŸ›Ŧ 🛃 `Response`
    
    đŸ–ŧ 🔛 đŸŽĻ 🌐 🍕 👆 đŸ’Ē, ✋ī¸ âšĢī¸ đŸšĢ đŸ“ļ ⚠, 👆 đŸ’Ē ✔ī¸ 📨 `item` 🔗, & **FastAPI** 🔜 🚮 âšĢī¸ `JSONResponse` 👆, 🏭 âšĢī¸ `dict`, ♒ī¸. 🌐 👈 đŸ”ĸ.
    
    🔜, ➡ī¸ 👀 ❔ 👆 đŸ’Ē ⚙ī¸ 👈 📨 🛃 📨.
    
    ➡ī¸ đŸ’Ŧ 👈 👆 💚 📨 <a href="https://en.wikipedia.org/wiki/XML" class="external-link" target="_blank">📂</a> 📨.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. internal/store/batch_test.go

    	}
    	if key.ItemCount != int(limit) {
    		t.Fatalf("expected key.ItemCount=%d; but got %v", limit, key.ItemCount)
    	}
    	items, err := store.GetMultiple(key)
    	if err != nil {
    		t.Fatalf("unable to read key %v; %v", key.String(), err)
    	}
    	if len(items) != int(limit) {
    		t.Fatalf("expected len(items)=%d; but got %v", limit, len(items))
    	}
    }
    
    func TestBatchCommitOnExit(t *testing.T) {
    	defer func() {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. docs/features/caching.md

     - CallStart
     - **CacheHit**
     - CallEnd
     
    ### Cache Miss
    
    Under a cache miss the normal request events are seen but an additional event shows the presence of the cache.
    Cache Miss will be typical if the item has not been read from the network, is uncacheable, or is past it's 
    lifetime based on Response cache headers.
    
     - CallStart 
     - **CacheMiss**
     - ProxySelectStart
     - ... Standard Events ...
     - CallEnd
            
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. fastapi/encoders.py

            return encoded_dict
        if isinstance(obj, (list, set, frozenset, GeneratorType, tuple, deque)):
            encoded_list = []
            for item in obj:
                encoded_list.append(
                    jsonable_encoder(
                        item,
                        include=include,
                        exclude=exclude,
                        by_alias=by_alias,
                        exclude_unset=exclude_unset,
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. internal/s3select/jstream/scanner.go

    	if s.pos >= atomic.LoadInt64(&s.end) {
    		return nullByte
    	}
    	s.ipos++
    
    	if s.ipos > s.ifill { // internal buffer is exhausted
    		s.ifill = <-s.fillReady
    
    		s.buf[0] = s.buf[len(s.buf)-1] // copy current last item to guarantee lookback
    		copy(s.buf[1:], s.nbuf[:])     // copy contents of pre-filled next buffer
    		s.ipos = 1                     // move to beginning of internal buffer
    
    		// request next fill to be prepared
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. docs/em/docs/advanced/generate-clients.md

    ////
    
    //// tab | 🐍 3ī¸âƒŖ.9ī¸âƒŖ &amp; 🔛
    
    ```Python hl_lines="7-9  12-13  16-17  21"
    {!> ../../docs_src/generate_clients/tutorial001_py39.py!}
    ```
    
    ////
    
    👀 👈 *➡ 🛠ī¸* đŸ”Ŧ 🏷 đŸ‘Ģ ⚙ī¸ 📨 🚀 &amp; 📨 🚀, ⚙ī¸ 🏷 `Item` &amp; `ResponseMessage`.
    
    ### 🛠ī¸ đŸŠē
    
    đŸšĨ 👆 đŸšļ 🛠ī¸ đŸŠē, 👆 🔜 👀 👈 âšĢī¸ ✔ī¸ **🔗** 📊 📨 📨 &amp; 📨 📨:
    
    <img src="/img/tutorial/generate-clients/image01.png">
    
    👆 đŸ’Ē 👀 👈 🔗 ↩ī¸ đŸ‘Ģ đŸ“Ŗ ⏎ī¸ 🏷 📱.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Funnel.java

     * serialization of funnels. When possible, it is recommended that funnels be implemented as a
     * single-element enum to maintain serialization guarantees. See Effective Java (2nd Edition), Item
     * 3: "Enforce the singleton property with a private constructor or an enum type". For example:
     *
     * <pre>{@code
     * public enum PersonFunnel implements Funnel<Person> {
     *   INSTANCE;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top