- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 2,745 for During (0.2 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java
* Dependency is the output of the <dfn>collection</dfn> process, which builds the graph of dependencies, * followed by <dfn>flattening</dfn> and <dfn>resolution</dfn>. * The version selection is done for each dependency during the collection phase. * The flatten phase will keep only a single version per ({@code groupId}, {@code artifactId}) pair. * The resolution will actually download the dependencies (or artifacts) that have been computed. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 2.8K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java
*/ String DEFAULT_SELF_COMBINATION_MODE = SELF_COMBINATION_MERGE; @Nonnull String getName(); @Nonnull String getNamespaceUri(); @Nonnull String getPrefix(); @Nullable String getValue(); @Nonnull Map<String, String> getAttributes(); @Nullable String getAttribute(@Nonnull String name); @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Nov 27 23:11:34 UTC 2023 - 4.3K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/SipHashFunction.java
*/ SipHashFunction(int c, int d, long k0, long k1) { checkArgument( c > 0, "The number of SipRound iterations (c=%s) during Compression must be positive.", c); checkArgument( d > 0, "The number of SipRound iterations (d=%s) during Finalization must be positive.", d); this.c = c; this.d = d; this.k0 = k0; this.k1 = k1; } @Override public int bits() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 20 18:43:59 UTC 2021 - 5.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/xml/XmlEscapersTest.java
assertEscaping(xmlEscaper, "'", ch); } else if (shouldEscapeQuotes && ch == '"') { assertEscaping(xmlEscaper, """, ch); } else { String input = String.valueOf(ch); String escaped = xmlEscaper.escape(input); assertEquals( "char 0x" + Integer.toString(ch, 16) + " should not be escaped", input, escaped); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4.7K bytes - Viewed (0) -
internal/crypto/error.go
// Error is the generic type for any error happening during decrypting // an object. It indicates that the object itself or its metadata was // modified accidentally or maliciously. type Error struct { msg string cause error } // Errorf - formats according to a format specifier and returns // the string as a value that satisfies error of type crypto.Error func Errorf(format string, a ...interface{}) error { e := fmt.Errorf(format, a...)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 28 17:44:56 UTC 2024 - 4.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java
/** * Simply 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();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.9K bytes - Viewed (0) -
docs/en/docs/fastapi-people.md
### FastAPI Experts - Last Month These are the users that have been [helping others the most with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank} during the last month. 🤓 {% if people %} <div class="user-list user-list-center"> {% for user in people.last_month_experts[:10] %}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 9.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/forked/ForkedMavenParser.java
* @param parserRequest the request containing all necessary information for parsing * @return the parsed ForkedMavenInvokerRequest * @throws ParserException if there's an error during parsing of the request * @throws IOException if there's an I/O error during the parsing process */ @Nonnull ForkedMavenInvokerRequest parse(@Nonnull ParserRequest parserRequest) throws ParserException, IOException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2.1K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnenc/EncryptParser.java
* @param parserRequest the request containing all necessary information for parsing * @return the parsed EncryptInvokerRequest * @throws ParserException if there's an error during parsing of the request * @throws IOException if there's an I/O error during the parsing process */ @Nonnull EncryptInvokerRequest parse(@Nonnull ParserRequest parserRequest) throws ParserException, IOException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/reporting/MavenReportException.java
* under the License. */ package org.apache.maven.reporting; /** * An exception occurring during the execution of a Maven report. * */ @Deprecated public class MavenReportException extends Exception { public MavenReportException(String msg) { super(msg); } public MavenReportException(String msg, Exception e) { super(msg, e); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0)