- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 558 for SCOPE (0.03 seconds)
-
src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java
// Expected due to missing dependencies in test environment assertTrue(true); return; } // assertEquals(0, result.size()); // Commented out due to variable scope } @Test public void test_getBoostedDocumentList_withVirtualHost() { KeyMatch keyMatch = new KeyMatch(); keyMatch.setId("km1"); keyMatch.setTerm("java");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.4K bytes - Click Count (0) -
docs/en/docs/advanced/advanced-dependencies.md
### Dependencies with `yield` and `scope` { #dependencies-with-yield-and-scope } In version 0.121.0, FastAPI added support for `Depends(scope="function")` for dependencies with `yield`. Using `Depends(scope="function")`, the exit code after `yield` is executed right after the *path operation function* is finished, before the response is sent back to the client.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 9K bytes - Click Count (0) -
fastapi/dependencies/utils.py
) -> SolvedDependency: request_astack = request.scope.get("fastapi_inner_astack") assert isinstance(request_astack, AsyncExitStack), ( "fastapi_inner_astack not found in request scope" ) function_astack = request.scope.get("fastapi_function_astack") assert isinstance(function_astack, AsyncExitStack), ( "fastapi_function_astack not found in request scope" ) values: dict[str, Any] = {}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 38.7K bytes - Click Count (3) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProject.java
@Nonnull @Override public DependencyScope getScope() { String scope = dependency.getScope(); if (scope == null) { scope = ""; } return session.requireDependencyScope(scope); } @Override public Boolean getOptional() {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Mar 24 22:23:23 GMT 2025 - 8.7K bytes - Click Count (0) -
docs/ja/docs/tutorial/dependencies/dependencies-with-yield.md
指定されておらず、依存関係に`yield`がある場合、デフォルトで`scope`は`"request"`になります。 ### サブ依存関係の`scope` { #scope-for-sub-dependencies } `scope="request"`(デフォルト)を持つ依存関係を宣言する場合、どのサブ依存関係も`"request"`の`scope`を持つ必要があります。 しかし、`"function"`の`scope`を持つ依存関係は、`"function"`と`"request"`の`scope`を持つ依存関係を持てます。 これは、いずれの依存関係も、サブ依存関係より前に終了コードを実行できる必要があるためです(終了コードの実行中にサブ依存関係をまだ使う必要がある可能性があるためです)。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 15.4K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java
Session session, RequestType requestType, Artifact rootArtifact, PathScope scope) { return new DependencyResolverRequestBuilder() .session(session) .requestType(requestType) .rootArtifact(rootArtifact) .pathScope(scope) .build(); } @NonnullCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 23K bytes - Click Count (0) -
src/main/java/jcifs/NetbiosName.java
*/ public interface NetbiosName { /** * Returns the NetBIOS name. * * @return the name */ String getName(); /** * Returns the NetBIOS scope identifier. * * @return the scope id */ String getScope(); /** * Returns the NetBIOS name type. * * @return the name type */ int getNameType();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.2K bytes - Click Count (0) -
docs/smb3-features/04-directory-leasing-design.md
private volatile boolean hasChanges; // True if changes detected private DirectoryCacheScope scope; private long maxAge; public DirectoryCacheEntry(String path, Smb2LeaseKey key, DirectoryCacheScope scope) { this.directoryPath = path; this.leaseKey = key; this.scope = scope; this.createTime = System.currentTimeMillis(); this.lastUpdateTime = createTime;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 36.2K bytes - Click Count (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle-api.xml
<module name="JavadocType"> <property name="scope" value="protected"/> <!-- Allow the use of unrecognized tags like @apiNote --> <property name="allowUnknownTags" value="true"/> </module> <!-- TODO - switch this on --> <!--<module name="JavadocMethod">--> <!--<property name="scope" value="package"/>--> <!--</module>--> </module>Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Nov 17 23:20:14 GMT 2022 - 1.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
final int start = srcIndex; addressArray = new NbtAddress[numberOfNames]; String n; int hexCode; final String scope = queryAddress.hostName.scope; boolean groupName; int ownerNodeType; boolean isBeingDeleted; boolean isInConflict; boolean isActive; boolean isPermanent; int j;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 5.8K bytes - Click Count (0)