- Sort Score
- Result 10 results
- Languages All
Results 661 - 670 of 1,315 for myfield (0.1 sec)
-
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsFavoriteLog.java
addFieldToSource(sourceMap, "userInfoId", userInfoId); } return sourceMap; } protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { sourceMap.put(field, value); } // =================================================================================== // Basic Override
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.7K bytes - Viewed (0) -
docs_src/dependencies/tutorial010_py39.py
def __enter__(self): return self.db def __exit__(self, exc_type, exc_value, traceback): self.db.close() async def get_db(): with MySuperContextManager() as db:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 292 bytes - Viewed (0) -
docs/ru/docs/tutorial/middleware.md
* Получает **ответ** (от *операции пути*). * Может что-то сделать с этим **ответом** или выполнить любой нужный код. * И возвращает **ответ**. /// note | Технические детали Если у вас есть зависимости с `yield`, то код выхода (код после `yield`) будет выполняться *после* middleware.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 6.3K bytes - Viewed (0) -
docs_src/custom_response/tutorial007_py39.py
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 277 bytes - Viewed (0) -
gorm.go
relation, ok := modelSchema.Relationships.Relations[field] isRelation := ok && relation.JoinTable != nil if !isRelation { return fmt.Errorf("failed to find relation: %s", field) } for _, ref := range relation.References { f := joinSchema.LookUpField(ref.ForeignKey.DBName) if f == nil { return fmt.Errorf("missing field %s for join table", ref.ForeignKey.DBName) }
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Tue Aug 26 06:24:29 UTC 2025 - 12.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt
} } } when { headerIndex != -1 -> { // Indexed Header Field. writeInt(headerIndex, PREFIX_7_BITS, 0x80) } headerNameIndex == -1 -> { // Literal Header Field with Incremental Indexing - New Name. out.writeByte(0x40) writeByteString(name) writeByteString(value)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 22.4K bytes - Viewed (0) -
docs_src/dependencies/tutorial008b_an_py39.py
"portal-gun": {"description": "Gun to create portals", "owner": "Rick"}, } class OwnerError(Exception): pass def get_username(): try: yield "Rick" except OwnerError as e: raise HTTPException(status_code=400, detail=f"Owner error: {e}") @app.get("/items/{item_id}") def get_item(item_id: str, username: Annotated[str, Depends(get_username)]):Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 26 20:37:34 UTC 2023 - 775 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/group/SearchForm.java
/** * The search form for Group. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The ID field for searching groups. */ public String id;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 908 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/SearchForm.java
/** * The search form for Scheduler. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The ID field for searching scheduled jobs. */ public String id;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 924 bytes - Viewed (0) -
docs_src/dependencies/tutorial008e_an_py39.py
from typing import Annotated from fastapi import Depends, FastAPI app = FastAPI() def get_username(): try: yield "Rick" finally: print("Cleanup up before response is sent") @app.get("/users/me") def get_user_me(username: Annotated[str, Depends(get_username, scope="function")]):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 03 10:12:49 UTC 2025 - 329 bytes - Viewed (0)