- Sort Score
- Result 10 results
- Languages All
Results 461 - 470 of 603 for sessionId (0.07 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
public static final String MAVEN_USER_CONF = "maven.user.conf"; /** * Maven project configuration directory. * * @since 4.0.0 */ @Config(defaultValue = "${session.rootDirectory}/.mvn") public static final String MAVEN_PROJECT_CONF = "maven.project.conf"; /** * Maven local repository. * * @since 3.0.0 */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:24:08 UTC 2024 - 14K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java
this.b = b; this.off = off; this.dataLength = len; this.digest = null; /* * otherwise recycled commands * like writeandx will choke if session * closes in between */ } /** * @param writeMode * the writeMode to set */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComWrite.java
this.remaining = remaining; this.b = b; this.off = off; count = len; digest = null; /* otherwise recycled commands * like writeandx will choke if session * closes in between */ } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { int start = dstIndex; writeInt2( fid, dst, dstIndex ); dstIndex += 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3K bytes - Viewed (0) -
src/test/java/jcifs/tests/TimeoutTest.java
SmbTransportInternal t; try ( SmbTreeHandleInternal th = (SmbTreeHandleInternal) f.getTreeHandle(); SmbSessionInternal session = th.getSession().unwrap(SmbSessionInternal.class); SmbTransportInternal trans = session.getTransport().unwrap(SmbTransportInternal.class) ) { t = trans; } f.close();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
this.openFlags &= ~(SmbFile.O_CREAT | SmbFile.O_TRUNC); /* in case close and reopen */ writeSize = file.tree.session.transport.snd_buf_size - 70; useNTSmbs = file.tree.session.transport.hasCapability( ServerMessageBlock.CAP_NT_SMBS ); if( useNTSmbs ) { reqx = new SmbComWriteAndX(); rspx = new SmbComWriteAndXResponse();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 9.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTest.kt
extraSteps = extraBuildSteps, preSteps = preBuildSteps ) failureConditions { // JavaExecDebugIntegrationTest.debug session fails without debugger might cause JVM crash // Some soak tests produce OOM exceptions // There are also random worker crashes for some tests. // We have test-retry to handle the crash in tests
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 25 06:14:43 UTC 2024 - 4.5K bytes - Viewed (0) -
docs/zh/docs/tutorial/sql-databases.md
/// ### 创建一个`SessionLocal`类 每个`SessionLocal`类的实例都会是一个数据库会话。当然该类本身还不是数据库会话。 但是一旦我们创建了一个`SessionLocal`类的实例,这个实例将是实际的数据库会话。 我们将它命名为`SessionLocal`是为了将它与我们从 SQLAlchemy 导入的`Session`区别开来。 稍后我们将使用`Session`(从 SQLAlchemy 导入的那个)。 要创建`SessionLocal`类,请使用函数`sessionmaker`: ```Python hl_lines="11" {!../../docs_src/sql_databases/sql_app/database.py!} ``` ### 创建一个`Base`类
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 27.1K bytes - Viewed (0) -
tests/joins_test.go
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Jun 17 03:58:13 UTC 2024 - 15K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbEnumerationUtil.java
SmbTreeConnection treeConn = SmbTreeConnection.create(tc); try ( SmbTreeHandleImpl th = treeConn.connectHost(locator, locator.getServerWithDfs()); SmbSessionImpl session = th.getSession(); SmbTransportImpl transport = session.getTransport() ) { try { entries = doMsrpcShareEnum(tc, locator, transport.getRemoteAddress()); } catch ( IOException ioe ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:41:19 UTC 2019 - 12.5K bytes - Viewed (0) -
docs/es/docs/features.md
* API keys en: * Headers. * Parámetros de Query. * Cookies, etc. Más todas las características de seguridad de Starlette (incluyendo **session cookies**). Todo ha sido construido como herramientas y componentes reutilizables que son fácilmente integrados con tus sistemas, almacenamiento de datos, bases de datos relacionales y no relacionales, etc.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 19 18:15:21 UTC 2024 - 10.9K bytes - Viewed (0)