- Sort Score
- Result 10 results
- Languages All
Results 641 - 650 of 1,979 for contain (0.09 sec)
-
src/test/java/jcifs/smb1/smb1/NetServerEnum2Test.java
// Verify the key parts of the string representation assertTrue(result.startsWith("NetServerEnum2[")); assertTrue(result.contains("command=SMB_COM_TRANSACTION")); assertTrue(result.contains(",name=\\PIPE\\LANMAN")); assertTrue(result.contains(",serverTypes=SV_TYPE_ALL]")); } /** * Test the toString method with SV_TYPE_DOMAIN_ENUM. */ @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
String toStringResult = exception.toString(); assertTrue(toStringResult.contains(InvalidAccessTokenException.class.getName())); assertTrue(toStringResult.contains(message)); } public void test_variousTokenTypes() { // Test with various common token types
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.30.md
## Important Security Information This release contains changes that address the following vulnerabilities: ### CVE-2024-5321: Incorrect permissions on Windows containers logs A security issue was discovered in Kubernetes clusters with Windows nodes where BUILTIN\Users may be able to read container logs and NT AUTHORITY\Authenticated Users may be able to modify container logs. **Affected Versions**:
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jun 18 18:59:10 UTC 2025 - 398.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/StringUtilTest.java
assertEquals("1", true, StringUtil.contains("a", 'a')); assertEquals("2", true, StringUtil.contains("abc", 'b')); assertEquals("3", false, StringUtil.contains("abc", 'd')); } /** * @throws Exception */ @Test public void testContains2() throws Exception { assertEquals("1", true, StringUtil.contains("a", "a"));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusRequestTest.java
// Act String result = nodeStatusRequest.toString(); // Assert assertTrue(result.contains("NodeStatusRequest")); assertTrue(result.contains("nameTrnId=12345")); assertTrue(result.contains("TESTNAME")); } @Test void toString_withNullQuestionName_shouldHandleGracefully() { // Arrange
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java
assertFalse(set.contains(0)); assertTrue(set.contains(1)); assertTrue(set.contains(2)); assertTrue(set.contains(3)); assertFalse(set.contains(4)); set = ContiguousSet.create(Range.open(0, 4), integers()); assertFalse(set.contains(0)); assertTrue(set.contains(1)); assertTrue(set.contains(2)); assertTrue(set.contains(3)); assertFalse(set.contains(4)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.6K 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) -
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/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/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)