- Sort Score
- Num 10 results
- Language All
Results 181 - 190 of 631 for sessionID (0.07 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator.java
lifecyclePluginResolver.resolveMissingPluginVersions(session.getTopLevelProject(), session); MojoDescriptor mojoDescriptor = mojoDescriptorCreator.getMojoDescriptor(task, session, session.getTopLevelProject()); boolean aggregating = mojoDescriptor.isAggregator() || !mojoDescriptor.isProjectRequired();Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Dec 13 23:07:01 GMT 2024 - 6.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
MavenSession session = new MavenSession(closeableSession, request, result); session.setSession(defaultSessionFactory.newSession(session)); sessionScope.seed(MavenSession.class, session); sessionScope.seed(Session.class, session.getSession()); sessionScope.seed(InternalMavenSession.class, InternalMavenSession.from(session.getSession()));
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Dec 29 10:43:38 GMT 2025 - 28.8K bytes - Click Count (1) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestImplementationTest.java
@Test void testRequestTraceIntegration() { Session session = mock(Session.class); RequestTrace trace = new RequestTrace("test-context", null, "test-data"); ArtifactInstallerRequest request = ArtifactInstallerRequest.builder().session(session).trace(trace).build(); assertEquals(trace, request.getTrace()); assertEquals(session, request.getSession()); } @TestCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 4.8K bytes - Click Count (0) -
docs/tr/docs/tutorial/dependencies/dependencies-with-yield.md
Hatta FastAPI bu iki decorator'ı içeride (internally) kullanır. /// ## `yield` ile Bir Veritabanı Dependency'si { #a-database-dependency-with-yield } Örneğin bunu, bir veritabanı session'ı oluşturmak ve iş bittikten sonra kapatmak için kullanabilirsiniz. Response oluşturulmadan önce yalnızca `yield` satırına kadar olan (ve `yield` dahil) kod çalıştırılır:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 13.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
TaskSegment mergedSegment = new TaskSegment(false); for (TaskSegment taskSegment : taskSegments) { mergedSegment.getTasks().addAll(taskSegment.getTasks()); } return lifecycleExecutionPlanCalculator.calculateExecutionPlan( session, session.getCurrentProject(), mergedSegment.getTasks(), setup);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 7.1K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbTreeImplTest.java
when(session.acquire()).thenReturn(session); when(config.isTraceResourceUsage()).thenReturn(false); when(context.getConfig()).thenReturn(config); when(session.isConnected()).thenReturn(true); } // Test case for the constructor of SmbTreeImpl @Test void testSmbTreeImplConstructor() { SmbTreeImpl tree = new SmbTreeImpl(session, "SHARE", "A:");
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
break; } } private OptionalThing<HttpSession> getSession() { final HttpSession session = request.getSession(false); if (session != null) { return OptionalEntity.of(session); } return OptionalEntity.empty(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 06:18:24 GMT 2026 - 8.9K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerRequest.java
.artifacts(requireNonNull(artifacts, "artifacts cannot be null")) .build(); } @NotThreadSafe class ArtifactInstallerRequestBuilder { Session session; RequestTrace trace; Collection<ProducedArtifact> artifacts = Collections.emptyList(); ArtifactInstallerRequestBuilder() {} @Nonnull
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Feb 07 00:45:02 GMT 2025 - 4.2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactory.java
* @throws IllegalArgumentException if {@code session} is null or invalid */ @Nonnull default ArtifactCoordinates create(@Nonnull Session session, @Nonnull String coordinatesString) { return create(ArtifactCoordinatesFactoryRequest.build(session, coordinatesString)); } @Nonnull default ArtifactCoordinates create(Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Mar 24 14:10:11 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/jcifs/SmbSession.java
/** * Unwraps this session to the specified type, allowing access to implementation-specific functionality. * * @param <T> the type to unwrap to * @param type the class of the type to unwrap to * @return session instance with the given type */ <T extends SmbSession> T unwrap(Class<T> type); /** * Returns the CIFS context that this session is attached to. *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.7K bytes - Click Count (0)