- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 1,874 for Fontaine (0.14 sec)
-
src/test/java/jcifs/smb1/netbios/NbtExceptionTest.java
NbtException e = new NbtException(NbtException.ERR_SSN_SRVC, NbtException.NO_RESOURCES); String str = e.toString(); assertTrue(str.contains("errorClass=2")); assertTrue(str.contains("errorCode=" + NbtException.NO_RESOURCES)); assertTrue(str.contains("Called name present, but insufficient resources")); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
@Required public String scriptType; /** * The script data or code that was executed. * This field contains the actual script content that was run. */ public String scriptData; /** * The result or output from the script execution. * This field contains any output or result data from the script. */ public String scriptResult; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0) -
ci/official/envs/windows_x86_2022
TFCI_WHL_SIZE_LIMIT=450M TFCI_WHL_SIZE_LIMIT_ENABLE=1 TFCI_WHL_IMPORT_TEST_ENABLE=1 TFCI_PYTHON_VERIFY_PIP_INSTALL_ARGS="" # Used to simulate a T:\ drive within the container, to a limited extent, # via a symlink. # Helpful since the internal CI utilizes a T:\ drive, part of which is mounted # to the container, and would result in C:\<path> != T:\<path> mismatches, # when using variables like `TFCI_OUTPUT_DIR` in `docker exec commands,
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Mar 19 00:58:54 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/util/PathValidatorTest.java
String normalized = validator.validateSmbUrl(url); assertTrue(normalized.startsWith("smb://")); assertTrue(normalized.contains("server")); assertTrue(normalized.contains("/share/folder/file.txt") || normalized.contains("\\share\\folder\\file.txt")); } @Test public void testSmbUrlWithCredentials() throws Exception { String url = "smb://user:pass@server/share";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
assertNotNull(result); assertTrue(result.startsWith("ServerInfo1[")); assertTrue(result.contains("name=SERVER01")); assertTrue(result.contains("versionMajor=6")); assertTrue(result.contains("versionMinor=1")); assertTrue(result.contains("type=0x00000801")); assertTrue(result.contains("commentOrMasterBrowser=Test server")); assertTrue(result.endsWith("]")); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
assertTrue(map.containsKey(key)); assertTrue(map.containsValue(value)); assertTrue(valueCollection.contains(value)); assertTrue(valueCollection.containsAll(singleton(value))); assertTrue(entrySet.contains(mapEntry(key, value))); assertTrue(allowsNullKeys || (key != null)); } assertEquals(expectedKeySetHash, keySet.hashCode());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 43.9K bytes - Viewed (0) -
statement.go
} if len(args) == 0 || (len(args) > 0 && strings.Contains(s, "?")) { // looks like a where condition return []clause.Expression{clause.Expr{SQL: s, Vars: args}} } if len(args) > 0 && strings.Contains(s, "@") { // looks like a named query return []clause.Expression{clause.NamedExpr{SQL: s, Vars: args}} } if strings.Contains(strings.TrimSpace(s), " ") { // looks like a where condition
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2ResponseTest.java
String result = response.toString(); assertNotNull(result); assertTrue(result.contains("Trans2FindFirst2Response")); assertTrue(result.contains("sid=")); assertTrue(result.contains("searchCount=")); assertTrue(result.contains("isEndOfSearch=")); assertTrue(result.contains("lastName=")); } @Test void testReadParametersWireFormat_NotFindFirst() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableMultimapTest.java
0, unhashables.e0(), 2, "hey you", 0, unhashables.e1()); assertEquals(2, multimap.get(0).size()); assertTrue(multimap.get(0).contains(unhashables.e0())); assertTrue(multimap.get(0).contains(unhashables.e1())); assertTrue(multimap.get(2).contains("hey you")); } public void testEquals() { new EqualsTester() .addEqualityGroup(ImmutableMultimap.of(), ImmutableMultimap.of())
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileStandardInfoTest.java
// Verify string contains expected values assertTrue(result.contains("SmbQueryInfoStandard")); assertTrue(result.contains("allocationSize=" + expectedAllocationSize)); assertTrue(result.contains("endOfFile=" + expectedEndOfFile)); assertTrue(result.contains("numberOfLinks=" + expectedNumberOfLinks)); assertTrue(result.contains("deletePending=true"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0)