Search Options

Results per page
Sort
Preferred Languages
Advance

Results 301 - 310 of 627 for iter (0.02 sec)

  1. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

                    new String[] { "tag1", "tag2" }, new String[] { "role1" }, new String[] {}, // languages
                    SuggestItem.Kind.DOCUMENT);
            item.setTimestamp(ZonedDateTime.now());
    
            String bulkLine = SuggestUtil.createBulkLine("test_index", "_doc", item);
            assertNotNull(bulkLine);
            assertTrue(bulkLine.contains("test_index"));
            assertTrue(bulkLine.contains("_doc"));
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  2. docs/em/docs/advanced/templates.md

    **FastAPI** ๐Ÿšš ๐ŸŽ `starlette.templating` `fastapi.templating` ๐Ÿช ๐Ÿ‘†, ๐Ÿ‘ฉโ€๐Ÿ’ป. โœ‹๏ธ ๐ŸŒ… ๐Ÿ’ช ๐Ÿ“จ ๐Ÿ‘Ÿ ๐Ÿ”— โšช๏ธโžก๏ธ ๐Ÿ’ƒ. ๐ŸŽ โฎ๏ธ `Request` & `StaticFiles`.
    
    ///
    
    ## โœ ๐Ÿ“„
    
    โคด๏ธ ๐Ÿ‘† ๐Ÿ’ช โœ ๐Ÿ“„ `templates/item.html` โฎ๏ธ:
    
    ```jinja hl_lines="7"
    {!../../docs_src/templates/templates/item.html!}
    ```
    
    โšซ๏ธ ๐Ÿ”œ ๐ŸŽฆ `id` โœŠ โšช๏ธโžก๏ธ "๐Ÿ”‘" `dict` ๐Ÿ‘† ๐Ÿšถโ€โ™€๏ธ:
    
    ```Python
    {"request": request, "id": id}
    ```
    
    ## ๐Ÿ“„ & ๐ŸŽป ๐Ÿ“
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. cmd/iam-object-store_test.go

    		},
    	}
    	for i, test := range cases {
    		listKey, item := splitPath(test.path, test.secondIndex)
    		if listKey != test.expectedListKey || item != test.expectedItem {
    			t.Errorf("unexpected result on test[%v]: expected[%s, %s] but got [%s, %s]", i, test.expectedListKey, test.expectedItem, listKey, item)
    		}
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Oct 10 23:40:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/handling-errors.md

    ```JSON
    {
      "item": "The Foo Wrestlers"
    }
    ```
    
    But if the client requests `http://example.com/items/bar` (a non-existent `item_id` `"bar"`), that client will receive an HTTP status code of 404 (the "not found" error), and a JSON response of:
    
    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    /// tip
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  5. ci/devinfra/docker/windows2022/Dockerfile

      $zulu_root = \"c:\\openjdk\"; \
      (New-Object Net.WebClient).DownloadFile($zulu_url, $zulu_zip); \
      [System.IO.Compression.ZipFile]::ExtractToDirectory($zulu_zip, \"c:\\temp\"); \
      Move-Item $zulu_extracted_path -Destination $zulu_root; \
      Remove-Item $zulu_zip; \
      $env:PATH = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\") + \";${zulu_root}\\bin\"; \
      [Environment]::SetEnvironmentVariable(\"PATH\", $env:PATH, \"Machine\"); \
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Jan 13 18:59:55 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

                    secondWords.add(text);
                }
    
                if (suggestDetail) {
                    final SuggestItem item = SuggestItem.parseSource(source);
                    if (isFirstWords) {
                        firstItems.add(item);
                    } else {
                        secondItems.add(item);
                    }
                }
            }
            firstWords.addAll(secondWords);
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  7. internal/lru/lru.go

    // Add adds a value to the cache. Returns true if an eviction occurred.
    // Returns false if there was no eviction: the item was already in the cache,
    // or the size was not exceeded.
    func (c *LRU[K, V]) Add(key K, value V) (evicted bool) {
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	now := time.Now()
    
    	// Check for existing item
    	if ent, ok := c.items[key]; ok {
    		c.evictList.MoveToFront(ent)
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Apr 25 08:22:26 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride_details.jsp

                            <ol class="breadcrumb float-sm-right">
                                <li class="breadcrumb-item"><la:link href="/admin/dict">
                                    <la:message key="labels.dict_list_link"/>
                                </la:link></li>
                                <li class="breadcrumb-item"><la:link href="../list/1/?dictId=${f:u(dictId)}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  9. docs/ja/docs/advanced/additional-status-codes.md

    ใใ‚Œใฏใ€ใƒ‡ใƒ•ใ‚ฉใƒซใƒˆใฎใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰ใ‹ใ€ *path operation* ใงใ‚ปใƒƒใƒˆใ—ใŸใ‚‚ใฎใ‚’ๅˆฉ็”จใ—ใพใ™ใ€‚
    
    ## ่ฟฝๅŠ ใฎใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰
    
    ใƒกใ‚คใƒณใฎใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰ใจใฏๅˆฅใซใ€ไป–ใฎใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰ใ‚’่ฟ”ใ—ใŸใ„ๅ ดๅˆใฏใ€`Response` (`JSONResponse` ใชใฉ) ใซ่ฟฝๅŠ ใฎใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰ใ‚’่จญๅฎšใ—ใฆ็›ดๆŽฅ่ฟ”ใ—ใพใ™ใ€‚
    
    ไพ‹ใˆใฐใ€itemใ‚’ๆ›ดๆ–ฐใ—ใ€ๆˆๅŠŸใ—ใŸๅ ดๅˆใฏ200 "OK"ใฎHTTPใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰ใ‚’่ฟ”ใ™ *path operation* ใ‚’ไฝœใ‚ŠใŸใ„ใจใ—ใพใ™ใ€‚
    
    ใ—ใ‹ใ—ใ€ๆ–ฐใ—ใ„itemใ‚‚่จฑๅฏใ—ใŸใ„ใงใ™ใ€‚itemใŒๅญ˜ๅœจใ—ใชใ„ๅ ดๅˆใฏใ€ใใ‚Œใ‚‰ใ‚’ไฝœๆˆใ—ใฆ201 "Created"ใ‚’่ฟ”ใ—ใพใ™ใ€‚
    
    ใ“ใ‚Œใ‚’้”ๆˆใ™ใ‚‹ใซใฏใ€ `JSONResponse` ใ‚’ใ‚คใƒณใƒใƒผใƒˆใ—ใ€ `status_code` ใ‚’่จญๅฎšใ—ใฆ็›ดๆŽฅๅ†…ๅฎนใ‚’่ฟ”ใ—ใพใ™ใ€‚
    
    {* ../../docs_src/additional_status_codes/tutorial001.py hl[4,25] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. cmd/iam-etcd-store.go

    }
    
    func getIAMConfig(item any, data []byte, itemPath string) error {
    	data, err := decryptData(data, itemPath)
    	if err != nil {
    		return err
    	}
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	return json.Unmarshal(data, item)
    }
    
    func (ies *IAMEtcdStore) loadIAMConfig(ctx context.Context, item any, path string) error {
    	data, err := readKeyEtcd(ctx, ies.client, path)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 13.9K bytes
    - Viewed (0)
Back to top