- Sort Score
- Result 10 results
- Languages All
Results 1181 - 1190 of 1,414 for empty (0.02 sec)
-
src/test/java/jcifs/http/NtlmSspTest.java
message[46] = 22; // Max Length message[47] = 0; message[48] = (byte) 132; // Offset message[49] = 0; message[50] = 0; message[51] = 0; // Session Key (empty, offset 154) message[52] = 0; // Length message[53] = 0; message[54] = 0; // Max Length message[55] = 0; message[56] = (byte) 154; // Offset message[57] = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HexdumpTest.java
assertNotNull(output2); assertTrue(output2.contains("00000:")); assertTrue(output2.contains(" 41 42 43 44")); assertTrue(output2.contains("|ABCD")); // Test with empty array baos.reset(); byte[] data3 = {}; Hexdump.hexdump(ps, data3, 0, 0); String output3 = baos.toString(); assertEquals("", output3.trim()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2TransformHeaderTest.java
// Then assertNotNull(stringRep); assertTrue(stringRep.contains("Smb2TransformHeader")); // toString() implementation may vary, just check it's not null and not empty assertFalse(stringRep.isEmpty()); } @Test @DisplayName("Should generate correct associated data for AEAD") void testGetAssociatedData() { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.7K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvn.cmd
@setlocal EnableExtensions EnableDelayedExpansion set JVM_CONFIG_MAVEN_OPTS= for /F "usebackq tokens=* delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do ( set "line=%%a" rem Skip empty lines and full-line comments echo !line! | findstr /b /r /c:"[ ]*#" >nul if errorlevel 1 ( rem Handle end-of-line comments by taking everything before #
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 24 09:49:07 UTC 2025 - 9.6K bytes - Viewed (3) -
src/main/webapp/js/jquery-3.7.1.min.js
r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ee(e),v=_.get(e,"fxshow");for(r in n.queue||(null==(a=ce._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,ce.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],ft.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||ce.style(e,r)}if((u=!...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 85.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlJvmTest.kt
import org.junit.jupiter.api.Test @Suppress("HttpUrlsUsage") // Don't warn if we should be using https://. open class HttpUrlJvmTest { val platform = PlatformRule() /** This one's ugly: the HttpUrl's host is non-empty, but the URI's host is null. */ @Test fun hostContainsOnlyStrippedCharacters() { val url = "http://>/".toHttpUrl() assertThat(url.host).isEqualTo(">") assertThat(url.toUri().host).isNull() }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java
return ComponentUtil.getComponent(GroupService.class).getGroup(((EditForm) form).id); } break; default: break; } return OptionalEntity.empty(); } /** * Gets a group entity from the form with attributes. * * @param form the create form * @return optional group entity */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java
* done | tee testoutput * - Move that testcases file to the appropriate name under testdata. * * The last test will take hours, and if it passes, the output will be empty. */ doExtensiveTest("testdata/simplifypathnoprefixtests.txt"); } private void doExtensiveTest(String resourceName) throws IOException { Splitter splitter = Splitter.on(CharMatcher.whitespace());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
this.resourceGroupSids[i] = new SID(resourceDomainId, resourceGroups[i].getId()); } // Compute User IDs with Domain ID to get User SIDs // First extra is user if userId is empty if (!userId.isEmpty() && !userId.isBlank()) { this.userSid = new SID(domainId, userId); } else if (this.extraSids.length > 0) { this.userSid = this.extraSids[0];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java
assertEquals(0, response.writeBytesWireFormat(dst, 75)); assertEquals(0, response.writeBytesWireFormat(dst, 99)); } @Test @DisplayName("Should return 0 with empty array") void testWriteBytesWireFormatWithEmptyArray() { // Given byte[] dst = new byte[0]; // When int result = response.writeBytesWireFormat(dst, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0)