- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 5,663 for THIS (0.23 sec)
-
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java
super(config); this.informationLevel = informationLevel; this.setCommand(SMB_COM_TRANSACTION2); this.setSubCommand(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION); } /** * Gets the information level that was queried. * * @return the informationLevel */ public int getInformationLevel() { return this.informationLevel; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java
SMBUtil.writeInt2(32, dst, dstIndex); SMBUtil.writeInt2(this.notifyFlags, dst, dstIndex + 2); dstIndex += 4; SMBUtil.writeInt4(this.outputBufferLength, dst, dstIndex); dstIndex += 4; System.arraycopy(this.fileId, 0, dst, dstIndex, 16); dstIndex += 16; SMBUtil.writeInt4(this.completionFilter, dst, dstIndex); dstIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
this.queryString = queryString.substring(ALLINURL_FIELD_PREFIX.length()); } else if (queryString.startsWith(ALLINTITLE_FIELD_PREFIX)) { defaultField = ComponentUtil.getFessConfig().getIndexFieldTitle(); this.queryString = queryString.substring(ALLINTITLE_FIELD_PREFIX.length()); } else { this.queryString = queryString; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java
super(remote, local); this.group = group; // In real implementation, this would create the endpoint: // this.endpoint = group.createEndpoint(); this.endpoint = new Object(); } @Override public void connect() throws IOException { try { // In real implementation, this would establish the RDMA connection:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 10.2K bytes - Viewed (0) -
.github/PULL_REQUEST_TEMPLATE.md
1. If this is your first time, please read our contributor guidelines: https://git.k8s.io/community/contributors/guide/first-contribution.md#your-first-contribution and developer guide https://git.k8s.io/community/contributors/devel/development.md#development-guide
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Jun 06 14:40:00 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsPagingResultBean.java
this.totalShards = totalShards; } public int getSuccessfulShards() { return successfulShards; } public void setSuccessfulShards(int successfulShards) { this.successfulShards = successfulShards; } public int getFailedShards() { return failedShards; } public void setFailedShards(int failedShards) { this.failedShards = failedShards;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
validate(form, messages -> {}, this::asListHtml); final String id = form.id; badWordService.getBadWord(id).ifPresent(entity -> { copyBeanToBean(entity, form, op -> {}); }).orElse(() -> { throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id), this::asListHtml); }); saveToken();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java
validate(form, messages -> {}, this::asListHtml); final String id = form.id; boostDocumentRuleService.getBoostDocumentRule(id).ifPresent(entity -> { copyBeanToBean(entity, form, op -> {}); }).orElse(() -> { throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id), this::asListHtml); }); saveToken();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacDataInputStream.java
this.dis = new DataInputStream(in); this.size = in.available(); } /** * Aligns the stream position to the specified boundary. * @param mask the alignment mask (typically 2, 4, or 8) * @throws IOException if an I/O error occurs */ public void align(final int mask) throws IOException { final int position = this.size - this.dis.available();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTree.java
this.session = session; this.share = share.toUpperCase(); if (service != null && !service.startsWith("??")) { this.service = service; } this.service0 = this.service; this.connectionState = 0; } boolean matches(final String share, final String service) { return this.share.equalsIgnoreCase(share)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.1K bytes - Viewed (0)