- Sort Score
- Num 10 results
- Language All
Results 501 - 510 of 2,338 for fiction (0.17 seconds)
-
docs/tr/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
Bazı durumlarda bir dependency'nin döndürdüğü değere *path operation function* içinde gerçekten ihtiyacınız olmaz. Ya da dependency zaten bir değer döndürmüyordur. Ancak yine de çalıştırılmasını/çözülmesini istersiniz. Bu gibi durumlarda, `Depends` ile bir *path operation function* parametresi tanımlamak yerine, *path operation decorator*'üne `dependencies` adında bir `list` ekleyebilirsiniz.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 3.3K bytes - Click Count (0) -
scripts/docs.py
sponsors = mkdocs.utils.yaml_load(sponsors_data_path.read_text(encoding="utf-8")) if not (match_start and match_end): raise RuntimeError("Couldn't auto-generate sponsors section") if not match_pre: raise RuntimeError("Couldn't find pre section (<style>) in index.md") frontmatter_end = match_pre.end() pre_end = match_start.end() post_start = match_end.start() template = Template(index_sponsors_template)
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:46:10 GMT 2026 - 25.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
ListenableFuture<@Nullable FooChild> future = immediateFuture(null); BarChild barChild = new BarChild(); Function<Foo, BarChild> function = unused -> barChild; Bar bar = getDone(transform(future, function, directExecutor())); assertThat(bar).isEqualTo(barChild); } @J2ktIncompatible @GwtIncompatible // StackOverflowError
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
ListenableFuture<@Nullable FooChild> future = immediateFuture(null); BarChild barChild = new BarChild(); Function<Foo, BarChild> function = unused -> barChild; Bar bar = getDone(transform(future, function, directExecutor())); assertThat(bar).isEqualTo(barChild); } @J2ktIncompatible @GwtIncompatible // StackOverflowError
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
fastapi/background.py
Doc( """ The function to call after the response is sent. It can be a regular `def` function or an `async def` function. """ ), ], *args: P.args, **kwargs: P.kwargs, ) -> None: """ Add a function to be called in the background after the response is sent.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:41:21 GMT 2026 - 1.8K bytes - Click Count (0) -
docs/tr/docs/advanced/advanced-dependencies.md
### `yield` ve `scope` ile dependency'ler { #dependencies-with-yield-and-scope } 0.121.0 sürümünde FastAPI, `Depends(scope="function")` desteğini ekledi. `Depends(scope="function")` kullanıldığında, `yield` sonrasındaki çıkış kodu, *path operation function* biter bitmez, response client'a geri gönderilmeden önce çalıştırılır.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 10K bytes - Click Count (0) -
buildscripts/resolve-right-versions.sh
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Aug 16 14:51:33 GMT 2023 - 1.5K bytes - Click Count (0) -
docs/en/docs/advanced/testing-dependencies.md
For these cases, your **FastAPI** application has an attribute `app.dependency_overrides`, it is a simple `dict`. To override a dependency for testing, you put as a key the original dependency (a function), and as the value, your dependency override (another function). And then **FastAPI** will call that override instead of the original dependency. {* ../../docs_src/dependency_testing/tutorial001_an_py310.py hl[26:27,30] *} /// tip
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Aug 31 09:15:41 GMT 2025 - 2.4K bytes - Click Count (0) -
docs/tr/docs/tutorial/dependencies/classes-as-dependencies.md
Ama sonra *path operation function* içindeki `commons` parametresinde bir `dict` alıyoruz. Ve biliyoruz ki editor'ler `dict`'ler için çok fazla destek (ör. completion) veremez; çünkü key'lerini ve value type'larını bilemezler. Daha iyisini yapabiliriz... ## Bir Şeyi Dependency Yapan Nedir { #what-makes-a-dependency } Şimdiye kadar dependency'leri function olarak tanımlanmış şekilde gördünüz.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 12:41:38 GMT 2026 - 7.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
package org.codelibs.fess.app.web.admin.searchlist; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import java.util.TreeMap; import java.util.function.Consumer; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.net.URLUtil; import org.codelibs.fess.Constants;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 25.5K bytes - Click Count (1)