- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 1,304 for sata (0.06 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/QueryNetworkInterfaceInfoRequest.java
*/ package jcifs.internal.smb2.ioctl; /** * Request data for FSCTL_QUERY_NETWORK_INTERFACE_INFO * * This IOCTL has no input data - the request is empty */ public class QueryNetworkInterfaceInfoRequest { /** * Create query network interface info request */ public QueryNetworkInterfaceInfoRequest() { // No input data required for this IOCTL } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
final byte[] seqBytes = new byte[4]; SMBUtil.writeInt4(seqNum, seqBytes, 0); final MessageDigest mac = Crypto.getHMACT64(sk); mac.update(seqBytes); // sequence mac.update(data); // data final byte[] dgst = mac.digest(); byte[] trunc = new byte[8]; System.arraycopy(dgst, 0, trunc, 0, 8); if (log.isDebugEnabled()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/sanitize.js
e.each||(e=a(e));var g=function(){var b=a(this),c=b.val();a.split(b.attr("data-sanitize"),function(a){if(!(a in d))throw new Error('Use of unknown sanitize command "'+a+'"');c=d[a](c,b,f)}),b.val(c).trigger("keyup.validation")};e.each(function(){var b=a(this);f.sanitizeAll&&b.find("input,textarea").not(c).each(function(){var b=a(this),c=b.attr("data-sanitize")||"";b.attr("data-sanitize",f.sanitizeAll+" "+c)}),b.find("[data-sanitize]").unbind("blur.sanitation",g).bind("blur.sanitation",g),a(funct...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 2.7K bytes - Viewed (0) -
src/main/webapp/js/index.js
if (!$(e.target).closest("#searchOptions, #searchOptionsButton").length) { $("#searchOptions").removeClass("active"); } }); $("[data-toggle='control-options']").click(function(e) { e.preventDefault(); var target = $(this).attr("data-target") || $(this).attr("href"); if (target) { $(target).toggleClass("active"); } }); $("#searchOptionsClearButton").on("click", function(e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 2K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/toggleDisabled.js
d-with-errors":"disabled-without-errors").on("reset",function(){e(a(this),"disabled")}).find("*[data-validation]").valAttr("event","keyup change").on("validation",function(b,c){if(!f){f=!0;var g=a(this).closest("form");c&&d(g,this,h)?e(g,"enabled"):e(g,"disabled"),f=!1}}).on("afterValidation",k).on("blur",function(){a(this).valAttr("have-been-blurred",1)}).each(function(){var b=a(this),c=b.attr("data-validation");c.indexOf("checkbox_group")>-1&&b.closest("form").find('input[name="'+b.attr("name"...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 2.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp
<c:forEach var="data" varStatus="s" items="${jobLogItems}"> <tr data-href="${contextPath}/admin/joblog/details/4/${f:u(data.id)}"> <td>${f:h(data.jobName)}</td>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 11.4K bytes - Viewed (0) -
docs/en/mkdocs.yml
macros: include_yaml: - external_links: ../en/data/external_links.yml - github_sponsors: ../en/data/github_sponsors.yml - people: ../en/data/people.yml - contributors: ../en/data/contributors.yml - translators: ../en/data/translators.yml - translation_reviewers: ../en/data/translation_reviewers.yml - skip_users: ../en/data/skip_users.yml - members: ../en/data/members.yml
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 9.8K bytes - Viewed (0) -
docs/en/docs/tutorial/body.md
* Read the body of the request as JSON. * Convert the corresponding types (if needed). * Validate the data. * If the data is invalid, it will return a nice and clear error, indicating exactly where and what was the incorrect data. * Give you the received data in the parameter `item`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:58:56 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/backup/admin_backup.jsp
<c:forEach var="data" varStatus="s" items="${backupItems}"> <tr data-href="${contextPath}/admin/backup/download/${f:u(data.id)}/"> <td>${f:h(data.name)}</td> </tr>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java
} /** * Sets the data to be written to the file. * * @param data the data buffer to write * @param offset the offset in the data buffer * @param length the number of bytes to write */ public void setData(final byte[] data, final int offset, final int length) { this.data = data; this.dataOffset = offset; this.dataLength = length; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.1K bytes - Viewed (0)