- Sort Score
- Num 10 results
- Language All
Results 291 - 300 of 595 for session5 (0.08 seconds)
-
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) {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Wed Jun 12 10:00:47 GMT 2024 - 15.9K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
/** * Constructs an NbtSocket and connects it to the specified NetBIOS address and port. * * @param address the NetBIOS address to connect to * @param port the port number, or 0 for the default NetBIOS session service port * @throws IOException if an I/O error occurs while creating the socket */ public NbtSocket(final NbtAddress address, final int port) throws IOException { this(address, port, null, 0); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerPrivate.java
public interface ToolchainManagerPrivate { /** * Retrieves every toolchains of given type available in user settings. * * @param type the type, must not be {@code null} * @param context the Maven session, must not be {@code null} * @since 3.0 (addition of the <code>MavenSession</code> parameter) */ ToolchainPrivate[] getToolchainsForType(String type, MavenSession context) throws MisconfiguredToolchainException;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Feb 12 13:13:28 GMT 2025 - 2.2K bytes - Click Count (0) -
docs/es/docs/tutorial/sql-databases.md
### Crear una Dependencia de Session { #create-a-session-dependency } Una **`Session`** es lo que almacena los **objetos en memoria** y lleva un seguimiento de cualquier cambio necesario en los datos, luego **usa el `engine`** para comunicarse con la base de datos.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 16.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/SSPContext.java
* operations during SMB authentication. * * @author mbechler */ public interface SSPContext { /** * Gets the signing key for the session. * @return the signing key for the session * @throws CIFSException if an error occurs retrieving the signing key */ byte[] getSigningKey() throws CIFSException; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.9K bytes - Click Count (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
} /** * The real session key if the regular session key is actually * the encrypted version used for key exchange. * * @return A <code>byte[]</code> containing the session key. */ public byte[] getMasterKey() { return this.masterKey; } /** * Returns the session key. * * This is the encrypted session key included in the message,Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 32.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
try { webFsIndexHelper.crawl("sessionId", null, null); assertTrue(true); } catch (Exception e) { assertTrue(true); } } @Test public void test_crawl_withEmptyLists() { try { webFsIndexHelper.crawl("sessionId", Collections.emptyList(), Collections.emptyList()); assertTrue(true);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.6K bytes - Click Count (0) -
docs/es/docs/advanced/testing-websockets.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 429 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsCrawlingInfoCA.java
public void setSessionId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setSessionId_Terms("sessionId", opLambda, null); } public void setSessionId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsCrawlingInfoCA> aggsLambda) { setSessionId_Terms("sessionId", opLambda, aggsLambda); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 31.6K bytes - Click Count (0) -
docs/uk/docs/tutorial/sql-databases.md
### Створіть залежність сесії { #create-a-session-dependency } **`Session`** зберігає **об’єкти в пам’яті** та відстежує зміни у даних, а потім **використовує `engine`** для взаємодії з базою даних. Ми створимо **залежність** FastAPI з `yield`, яка надаватиме нову `Session` для кожного запиту. Це й гарантує, що ми використовуємо одну сесію на запит. 🤓Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 22.2K bytes - Click Count (0)