- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 6,580 for Spring (0.04 seconds)
-
android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java
} return thread; } }; } // weird case in which users pass the format string but not the associated arguments @SuppressWarnings("AnnotateFormatMethod") private static String format(String format, Object... args) { return String.format(Locale.ROOT, format, args); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Dec 29 17:36:00 GMT 2025 - 9.2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java
/** * Converts the given content to an XML string. * * @param content the object to convert * @return the xml string representation * @throws XmlWriterException if an error occurs during the transformation * @see #fromXmlString(String) */ @Nonnull default String toXmlString(@Nonnull T content) throws XmlWriterException { StringWriter sw = new StringWriter(); write(content, sw);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 3.9K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
*/ /** * Parses a DCERPC binding string into a DcerpcBinding object * @param str the binding string to parse * @return the parsed DcerpcBinding object * @throws DcerpcException if the binding string is malformed */ protected static DcerpcBinding parseBinding(final String str) throws DcerpcException { int state, mark, si;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 15.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exception/SsoMessageException.java
import org.codelibs.fess.mylasta.action.FessMessages; import org.lastaflute.web.validation.VaMessenger; /** * Exception thrown during SSO (Single Sign-On) processing with message code support. * * This exception is used to indicate errors that occur during SSO authentication * and authorization processes. It carries both a message code for internationalization
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClient.java
* @param failureReason the reason for failure ("no_results" or "no_relevant_results") * @param history the conversation history * @return a new query string, or the userMessage if regeneration fails */ String regenerateQuery(String userMessage, String failedQuery, String failureReason, List<LlmMessage> history); /** * Generates an answer using document content (streaming version for enhanced flow). *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 7.3K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingException.java
for (Problem problem : problems) { writer.print("["); writer.print(problem.getSeverity()); writer.print("] "); writer.print(problem.getMessage()); String location = problem.getLocation(); if (!location.isEmpty()) { writer.print(" @ "); writer.print(location); } writer.println(); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 05 09:37:42 GMT 2025 - 2.7K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java
System.err.println("An error occurred during verification: " + e.getMessage()); throw new RuntimeException("Error during file verification", e); } } private static class AdocFileEntry { @SerializedName("filename") String filename; @SerializedName("anchors") List<String> anchors; } /**
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Aug 21 15:38:58 GMT 2025 - 8.5K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java
* the list denotes the model on which the model builder was originally invoked. The last identifier will always be * an empty string that by definition denotes the super POM. * * @return The model identifiers from the lineage of models, never {@code null}. */ List<String> getModelIds(); /** * Gets the assembled model. * * @return The assembled model, never {@code null}. */Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 4.2K bytes - Click Count (0) -
src/main/java/jcifs/DfsResolver.java
* @return the final referral for the given DFS path * @throws CIFSException if an error occurs during resolution * @throws jcifs.smb.SmbAuthException if authentication fails */ DfsReferralData resolve(CIFSContext tf, String domain, String root, String path) throws CIFSException; /** * Add a referral to the cache * * @param path the DFS path for this referralCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.4K bytes - Click Count (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java
public static final String SELF_COMBINATION_OVERRIDE = "override"; /** Value indicating the element should be merged */ public static final String SELF_COMBINATION_MERGE = "merge"; /** Value indicating the element should be removed */ public static final String SELF_COMBINATION_REMOVE = "remove"; /** * Default mode for combining a DOM node during merge.
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Apr 03 13:33:59 GMT 2025 - 9.2K bytes - Click Count (0)