- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 397 for level2 (0.07 sec)
-
tests/preload_suits_test.go
Level3ID uint } Level3 struct { ID uint Name string Level2 Level2 Level2_1 Level2_1 } ) DB.Migrator().DropTable(&Level3{}, &Level2{}, &Level1{}, &Level2_1{}, &Level0{}) if err := DB.AutoMigrate(&Level3{}, &Level2{}, &Level1{}, &Level2_1{}, &Level0{}); err != nil { t.Error(err) } want := make([]Level3, 2) want[0] = Level3{ Level2: Level2{ Level1s: []Level1{Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Thu Jun 05 11:34:13 UTC 2025 - 30.4K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestTraceTest.java
RequestTrace level1 = new RequestTrace("level1", root, "level1-data"); RequestTrace level2 = new RequestTrace("level2", level1, "level2-data"); RequestTrace level3 = new RequestTrace(level2, "level3-data"); // Verify the chain assertNull(root.parent()); assertEquals(root, level1.parent()); assertEquals(level1, level2.parent());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcQueryInformationPolicyTest.java
// Assert assertEquals(level1, queryPolicy1.level); assertEquals(level2, queryPolicy2.level); assertSame(mockPolicyHandle, queryPolicy1.handle); assertSame(mockPolicyHandle2, queryPolicy2.handle); assertSame(mockNdrObject, queryPolicy1.info); assertSame(mockNdrObject2, queryPolicy2.info); } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java
Exception level3 = new IllegalArgumentException("Level 3 - Root cause"); Exception level2 = new IllegalStateException("Level 2", level3); Exception level1 = new IOException("Level 1", level2); CrawlerSystemException topLevel = new CrawlerSystemException("Top level", level1); // Verify chain assertSame(level1, topLevel.getCause());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 20K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
// Verify parent directories were created SmbFile level1 = new SmbFile(baseUrl + "shared/level1_" + timestamp + "/", checkContext); SmbFile level2 = new SmbFile(baseUrl + "shared/level1_" + timestamp + "/level2/", checkContext); assertTrue(level1.exists(), "Level1 directory should exist"); assertTrue(level2.exists(), "Level2 directory should exist"); } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
assertEquals(0, e.getChildUrlList().size()); } } public void test_deeplyNestedDirectories() throws Exception { String deepFileUrl = deepUrl + "level1/level2/level3/level4/level5/deepfile.txt"; SmbClient client = new SmbClient(); client.setResolveSids(false); StandardCrawlerContainer container =
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 30K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
} } public void test_deeplyNestedDirectories() throws Exception { String deepUrl = "smb://" + host + ":" + port + "/public/deep/level1/level2/level3/level4/level5/deepfile.txt"; StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("smbClient", SmbClient.class) .singleton("mimeTypeHelper", MimeTypeHelperImpl.class);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 31.9K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Logger.java
* * @param level the severity level of the message * @param message the message to be logged */ default void log(@Nonnull Level level, @Nonnull String message) { log(level, message, null); } /** * Logs a message at the specified level with an associated exception. * * @param level the severity level of the messageRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 5K bytes - Viewed (0) -
impl/maven-core/src/site/apt/configuration-management.apt
The Maven Team ----- Configuration levels in maven In maven configuration control happens on four differ levels: the site level, the group level, the project level, and the user level. On the site level you can configure maven for all users utilizing the local installation, the group level allows configuration management for all the projects that belong to the same group, the project level allows configuration management at
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationTest.java
// These are valid levels, skip assertion return; } IllegalArgumentException exception = assertThrows(IllegalArgumentException.class, () -> Trans2QueryPathInformation.mapInformationLevel(level)); assertTrue(exception.getMessage().contains("Unsupported information level")); } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0)