- Sort Score
- Num 10 results
- Language All
Results 901 - 910 of 1,304 for DEF (0.15 seconds)
-
src/main/java/jcifs/smb1/util/MimeMap.java
* @param extension the file extension to look up (without the dot) * @param def the default MIME type to return if no mapping is found * @return the MIME type for the extension, or the specified default if not found * @throws IOException if there is an error processing the MIME mappings */ public String getMimeType(final String extension, final String def) throws IOException { int state, t, x, i, off; byte ch;
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.1K bytes - Click Count (0) -
docs_src/python_types/tutorial007_py39.py
def process_items(items_t: tuple[int, int, str], items_s: set[bytes]):
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Jan 07 14:11:31 GMT 2022 - 99 bytes - Click Count (0) -
docs_src/pydantic_v1_in_v2/tutorial002_an_py310.py
from fastapi import FastAPI from pydantic.v1 import BaseModel class Item(BaseModel): name: str description: str | None = None size: float app = FastAPI() @app.post("/items/") async def create_item(item: Item) -> Item:
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Oct 11 16:45:54 GMT 2025 - 252 bytes - Click Count (0) -
docs_src/async_tests/app_a_py39/main.py
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 112 bytes - Click Count (0) -
docs_src/first_steps/tutorial003_py39.py
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 111 bytes - Click Count (0) -
tests/test_request_params/test_form/utils.py
from typing import Any def get_body_model_name(openapi: dict[str, Any], path: str) -> str: body = openapi["paths"][path]["post"]["requestBody"] body_schema = body["content"]["application/x-www-form-urlencoded"]["schema"]
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 285 bytes - Click Count (0) -
docs_src/query_params/tutorial002_py39.py
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 251 bytes - Click Count (0) -
docs_src/request_form_models/tutorial001_an_py39.py
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Thu Sep 05 15:16:50 GMT 2024 - 268 bytes - Click Count (0) -
docs_src/behind_a_proxy/tutorial001_01_py39.py
from fastapi import FastAPI app = FastAPI() @app.get("/items/") def read_items():
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 122 bytes - Click Count (0) -
docs_src/python_types/tutorial004_py39.py
def get_name_with_age(name: str, age: int): name_with_age = name + " is this old: " + str(age)
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 124 bytes - Click Count (0)