- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 511 for getDfs (0.04 sec)
-
src/main/java/jcifs/internal/witness/WitnessHeartbeatResponse.java
/** * Checks if the heartbeat was successful. * * @return true if successful */ public boolean isSuccess() { return returnCode == 0; } /** * Gets the sequence number. * * @return the sequence number */ public long getSequenceNumber() { return sequenceNumber; } /** * Sets the sequence number. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegisterResponse.java
/** * Checks if the registration was successful. * * @return true if successful */ public boolean isSuccess() { return returnCode == 0; } /** * Gets a human-readable error description. * * @return the error description */ public String getError() { return error != null ? error : "Error code: " + returnCode; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java
} /** * Gets the user groups. * * @return the user groups */ public String[] getUserGroups() { String[] userGroups = DocumentUtil.getValue(attributes, "groups", String[].class); if (userGroups == null) { userGroups = getDefaultGroupsAsArray(); } return userGroups; } /** * Gets the OpenID Connect user. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransport.java
* {@inheritDoc} * * @see java.lang.AutoCloseable#close() */ @Override void close(); /** * Gets the address of the remote SMB server. * * @return the connected address */ Address getRemoteAddress(); /** * Gets the host name of the remote SMB server. * * @return the connected host name */ String getRemoteHostName();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
ComponentUtil.getQueryProcessor().add(getQueryClassName(), this); } /** * Gets the query field configuration. * @return The query field configuration instance. */ protected QueryFieldConfig getQueryFieldConfig() { return ComponentUtil.getQueryFieldConfig(); } /** * Gets the query processor instance. * @return The query processor instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
versionNo = null; description = null; } /** * Gets the default current page number. * * @return the default current page number */ protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } /** * Gets the total number of records across all pages. * * @return the total record count */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java
this.pageNumberList = pageNumberList; } /** * Gets the default current page number from system constants. * * @return the default current page number */ protected int getDefaultCurrentPageNumber() { return Constants.DEFAULT_ADMIN_PAGE_NUMBER; } /** * Gets the default page size from system configuration. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
dataSerializer = ComponentUtil.getComponent("dataSerializer"); } /** * Gets the Fess configuration instance. * * @return the Fess configuration */ @Override public FessConfig getFessConfig() { return fessConfig; } /** * Gets the logger instance for this transformer. * * @return the logger instance */ @Override
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/org/codelibs/fess/dict/protwords/ProtwordsItem.java
*/ public void setNewInput(final String newInput) { this.newInput = newInput; } /** * Gets the input value for this item. * @return the input value */ public String getInput() { return input; } /** * Gets the input value or empty string if null. * @return the input value or empty string */ public String getInputValue() {
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/smb/SmbTransportInternal.java
*/ boolean isSigningEnforced() throws SmbException; /** * Gets the server's encryption key for authentication. * * @return the encryption key used by the server */ byte[] getServerEncryptionKey(); /** * Gets or creates an SMB session for the given context. * * @param ctx the CIFS context * @return session */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0)