- Sort Score
- Result 10 results
- Languages All
Results 951 - 960 of 3,984 for Signal (0.03 sec)
-
src/main/java/jcifs/smb1/dcerpc/UnicodeString.java
* * @param str wrapped string * @param zterm whether the string should be zero terminated */ public UnicodeString(final String str, final boolean zterm) { this.zterm = zterm; final int len = str.length(); final int zt = zterm ? 1 : 0; length = maximum_length = (short) ((len + zt) * 2); buffer = new short[len + zt]; int i;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java
* @param id The ID of the kuromoji item. * @return The HTML response. */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse details(final String dictId, final int crudMode, final long id) { verifyCrudMode(crudMode, CrudMode.DETAILS, dictId); saveToken(); return asDetailsHtml().useForm(EditForm.class, op -> { op.setup(form -> {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/SerializeUtilTest.java
final Set<String> allowedPatterns = new HashSet<>(); allowedPatterns.add("java.lang.*"); allowedPatterns.add("java.util.*"); final ObjectInputFilter customFilter = SerializeUtil.createCustomFilter(allowedPatterns); // Test allowed class final String str = "test"; final byte[] binary = SerializeUtil.fromObjectToBinary(str);
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/util/ByteEncodable.java
private final byte[] bytes; private final int off; private final int len; /** * Constructs a ByteEncodable object wrapping a byte array segment. * * @param b the byte array to wrap * @param off the offset in the byte array * @param len the length of the segment to use */ public ByteEncodable(final byte[] b, final int off, final int len) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
*/ protected void executeCrawler() { final List<String> cmdList = new ArrayList<>(); final String cpSeparator = SystemUtils.IS_OS_WINDOWS ? ";" : ":"; final ServletContext servletContext = ComponentUtil.getComponent(ServletContext.class); final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final ProcessHelper processHelper = ComponentUtil.getProcessHelper();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java
return array; } catch (final IndexNotFoundException e) { return new Map[0]; } } /** * Add a value to array index. * @param index Index * @param type Type * @param id ID * @param source Source */ protected void addToArrayIndex(final String index, final String type, final String id, final Map<String, Object> source) {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
*/ public static byte[] getLMv2Response(final String domain, final String user, final String password, final byte[] challenge, final byte[] clientChallenge) { try { final byte[] hash = new byte[16]; final byte[] response = new byte[24]; // The next 2-1/2 lines of this should be placed with nTOWFv1 in place of password final MD4 md4 = new MD4();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
*/ public static Method getMethod(final Class<?> clazz, final String name, final Class<?>... argTypes) throws NoSuchMethodRuntimeException { assertArgumentNotNull("clazz", clazz); assertArgumentNotEmpty("name", name); try { return clazz.getMethod(name, argTypes); } catch (final NoSuchMethodException e) {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java
private static final int ANDX_COMMAND_OFFSET = 1; private static final int ANDX_RESERVED_OFFSET = 2; private static final int ANDX_OFFSET_OFFSET = 3; private byte andxCommand = (byte) 0xFF; private int andxOffset = 0; ServerMessageBlock andx = null; AndXServerMessageBlock() { } AndXServerMessageBlock(final ServerMessageBlock andx) { if (andx != null) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/fs/FileSystemClientTest.java
// Test that compareAndSet prevents multiple initializations final FileSystemClient client = new FileSystemClient(); final int threadCount = 10; final Thread[] threads = new Thread[threadCount]; final boolean[] initResults = new boolean[threadCount]; for (int i = 0; i < threadCount; i++) { final int index = i; threads[i] = new Thread(() -> { try {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:59:28 UTC 2025 - 11.2K bytes - Viewed (0)