- Sort Score
- Result 10 results
- Languages All
Results 1691 - 1700 of 1,912 for super (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java
/** * API action for admin data config. * */ public class ApiAdminDataconfigAction extends FessApiAdminAction { /** * Default constructor. */ public ApiAdminDataconfigAction() { super(); } private static final Logger logger = LogManager.getLogger(ApiAdminDataconfigAction.class); // ===================================================================================Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbNamedPipe.java
*/ public SmbNamedPipe(final String url, final int pipeType, final boolean unshared, final CIFSContext tc) throws MalformedURLException { super(url, tc); this.pipeType = pipeType; setNonPooled(unshared); if (!getLocator().isIPC()) { throw new MalformedURLException("Named pipes are only valid on IPC$"); }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java
* * @param remote remote socket address * @param local local socket address, may be null */ public TcpRdmaConnection(InetSocketAddress remote, InetSocketAddress local) { super(remote, local); } @Override public void connect() throws IOException { try { socketChannel = SocketChannel.open(); if (localAddress != null) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
if (subCommand == SmbComTransaction.TRANS2_FIND_FIRST2) { c = "Trans2FindFirst2Response["; } else { c = "Trans2FindNext2Response["; } return (c + super.toString() + ",sid=" + sid + ",searchCount=" + numEntries + ",isEndOfSearch=" + isEndOfSearch + ",eaErrorOffset=" + eaErrorOffset + ",lastNameOffset=" + lastNameOffset + ",lastName=" + lastName + "]"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
String type, String coordinateString, String scope, boolean optional, Collection<Exclusion> exclusions) { super(session, trace); this.groupId = groupId; this.artifactId = artifactId; this.version = version; this.classifier = classifier;Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/HandlerTest.java
// Act & Assert assertThrows(NullPointerException.class, () -> handler.parseURL(url, null, 0, 0), "Null spec should result in NPE via super.parseURL"); }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
* @param timestamp the last modification timestamp of the file */ public CharMappingFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } /** * Returns the type identifier for this dictionary file. * * @return the string "mapping" identifying this as a character mapping file */ @OverrideRegistered: 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/smb/SmbOperationException.java
* @param context additional context information */ public SmbOperationException(ErrorCode errorCode, String message, Throwable cause, RetryPolicy retryPolicy, Map<String, Object> context) { super(formatMessage(errorCode, message), cause); this.errorCode = errorCode; this.originalMessage = message; this.retryPolicy = retryPolicy != null ? retryPolicy : RetryPolicy.DEFAULT;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
* @param id the file identifier * @param path the file path * @param timestamp the file timestamp */ public ProtwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return PROTWORDS; } @Override public String getPath() { return path; } @OverrideRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
import org.codelibs.fess.util.ComponentUtil; public class WebFsIndexHelperTest extends UnitFessTestCase { private WebFsIndexHelper webFsIndexHelper; @Override public void setUp() throws Exception { super.setUp(); webFsIndexHelper = new WebFsIndexHelper(); } public void test_crawl_withNullParameters() { try { webFsIndexHelper.crawl("sessionId", null, null);Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0)