- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 1,148 for mesiace (0.06 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/SuperPomProviderException.java
public SuperPomProviderException() { super(); } public SuperPomProviderException(String message) { super(message); } public SuperPomProviderException(String message, Throwable cause) { super(message, cause); } public SuperPomProviderException(Throwable cause) { super(cause); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManagerException.java
@Serial private static final long serialVersionUID = -9465854226608498L; /** * @param message the message to give * @param e the {@link Exception} */ public ToolchainManagerException(String message, Exception e) { super(message, e); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/SQLRuntimeException.java
if (cause instanceof ClSQLException) { return ((ClSQLException) cause).getSql(); } return ""; } /** * Returns the real message. * * @param cause the underlying exception * @return the real message */ protected static String getRealMessage(final SQLException cause) { final StringBuilder buf = new StringBuilder(256);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.5K bytes - Viewed (0) -
mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/PushPromise.kt
@get:JvmName("response") val response: MockResponse, ) { @JvmName("-deprecated_method") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "method"), level = DeprecationLevel.ERROR, ) fun method(): String = method @JvmName("-deprecated_path") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "path"), level = DeprecationLevel.ERROR, )
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/logging/AccumulatingLogger.java
@Override public void log(Level level, String message, Throwable error) { requireNonNull(level, "level"); requireNonNull(message, "message"); entries.get().add(new Entry(level, message, error)); } @Override public List<Entry> drain() { return entries.getAndSet(new CopyOnWriteArrayList<>()); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 31 20:56:58 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
public static final String LABELS_FACET = "{labels.facet}"; /** The key of the message: Geo */ public static final String LABELS_GEO = "{labels.geo}"; /** The key of the message: Groups */ public static final String LABELS_GROUPS = "{labels.groups}"; /** The key of the message: Hash */ public static final String LABELS_HASH = "{labels.hash}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 146.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/netbios/NbtExceptionTest.java
@DisplayName("getErrorString for SSN service errors") void testSessionServiceErrors(int errorCode, String description) { int errSsn = NbtException.ERR_SSN_SRVC; String message = NbtException.getErrorString(errSsn, errorCode); assertTrue(message.contains(description)); } @Test @DisplayName("getErrorString for unknown error class") void testUnknownErrorClass() { int unknownClass = 1234;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3K bytes - Viewed (0) -
docs/sts/client_grants/sts_element.py
try: return cls(root_name, cElementTree.fromstring(data)) except _ETREE_EXCEPTIONS as error: raise InvalidXMLError( '"{}" XML is not parsable. Message: {}'.format( root_name, error.message ) ) def findall(self, name): """Similar to ElementTree.Element.findall() """ return [
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 2.5K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/Android10Platform.kt
AndroidCertificateChainCleaner.buildIfSupported(trustManager) ?: super.buildCertificateChainCleaner(trustManager) override fun log( message: String, level: Int, t: Throwable?, ) { if (level == WARN) { Log.w(Tag, message, t) } else { Log.i(Tag, message, t) } } companion object { val isSupported: Boolean = isAndroid && Build.VERSION.SDK_INT >= 29
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Jul 20 11:25:50 UTC 2025 - 4.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
missingParentPom.getException(), artifact); } String message; if (isMissingPom(e)) { message = "Missing POM for " + artifact.getId(); } else if (isNonTransferablePom(e)) { throw new ArtifactMetadataRetrievalException(
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 30.4K bytes - Viewed (0)