- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 339 for miallen (0.05 sec)
-
src/main/java/jcifs/util/Encdec.java
/* encdec - encode and decode integers, times, and * internationalized strings to and from popular binary formats * http://www.ioplex.com/~miallen/encdec/ * Copyright (c) 2003 Michael B. Allen <mballen@erols.com> * * The GNU Library General Public License * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either
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/smb1/util/Encdec.java
/* encdec - encode and decode integers, times, and * internationalized strings to and from popular binary formats * http://www.ioplex.com/~miallen/encdec/ * Copyright (c) 2003 Michael B. Allen <mballen@erols.com> * * The GNU Library General Public License * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* </tr> * * <tr> * <td ><code>smb://users-nyc;miallen:mypass@angus/tmp/</code></td> * <td> * This URL references a share called <code>tmp</code> on the server * <code>angus</code> as user <code>miallen</code> who's password is * <code>mypass</code>. * </td> * </tr> * * <tr> * <td > * <code>smb://Administrator:P%40ss@msmith1/c/WINDOWS/Desktop/foo.txt</code></td> * <td>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* * <tr><td ><code>smb1://users-nyc;miallen:mypass@angus/tmp/</code></td><td> * This URL references a share called <code>tmp</code> on the server * <code>angus</code> as user <code>miallen</code> who's password is * <code>mypass</code>. * </td></tr> * * <tr><td > * <code>smb1://Administrator:P%40ss@msmith1/c/WINDOWS/Desktop/foo.txt</code></td><td>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
cmd/postpolicyform.go
}) case policyCondContentLength: minLen, err := toInteger(condt[1]) if err != nil { return parsedPolicy, err } maxLen, err := toInteger(condt[2]) if err != nil { return parsedPolicy, err } parsedPolicy.Conditions.ContentLengthRange = contentLengthRange{ Min: minLen, Max: maxLen, Valid: true, } default:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
break; } } sorted.add(j, dirents[i]); } if (maxLen > 50) { maxLen = 50; } maxLen *= 9; /* convert to px */ resp.setContentType("text/html"); out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
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/smb1/http/NetworkExplorer.java
break; } } sorted.add(j, dirents[i]); } if (maxLen > 50) { maxLen = 50; } maxLen *= 9; /* convert to px */ out = resp.getWriter(); resp.setContentType("text/html");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
setWorkstation(new String(workstationBytes, charset)); final int micLen = pos + 24; // Version + MIC if (end || lmResponseOffset < micLen || ntResponseOffset < micLen || domainOffset < micLen || userOffset < micLen || workstationOffset < micLen) { return; } pos += 8; // Version final byte[] m = new byte[16];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/util/Strings.java
* @param maxLen the maximum length to search * @return position of terminating null byte */ public static int findTermination(final byte[] buffer, final int bufferIndex, final int maxLen) { int len = 0; while (buffer[bufferIndex + len] != (byte) 0x00) { len++; if (len > maxLen) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0)