- Sort Score
- Result 10 results
- Languages All
Results 371 - 380 of 3,331 for einmal (0.14 sec)
-
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
static final byte SMB_COM_TRANSACTION = (byte) 0x25; static final byte SMB_COM_TRANSACTION_SECONDARY = (byte) 0x26; static final byte SMB_COM_MOVE = (byte) 0x2A; static final byte SMB_COM_ECHO = (byte) 0x2B; static final byte SMB_COM_OPEN_ANDX = (byte) 0x2D; static final byte SMB_COM_READ_ANDX = (byte) 0x2E; static final byte SMB_COM_WRITE_ANDX = (byte) 0x2F;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.7K bytes - Viewed (0) -
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/fess/opensearch/client/SearchEngineClient.java
*/ protected boolean reindex(final String fromIndex, final String toIndex, final String source, final boolean waitForCompletion) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String refresh = StringUtil.isNotBlank(fessConfig.getIndexReindexRefresh()) ? fessConfig.getIndexReindexRefresh() : null; final String requestsPerSecond = getReindexRequestsPerSecound(fessConfig);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
gradle/wrapper/gradle-wrapper.jar
validateDistribution; public void WrapperConfiguration(); public final void setDistribution(java.net.URI); public final String getDistributionBase(); public final void setDistributionBase(String); public final String getDistributionPath(); public final void setDistributionPath(String); public final String getDistributionSha25(); public final void setDistributionSha25(String); public final String getZipBase(); public final void setZipBase(String); public final String getZipPath(); public final void setZipPath(String);...
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 44.4K bytes - Viewed (1) -
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/core/io/CopyUtil.java
*/ public static int copy(final File in, final String encoding, final File out) { assertArgumentNotNull("in", in); assertArgumentNotEmpty("encoding", encoding); assertArgumentNotNull("out", out); final Reader is = ReaderUtil.create(in, encoding); try { final Writer os = WriterUtil.create(out); try {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
private static final Logger log = LoggerFactory.getLogger(Type2Message.class); private byte[] challenge; private String target; private byte[] context; private byte[] targetInformation; private static final Map<String, byte[]> TARGET_INFO_CACHE = new HashMap<>(); private static byte[] getDefaultTargetInfo(final CIFSContext tc) { final String domain = tc.getConfig().getDefaultDomain();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.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.3K bytes - Viewed (0) -
src/main/java/jcifs/util/Encdec.java
*/ public final class Encdec { private static final long SEC_BETWEEEN_1904_AND_1970 = 2082844800L; private static final int TIME_1970_SEC_32BE = 1; private static final int TIME_1970_SEC_32LE = 2; private static final int TIME_1904_SEC_32BE = 3; private static final int TIME_1904_SEC_32LE = 4; private static final int TIME_1601_NANOS_64LE = 5;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
private static final Logger log = LoggerFactory.getLogger(Smb2CreateRequest.class); /** * No oplock */ public static final byte SMB2_OPLOCK_LEVEL_NONE = 0x0; /** * Level II oplock */ public static final byte SMB2_OPLOCK_LEVEL_II = 0x1; /** * Exclusive oplock */ public static final byte SMB2_OPLOCK_LEVEL_EXCLUSIVE = 0x8; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0)