- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 3,340 for einmal (0.04 sec)
-
src/main/java/org/codelibs/fess/exec/Crawler.java
* @param args command-line arguments as defined in the Options class */ public static void main(final String[] args) { final Options options = new Options(); final CmdLineParser parser = new CmdLineParser(options); try { parser.parseArgument(args); } catch (final CmdLineException e) { System.err.println(e.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformation.java
} @Override int writeDataWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int readSetupWireFormat(final byte[] buffer, final int bufferIndex, final int len) { return 0; } @Override int readParametersWireFormat(final byte[] buffer, final int bufferIndex, final int len) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
* */ class SmbPipeHandleImpl implements SmbPipeHandleInternal { private static final Logger log = LoggerFactory.getLogger(SmbPipeHandleImpl.class); private final SmbNamedPipe pipe; private final boolean transact; private final boolean call; private final int openFlags; private final int access; private volatile boolean open = true; private SmbFileHandleImpl handle;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/MD4.java
} // The basic MD4 atomic functions. private int FF(final int a, final int b, final int c, final int d, final int x, final int s) { final int t = a + (b & c | ~b & d) + x; return t << s | t >>> 32 - s; } private int GG(final int a, final int b, final int c, final int d, final int x, final int s) { final int t = a + (b & (c | d) | c & d) + x + 0x5A827999;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
* @throws JobProcessingException if the process cannot be started */ public synchronized JobProcess startProcess(final String sessionId, final List<String> cmdList, final Consumer<ProcessBuilder> pbCall, final int bufferSize, final Consumer<String> outputCallback) { final ProcessBuilder pb = new ProcessBuilder(cmdList); pbCall.accept(pb); destroyProcess(sessionId);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java
@Override protected int writeBytesWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override protected int readParameterWordsWireFormat(final byte[] buffer, final int bufferIndex) { this.supportSearchBits = (buffer[bufferIndex] & SMB_SUPPORT_SEARCH_BITS) == SMB_SUPPORT_SEARCH_BITS; this.shareIsInDfs = (buffer[bufferIndex] & SMB_SHARE_IS_IN_DFS) == SMB_SHARE_IS_IN_DFS;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/message/MessageFormatter.java
*/ public static String getSimpleMessage(final String messageCode, final Object... args) { try { final String pattern = getPattern(messageCode); if (pattern != null) { return MessageFormat.format(pattern, args); } return getNoPatternMessage(args); } catch (final Throwable ignore) { return getNoPatternMessage(args); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.4K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/GraphConstants.java
final class GraphConstants { private GraphConstants() {} static final int EXPECTED_DEGREE = 2; static final int DEFAULT_NODE_COUNT = 10; static final int DEFAULT_EDGE_COUNT = DEFAULT_NODE_COUNT * EXPECTED_DEGREE; // Load factor and capacity for "inner" (i.e. per node/edge element) hash sets or maps static final float INNER_LOAD_FACTOR = 1.0f;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
public static final String REGEXP_IGNORE_CASE = "regexpIgnoreCase:"; /** Prefix for contains-based string matching patterns. */ public static final String CONTAINS = "contains:"; /** XML element name for collections container. */ protected static final String COLLECTIONS = "collections"; /** XML element name for individual collection. */ protected static final String COLLECTION = "collection";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
public void testConcurrentSecureWipe() throws InterruptedException { final NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("user", "ConcurrentWipePass123!"); final int threadCount = 20; final CountDownLatch startLatch = new CountDownLatch(1); final CountDownLatch completeLatch = new CountDownLatch(threadCount);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0)