- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 2,917 for final (0.01 sec)
-
src/main/java/jcifs/netbios/NameServicePacket.java
static final int NB = 0x0020; static final int NBSTAT = 0x0021; static final int IN = 0x0001; static final int A = 0x0001; static final int NS = 0x0002; static final int NULL = 0x000a; static final int HEADER_LENGTH = 12; // header field offsets static final int OPCODE_OFFSET = 2; static final int QUESTION_OFFSET = 4; static final int ANSWER_OFFSET = 6;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
* the object to add * @return a new array with the object appended */ public static <T> T[] add(final T[] array, final T obj) { assertArgumentNotNull("array", array); final int length = array.length; @SuppressWarnings("unchecked") final T[] newArray = (T[]) Array.newInstance(array.getClass().getComponentType(), length + 1);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 41.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
private volatile int tid = -1; private volatile String service = "?????"; private volatile boolean inDfs, inDomainDfs; private volatile long treeNum; // used by SmbFile.isOpen private final AtomicLong usageCount = new AtomicLong(0); private final AtomicBoolean sessionAcquired = new AtomicBoolean(true); private final boolean traceResource;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
* @return the converted {@link Date} */ protected static Date toDate(final String str, final DateFormat format) { final ParsePosition pos = new ParsePosition(0); final Date date = format.parse(str, pos); if (date == null) { return null; } final int index = pos.getIndex(); if (index == 0) { return null; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 19.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
* @param level the lookup level * @param count the number of SIDs */ public LsarLookupSids(final rpc.policy_handle handle, final LsarSidArray sids, final LsarRefDomainList domains, final LsarTransNameArray names, final short level, final int count) { this.handle = handle; this.sids = sids; this.domains = domains;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/StorageTests.java
@Tag("it") public class StorageTests extends CrudTestBase { private static final String NAME_PREFIX = "storageTests_"; private static final String API_PATH = "/api/admin/storage"; private static final String LIST_ENDPOINT_SUFFIX = "list"; private static final String ITEM_ENDPOINT_SUFFIX = ""; private static final String KEY_PROPERTY = ""; @Override protected String getNamePrefix() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
final T response, final Set<RequestParam> params) throws CIFSException { CIFSException last = null; final RequestWithPath rpath = request instanceof RequestWithPath r ? r : null; final String savedPath = rpath != null ? rpath.getPath() : null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
* @return The converted {@link Date} */ protected static Date toDate(final String str, final DateFormat format) { final ParsePosition pos = new ParsePosition(0); final Date date = format.parse(str, pos); if (date == null) { return null; } final int index = pos.getIndex(); if (index == 0) { return null; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoParamDbm.java
protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // =================================================================================== // Singleton // =========
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
* @param offset the starting position in the array * @param length the number of hex digits to convert * @return the integer value of the hex digits */ public static int hex_to_bin(final char[] arr, final int offset, final int length) { int value = 0; int ai, count; count = 0; for (ai = offset; ai < arr.length && count < length; ai++) { value <<= 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0)