- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 452 for session1 (0.07 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
import jcifs.internal.smb1.AndXServerMessageBlock; import jcifs.internal.smb1.ServerMessageBlock; import jcifs.internal.util.SMBUtil; /** * SMB1 Session Setup AndX Response message. * * This response contains information about the established session, * including native OS, LAN manager, and primary domain information. */ public class SmbComSessionSetupAndXResponse extends AndXServerMessageBlock {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/SessionScoped.java
import static java.lang.annotation.RetentionPolicy.RUNTIME; /** * Indicates that annotated component should be instantiated before session execution starts * and discarded after session execution completes. * <p> * A {@code org.apache.maven.api.Session} object is available in the scope of this annotation. * * @since 4.0.0 */ @Scope @Documented @Retention(RUNTIME) @Target({TYPE, METHOD})
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Sep 12 06:14:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java
MavenSession session = legacySupport.getSession(); PluginDescriptor pluginDescriptor; try { pluginDescriptor = pluginManager.getPluginDescriptor( plugin, session.getCurrentProject().getRemotePluginRepositories(), session.getRepositorySession()); pluginManager.setupPluginRealm(pluginDescriptor, session, null, null, null);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java
} return result; } @Override public void add(RepositorySystemSession session, LocalArtifactRegistration request) { // noop } @Override public LocalMetadataResult find(RepositorySystemSession session, LocalMetadataRequest request) { LocalMetadataResult result = new LocalMetadataResult(request); String path;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java
* @param project The project whose dependencies should be resolved, must not be {@code null}. * @param scopesToResolve The dependency scopes that should be resolved, may be {@code null}. * @param session The current build session, must not be {@code null}. * @return The transitive dependencies of the specified project that match the requested scopes, never {@code null}. * @throws ArtifactResolutionException in case of resolution issue
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/resources/fess_label_es.properties
labels.user_name=Nombre de usuario labels.login=Iniciar sesión labels.login.placeholder_username=Nombre de usuario labels.login.placeholder_password=Contraseña labels.login.title=Iniciar sesión labels.index_label=Etiqueta labels.index_lang=Idioma preferido labels.index_sort=Ordenar labels.index_num=Número de resultados labels.logout_title=Cerrar sesión labels.logout=Cerrar sesión labels.do_you_want_to_logout=¿Desea cerrar la sesión?
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstaller.java
default void install(Session session, ProducedArtifact artifact) { install(session, Collections.singletonList(artifact)); } /** * @param session the repository session * @param artifacts Collection of {@link ProducedArtifact MavenArtifacts} * @throws ArtifactInstallerException if the given artifact cannot be found or the * installation has failed
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 2.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java
builder.setAuthentication(session.getAuthenticationSelector().getAuthentication(remoteRepo)); builder.setProxy(session.getProxySelector().getProxy(remoteRepo)); remoteRepo = builder.build(); } request.setRepository(remoteRepo); DeployResult result; try { result = repoSystem.deploy(session, request); } catch (DeploymentException e) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.4K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PropertyContributor.java
/** * Invoked just before session is created with proto session instance. The proto session contains user and * system properties collected so far, along with other information. This method should return altered * (contributions applied) user properties, not only the "new" or "added" properties! * * @param protoSession The proto session, never {@code null}.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Nov 20 19:58:27 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndX.java
SmbSession session; Object cred; SmbComSessionSetupAndX(final SmbSession session, final ServerMessageBlock andx, final Object cred) throws SmbException { super(andx); command = SMB_COM_SESSION_SETUP_ANDX; this.session = session; this.cred = cred; sessionKey = session.transport.sessionKey; capabilities = session.transport.capabilities;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0)