- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 335 for readLong (0.1 sec)
-
src/main/java/jcifs/ntlmssp/Type3Message.java
setNTResponse(ntResponseBytes); int ntResponseOffset = readULong(material, pos + 4); pos += 8; byte[] domainBytes = readSecurityBuffer(material, pos); int domainOffset = readULong(material, pos + 4); pos += 8; byte[] userBytes = readSecurityBuffer(material, pos); int userOffset = readULong(material, pos + 4); pos += 8;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 30.6K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/question.md
If you want to ask how to do something, or to understand why something isn't working the way you expect it to, use Stack Overflow. https://stackoverflow.com/questions/tagged/okhttp
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 30 18:42:51 UTC 2018 - 406 bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type2Message.java
if (material[i] != NTLMSSP_SIGNATURE[i]) { throw new IOException("Not an NTLMSSP message."); } } if (readULong(material, 8) != 2) { throw new IOException("Not a Type 2 message."); } int flags = readULong(material, 20); setFlags(flags); String target = null; byte[] bytes = readSecurityBuffer(material, 12);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
throw new IOException("Not an NTLMSSP message."); } } pos += 8; if ( readULong(material, pos) != NTLMSSP_TYPE1 ) { throw new IOException("Not a Type 1 message."); } pos += 4; int flags = readULong(material, pos); setFlags(flags); pos += 4; if ( ( flags & NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED ) != 0 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 02 12:55:08 UTC 2018 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
public void addElevateWord(final String word, final String reading, final String[] tags, final String[] permissions, final Float boost, final boolean apply) { final String[] readings; if (StringUtil.isBlank(reading)) { readings = word.replace(" ", TEXT_SEP).replaceAll(TEXT_SEP + "+", TEXT_SEP).split(TEXT_SEP); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 18.1K bytes - Viewed (0) -
internal/ringbuffer/ring_buffer_test.go
// TryRead n, err = rb.TryRead(buf[:readRng.Intn(len(buf))]) readBytes += n read.Write(buf[:n]) debugln("READ 3\t", n, readBytes) if err != nil && err != ErrAcquireLock && err != ErrIsEmpty { readErr = err break } if doSleep && readRng.Intn(20) == 0 { time.Sleep(time.Duration(readRng.Intn(maxSleep))) } } }() // Writer {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 15 00:11:04 UTC 2024 - 26.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbNamedPipe.java
* </td> * <td> * Open the Named Pipe foo for reading and writing. The pipe will behave like the <code>CallNamedPipe</code> interface. * </td> * </tr> * <tr> * <td width="20%"> * * <pre> * new SmbNamedPipe("smb://server/IPC$/foo", SmbNamedPipe.PIPE_TYPE_RDWR | SmbNamedPipe.PIPE_TYPE_TRANSACT, context); * </pre> * * </td> * <td>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_details.jsp
<tr> <th><la:message key="labels.elevate_word_reading"/></th> <td>${f:h(reading)}<la:hidden property="reading"/></td> </tr> <tr> <th><la:message key="labels.elevate_word_permissions"/></th>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java
*/ public void setFlag(int flag, boolean value) { setFlags(value ? (getFlags() | flag) : (getFlags() & (0xffffffff ^ flag))); } static int readULong(byte[] src, int index) { return (src[index] & 0xff) | ((src[index + 1] & 0xff) << 8) | ((src[index + 2] & 0xff) << 16) | ((src[index + 3] & 0xff) << 24); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java
@Required @Size(max = 1000) public String token; @Required @Size(max = 1000) public String segmentation; @Required @Size(max = 1000) public String reading; @Required @Size(max = 1000) public String pos; public void initialize() { crudMode = CrudMode.CREATE; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.4K bytes - Viewed (0)