- Sort Score
- Result 10 results
- Languages All
Results 2861 - 2870 of 3,312 for overwrite (0.07 sec)
-
src/main/java/jcifs/smb1/dcerpc/DcerpcException.java
} /** * Returns the root cause of this exception * * @return the root cause throwable */ public Throwable getRootCause() { return rootCause; } @Override public String toString() { if (rootCause != null) { final StringWriter sw = new StringWriter(); final PrintWriter pw = new PrintWriter(sw); rootCause.printStackTrace(pw);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java
* @see DependencyCoordinates#getOptional() */ boolean isOptional(); /** * {@return coordinates with the same identifiers as this dependency}. */ @Nonnull @Override DependencyCoordinates toCoordinates();Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 2.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapSet.java
*/ public boolean isIndex() { return INDEX.equals(type); } /** * Returns a string representation of this object. * @return A string representation. */ @Override public String toString() { return "SitemapSet [sitemapList=" + sitemapList + ", type=" + type + "]"; }Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
* Includes the title and query map for debugging purposes. * * @return string representation of this FacetQueryView instance */ @Override public String toString() { return "FacetQueryView [title=" + title + ", queryMap=" + queryMap + "]"; }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTesterJvm.kt
* strict than the others. */ fun stripForUri(vararg codePoints: Int) = apply { uriStrippedCodePoints.append(String(*codePoints)) } override fun test( codePoint: Int, codePointString: String, encoding: UrlComponentEncodingTester.Encoding, component: Component, ) { testToUrl(codePoint, encoding, component)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 5.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/SubscriberTest.java
public class SubscriberTest extends TestCase { private static final Object FIXTURE_ARGUMENT = new Object(); private EventBus bus; private boolean methodCalled; private @Nullable Object methodArgument; @Override protected void setUp() throws Exception { bus = new EventBus(); methodCalled = false; methodArgument = null; } public void testCreate() {Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaMemoryRegion.java
* * @param buffer buffer to get address for * @return native memory address */ protected abstract long getBufferAddress(ByteBuffer buffer); @Override public void close() { invalidate(); valid = false; }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiTokenizerFactory.java
} else if ("extended".equalsIgnoreCase(modeSetting)) { mode = JapaneseTokenizer.Mode.EXTENDED; } } return mode; } @Override public Tokenizer create() { JapaneseTokenizer t = new JapaneseTokenizer(userDictionary, discartPunctuation, mode); int nBestCost = this.nBestCost; if (nBestExamples != null) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
return process(target); } /** * Basic processing method that other process methods delegate to. * Default implementation returns the target unchanged. * Subclasses should override this method to implement specific processing logic. * * @param target the document data to process * @return the processed document data */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/AccessTokenHelperTest.java
public class AccessTokenHelperTest extends UnitFessTestCase { protected static final int NUM = 20; private AccessTokenHelper accessTokenHelper; @Override public void setUp() throws Exception { super.setUp(); accessTokenHelper = new AccessTokenHelper(); } public void test_generateAccessToken() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 6.5K bytes - Viewed (0)