- Sort Score
- Result 10 results
- Languages All
Results 591 - 600 of 1,252 for currently (2.27 sec)
-
src/main/java/org/codelibs/core/lang/SystemUtil.java
*/ public static String getEnv(String key, String defaultValue) { return System.getenv().getOrDefault(key, defaultValue); } /** * Returns the current time in milliseconds. * * @return the current time in milliseconds */ public static long currentTimeMillis() { // TODO provider return System.currentTimeMillis(); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcLsarCloseTest.java
// Assert that the object is not null assertNotNull(msrpcLsarClose, "MsrpcLsarClose object should not be null"); // Verify that the constructor correctly sets ptype and flags // These values are inherited from LsarClose, but MsrpcLsarClose sets them in its constructor assertEquals(0, msrpcLsarClose.getPtype(), "ptype should be 0");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacUnicodeStringTest.java
* Note: Current implementation throws NullPointerException for null strings. */ @Test void testCheck_withNullStringAndZeroPointer() { // A zero pointer indicates a null string PacUnicodeString pacString = new PacUnicodeString((short) 0, (short) 0, 0); String testString = null; // Current implementation throws NullPointerException when string is null
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/AllocInfoTest.java
} } @Nested @DisplayName("Test Implementation Tests") class TestImplementationTests { @Test @DisplayName("Should correctly store and return capacity") void shouldCorrectlyStoreAndReturnCapacity() { // Given long expectedCapacity = 1024L * 1024L * 1024L * 500L; // 500GB
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java
assertNull(notifyInfo.getFileName()); assertEquals(0, notifyInfo.getNextEntryOffset()); } @Test @DisplayName("Test constructor with buffer decodes correctly") void testConstructorWithBuffer() throws IOException { // Create test buffer with notification data byte[] buffer = createValidNotificationBuffer("testfile.txt", FileNotifyInformation.FILE_ACTION_ADDED);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtCancelTest.java
// Then assertNotNull(cancel); assertEquals(testMid, cancel.getMid()); // Verify command is set correctly Field commandField = ServerMessageBlock.class.getDeclaredField("command"); commandField.setAccessible(true); assertEquals(SMB_COM_NT_CANCEL, commandField.getByte(cancel)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
/** Helper for managing popular search words and suggestions. */ @Resource protected PopularWordHelper popularWordHelper; /** The HTTP servlet request object for the current request. */ @Resource protected HttpServletRequest request; /** Flag indicating whether search logging is enabled. */ protected boolean searchLogSupport;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java
searchPaging(data, form); }); } /** * Display a paginated list of stemmer override items. * Sets the current page number and shows the list with pagination. * * @param pageNumber Optional page number to display (0-based) * @param form The search form containing filter criteria
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/UsingToStringOrdering.java
@Override public int compare(Object left, Object right) { return left.toString().compareTo(right.toString()); } // preserve singleton-ness, so equals() and hashCode() work correctly private Object readResolve() { return INSTANCE; } @Override public String toString() { return "Ordering.usingToString()"; } private UsingToStringOrdering() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 1.5K bytes - Viewed (0)