Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 311 - 320 of 1,150 for Little (0.2 seconds)

  1. docs_src/custom_response/tutorial002_py310.py

    from fastapi.responses import HTMLResponse
    
    app = FastAPI()
    
    
    @app.get("/items/", response_class=HTMLResponse)
    async def read_items():
        return """
        <html>
            <head>
                <title>Some HTML in here</title>
            </head>
            <body>
                <h1>Look ma! HTML!</h1>
            </body>
        </html>
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 352 bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java

            PrefixQuery prefixQuery = new PrefixQuery(new Term("title", "test"));
    
            QueryBuilder builder = queryProcessor.execute(context, prefixQuery, 1.0f);
    
            assertNotNull(builder);
            assertTrue(builder instanceof MatchPhrasePrefixQueryBuilder);
    
            MatchPhrasePrefixQueryBuilder mpqb = (MatchPhrasePrefixQueryBuilder) builder;
            assertEquals("title", mpqb.fieldName());
            assertEquals("test", mpqb.value());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  3. docs_src/app_testing/app_b_py310/main.py

    from pydantic import BaseModel
    
    fake_secret_token = "coneofsilence"
    
    fake_db = {
        "foo": {"id": "foo", "title": "Foo", "description": "There goes my hero"},
        "bar": {"id": "bar", "title": "Bar", "description": "The bartenders"},
    }
    
    app = FastAPI()
    
    
    class Item(BaseModel):
        id: str
        title: str
        description: str | None = None
    
    
    @app.get("/items/{item_id}", response_model=Item)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 04 13:32:24 GMT 2026
    - 1.1K bytes
    - Click Count (0)
  4. MIGRATION.md

        solr_data = json.load(f)
    
    # Transform documents
    fess_docs = []
    for doc in solr_data['response']['docs']:
        fess_doc = {
            "url": doc.get("id", ""),
            "title": doc.get("title", [""])[0] if isinstance(doc.get("title"), list) else doc.get("title", ""),
            "content": doc.get("content", [""])[0] if isinstance(doc.get("content"), list) else doc.get("content", ""),
            "mimetype": "text/html",
            "filetype": "html",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  5. docs/es/docs/tutorial/cookie-param-models.md

    Pobres banners de cookies con todo su esfuerzo para obtener tu consentimiento para que la <dfn title="Esta es otra broma. No me prestes atención. Toma un café para tu cookie. ☕">API lo rechace</dfn>. 🍪
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:41:41 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  6. docs_src/custom_response/tutorial004_py310.py

    from fastapi import FastAPI
    from fastapi.responses import HTMLResponse
    
    app = FastAPI()
    
    
    def generate_html_response():
        html_content = """
        <html>
            <head>
                <title>Some HTML in here</title>
            </head>
            <body>
                <h1>Look ma! HTML!</h1>
            </body>
        </html>
        """
        return HTMLResponse(content=html_content, status_code=200)
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 491 bytes
    - Click Count (0)
  7. tests/postgres_test.go

    	}
    
    	DB.Migrator().DropTable(&Post{}, &Category{}, "post_categories")
    	DB.AutoMigrate(&Post{}, &Category{})
    
    	post := Post{
    		Title: "Hello World",
    		Categories: []*Category{
    			{Title: "Coding"},
    			{Title: "Golang"},
    		},
    	}
    
    	if err := DB.Create(&post).Error; err != nil {
    		t.Errorf("Failed, got error: %v", err)
    	}
    }
    
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Oct 08 09:16:32 GMT 2022
    - 6.4K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/_llm-test.md

    ### abbr 提供完整詞組 { #the-abbr-gives-a-full-phrase }
    
    * <abbr title="Getting Things Done - 搞定工作法">GTD</abbr>
    * <abbr title="less than - 小於"><code>lt</code></abbr>
    * <abbr title="XML Web Token - XML 網路權杖">XWT</abbr>
    * <abbr title="Parallel Server Gateway Interface - 平行伺服器閘道介面">PSGI</abbr>
    
    ### abbr 提供完整詞組與說明 { #the-abbr-gives-a-full-phrase-and-an-explanation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10K bytes
    - Click Count (0)
  9. docs/uk/docs/tutorial/bigger-applications.md

    {* ../../docs_src/bigger_applications/app_an_py310/routers/users.py hl[1,3] title["app/routers/users.py"] *}
    
    ### *Операції шляху* з `APIRouter` { #path-operations-with-apirouter }
    
    Потім використовуйте його для оголошення *операцій шляху*.
    
    Використовуйте його так само, як і клас `FastAPI`:
    
    {* ../../docs_src/bigger_applications/app_an_py310/routers/users.py hl[6,11,16] title["app/routers/users.py"] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 27.4K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl_details.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
    ${fe:html(true)}
    <head>
        <meta charset="UTF-8">
        <title><la:message key="labels.admin_brand_title"/> | <la:message
                key="labels.failure_url_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 11K bytes
    - Click Count (0)
Back to Top