- Sort Score
- Num 10 results
- Language All
Results 2211 - 2220 of 3,833 for override5 (0.14 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/MonotonicClock.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 15 06:28:29 GMT 2025 - 5.6K bytes - Click Count (0) -
guava/src/com/google/common/base/FinalizableReferenceQueue.java
* MyServer myServer = new MyServer(...); * ServerSocket serverSocket = myServer.serverSocket; * Reference<?> reference = new FinalizablePhantomReference<MyServer>(myServer, frq) { * @Override * public void finalizeReferent() { * references.remove(this): * if (!serverSocket.isClosed()) { * ...log a message about how nobody called close()... * try {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 14.7K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
body = object : RequestBody() { var attempt = 0 override fun contentType(): MediaType? = null override fun writeTo(sink: BufferedSink) { sink.writeUtf8("attempt " + attempt++) } override fun isOneShot(): Boolean = true }, ) val response = client.newCall(request).execute()Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue Nov 04 19:13:52 GMT 2025 - 147.4K bytes - Click Count (0) -
src/test/java/org/codelibs/core/misc/DisposableUtilTest.java
public TestDisposable(final String name) { this.name = name; } @Override public void dispose() { ++count; names += name; } } /** * */ public class TestDisposable2 implements Disposable { @Override public void dispose() { ++count; throw new RuntimeException();
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 3.3K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http/SocketFailureTest.kt
class SocketClosingEventListener : EventListener() { var shouldClose: Boolean = false var lastSocket: Socket? = null override fun connectionAcquired( call: Call, connection: Connection, ) { lastSocket = connection.socket() } override fun requestHeadersStart(call: Call) { if (shouldClose) { lastSocket!!.close() } } } @Test
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue Jul 29 21:11:09 GMT 2025 - 3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedPluginValidator.java
super(pluginValidationManager); this.messageBuilderFactory = messageBuilderFactory; } @Override protected String getParameterLogReason(Parameter parameter) { return "is deprecated: " + parameter.getDeprecated(); } @Override protected void doValidate( MavenSession mavenSession, MojoDescriptor mojoDescriptor, Class<?> mojoClass,
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.1K bytes - Click Count (0) -
src/main/java/jcifs/SmbWatchHandle.java
/** * {@inheritDoc} * * @see java.util.concurrent.Callable#call() */ @Override List<FileNotifyInformation> call() throws CIFSException; /** * {@inheritDoc} * * @see java.lang.AutoCloseable#close() */ @Override void close() throws CIFSException;Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/AbstractRule.java
ruleManager.addRule(index, this); } @Override public String getRuleId() { return ruleId; } /** * Sets the rule ID for this rule. * * @param ruleId the rule ID to set */ public void setRuleId(final String ruleId) { this.ruleId = ruleId; } @Override public ResponseProcessor getResponseProcessor() {
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Wed Sep 03 14:42:53 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV1CreateContextResponse.java
private int leaseState; private int leaseFlags; /** * Create a new lease V1 context response */ public LeaseV1CreateContextResponse() { } @Override public byte[] getName() { return CONTEXT_NAME_BYTES; } /** * Gets the lease key from the server response * @return the lease key */ public Smb2LeaseKey getLeaseKey() {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/jcifs/netbios/SessionRequestPacket.java
this.callingName = new Name(config, callingName); } @Override int writeTrailerWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; dstIndex += this.calledName.writeWireFormat(dst, dstIndex); dstIndex += this.callingName.writeWireFormat(dst, dstIndex); return dstIndex - start; } @Override
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.7K bytes - Click Count (0)