- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 1,175 for sessions (0.05 sec)
-
src/main/java/jcifs/smb/SmbTreeHandleInternal.java
int getMaximumBufferSize () throws CIFSException; /** * @return whether the session uses SMB signing * @throws CIFSException * @throws SmbException */ boolean areSignaturesActive () throws CIFSException; /** * Internal/testing use only * * @return attached session */ SmbSession getSession ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt
@SuppressLint("NewApi") @IgnoreJRERequirement // This function is overridden to require API >= 24. open fun getHandshakeServerNames(sslSocket: SSLSocket): List<String> { val session = sslSocket.session as? ExtendedSSLSession ?: return listOf() return session.requestedServerNames.mapNotNull { (it as? SNIHostName)?.asciiName } } @Throws(IOException::class) open fun connectSocket( socket: Socket,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 9.8K bytes - Viewed (0) -
cmd/batch-replicate_test.go
# credentials: # accessKey: minioadmin # Required # secretKey: minioadmin # Required # # sessionToken: SESSION-TOKEN # Optional only available when rotating credentials are used snowball: # automatically activated if the source is local disable: true # optionally turn-off snowball archive transfer
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 01 12:53:30 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/Address.java
InetAddress toInetAddress () throws UnknownHostException; /** * Guess called name to try for session establishment. These * methods are used by the smb package. * * @return guessed name */ String firstCalledName (); /** * Guess next called name to try for session establishment. These * methods are used by the smb package. * * @param tc *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 03 13:22:30 UTC 2018 - 2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ProducedArtifact.java
* <li>{@linkplain Project#getPomArtifact() the project POM artifact}</li> * <li>{@linkplain Project#getMainArtifact() the main artifact}</li> * <li>{@linkplain org.apache.maven.api.services.ProjectManager#attachArtifact(Session, Project, Path) artifacts to be attached to a project}</li> * </ul> * * <p>For the main artifact and attached artifacts, the * {@link org.apache.maven.api.services.ArtifactManager ArtifactManager} service must be used
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 1.9K bytes - Viewed (0) -
tests/preload_test.go
func TestPreloadGoroutine(t *testing.T) { var wg sync.WaitGroup wg.Add(10) for i := 0; i < 10; i++ { go func() { defer wg.Done() var user2 []User tx := DB.Where("id = ?", 1).Session(&gorm.Session{}) if err := tx.Preload("Team").Find(&user2).Error; err != nil { t.Error(err) } }() } wg.Wait() } func TestPreloadWithDiffModel(t *testing.T) {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Jun 12 10:00:47 UTC 2024 - 15.9K bytes - Viewed (0) -
.github/SECURITY.md
# Security Policy ## Supported Versions Information about supported Kubernetes versions can be found on the [Kubernetes version and version skew support policy] page on the Kubernetes website. ## Reporting a Vulnerability Instructions for reporting a vulnerability can be found on the [Kubernetes Security and Disclosure Information] page.
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Sun Jun 16 17:14:26 UTC 2019 - 616 bytes - Viewed (0) -
docs/em/docs/tutorial/sql-databases.md
/// ### β `SessionLocal` π π π `SessionLocal` π π π½ π. π β«οΈ π« π½ π. βοΈ π π₯ β π `SessionLocal` π, π π π β π½ π. π₯ π β«οΈ `SessionLocal` π¬ β«οΈ βͺοΈβ‘οΈ `Session` π₯ π βͺοΈβ‘οΈ πΈπ². π₯ π βοΈ `Session` (1οΈβ£ π βͺοΈβ‘οΈ πΈπ²) βͺ. β `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 - 25K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
} /** * @return the sessionId */ public long getSessionId () { return this.sessionId; } /** * @param sessionId * the sessionId to set */ @Override public final void setSessionId ( long sessionId ) { this.sessionId = sessionId; if ( this.next != null ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 30 10:47:31 UTC 2018 - 19.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
@Override public int getCount(final String sessionId) { return dataHelper.getAccessResultMap(sessionId).size(); } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.service.DataService#delete(java.lang.String) */ @Override public void delete(final String sessionId) { dataHelper.deleteAccessResultMap(sessionId); } /* * (non-Javadoc) *
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 5.5K bytes - Viewed (0)