Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for list_items (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fastapi/.agents/skills/fastapi/SKILL.md

    
    @router.get("/")
    async def list_items():
        return []
    
    
    # In main.py
    app.include_router(router)
    ```
    
    instead of this:
    
    ```python
    # DO NOT DO THIS
    from fastapi import APIRouter, FastAPI
    
    app = FastAPI()
    
    router = APIRouter()
    
    
    @router.get("/")
    async def list_items():
        return []
    
    
    # In main.py
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            // Verify deletion
            protwordsFile.reload(null);
            PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 100);
            for (ProtwordsItem listItem : list) {
                assertFalse("test1".equals(listItem.getInput()));
            }
        }
    
        @Test
        public void test_reload_withIOException() {
            // This test verifies error handling during reload
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.2K bytes
    - Click Count (0)
  3. src/main/webapp/js/marked.min.js

    `}hr(e){return`<hr>
    `}list(e){let t=e.ordered,n=e.start,r="";for(let a=0;a<e.items.length;a++){let o=e.items[a];r+=this.listitem(o)}let i=t?"ol":"ul",s=t&&n!==1?' start="'+n+'"':"";return"<"+i+s+`>
    `+r+"</"+i+`>
    `}listitem(e){return`<li>${this.parser.parse(e.tokens)}</li>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 41.5K bytes
    - Click Count (0)
  4. src/bytes/bytes_test.go

    	{"TrimLeft", "abba", "a", "bba"},
    	{"TrimLeft", "abba", "b", "abba"},
    	{"TrimRight", "abba", "a", "abb"},
    	{"TrimRight", "abba", "b", "abba"},
    	{"Trim", "<tag>", "<>", "tag"},
    	{"Trim", "* listitem", " *", "listitem"},
    	{"Trim", `"quote"`, `"`, "quote"},
    	{"Trim", "\u2C6F\u2C6F\u0250\u0250\u2C6F\u2C6F", "\u2C6F", "\u0250\u0250"},
    	{"Trim", "\x80test\xff", "\xff", "test"},
    	{"Trim", " Ġ ", " ", "Ġ"},
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Mar 11 03:07:05 GMT 2026
    - 62.9K bytes
    - Click Count (0)
Back to Top