- Sort Score
- Result 10 results
- Languages All
Results 941 - 950 of 3,587 for findall (0.05 sec)
-
src/main/java/jcifs/smb1/netbios/NbtException.java
/** Implementation error in the name service */ public static final int IMP_ERR = 0x4; /** Refused error in the name service */ public static final int RFS_ERR = 0x5; /** Active error in the name service */ public static final int ACT_ERR = 0x6; /** Name in conflict error */ public static final int CFT_ERR = 0x7; // session service error codes
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/org/codelibs/fess/app/service/ProtwordsService.java
* @return the list of protected words items */ public List<ProtwordsItem> getProtwordsList(final String dictId, final ProtwordsPager protwordsPager) { return getProtwordsFile(dictId).map(file -> { final int pageSize = protwordsPager.getPageSize(); final PagingList<ProtwordsItem> protwordsList =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
return getSmbTransport(tc, address, port, tc.getConfig().getLocalAddr(), tc.getConfig().getLocalPort(), null, nonPooled); } @Override public SmbTransportImpl getSmbTransport(final CIFSContext tc, final Address address, final int port, final boolean nonPooled, final boolean forceSigning) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/BooleanQueryCommand.java
* @return The converted BoolQueryBuilder. */ protected QueryBuilder convertBooleanQuery(final QueryContext context, final BooleanQuery booleanQuery, final float boost) { final BoolQueryBuilder boolQuery = QueryBuilders.boolQuery(); for (final BooleanClause clause : booleanQuery.clauses()) { final QueryBuilder queryBuilder = getQueryProcessor().execute(context, clause.query(), boost);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameQueryRequest.java
class NameQueryRequest extends NameServicePacket { NameQueryRequest(final Name name) { questionName = name; questionType = NB; } @Override int writeBodyWireFormat(final byte[] dst, final int dstIndex) { return writeQuestionSectionWireFormat(dst, dstIndex); } @Override int readBodyWireFormat(final byte[] src, final int srcIndex) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
private int fileAttributes; private final byte[] fileId = new byte[16]; private CreateContextResponse[] createContexts; private final String fileName; /** * Constructs an SMB2 create response * @param config the client configuration * @param name the file name */ public Smb2CreateResponse(final Configuration config, final String name) { super(config);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
protected SuggestResponse createResponse(final SearchResponse searchResponse) { final SearchHit[] hits = searchResponse.getHits().getHits(); final List<String> words = new ArrayList<>(); final List<String> firstWords = new ArrayList<>(); final List<String> secondWords = new ArrayList<>(); final List<SuggestItem> firstItems = new ArrayList<>(); final List<SuggestItem> secondItems = new ArrayList<>();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcMessage.java
public static final int WITNESS_REGISTER = 0; /** WitnessUnregister operation number */ public static final int WITNESS_UNREGISTER = 1; /** WitnessAsyncNotify operation number */ public static final int WITNESS_ASYNC_NOTIFY = 2; /** Witness heartbeat operation number */ public static final int WITNESS_HEARTBEAT = 3; // Common return codes from MS-SWN specification
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java
return 0; } @Override int readParametersWireFormat(final byte[] buffer, final int bufferIndex, final int len) { return 0; } @Override int readDataWireFormat(final byte[] buffer, int bufferIndex, final int len) { final int start = bufferIndex; pathConsumed = readInt2(buffer, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransactNamedPipeOutputStream.java
package jcifs.smb1.smb1; import java.io.IOException; class TransactNamedPipeOutputStream extends SmbFileOutputStream { private final String path; private final SmbNamedPipe pipe; private final byte[] tmp = new byte[1]; private final boolean dcePipe; TransactNamedPipeOutputStream(final SmbNamedPipe pipe) throws IOException { super(pipe, false, pipe.pipeType & 0xFFFF00FF | SmbFile.O_EXCL); this.pipe = pipe;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.5K bytes - Viewed (0)