- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 135 for literally (0.37 sec)
-
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/RequestTraceHelper.java
*/ @Deprecated(since = "4.0.0") public final class RequestTraceHelper { /** * Method that creates some informational string based on passed in {@link RequestTrace}. The contents of request * trace can literally be anything, but this class tries to cover "most common" cases that are happening in Maven. */ public static String interpretTrace(boolean detailed, RequestTrace requestTrace) { while (requestTrace != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ObjectArrays.java
*/ static @Nullable Object[] toArrayImpl(Collection<?> c) { return fillArray(c, new Object[c.size()]); } /** * Returns a copy of the specified subrange of the specified array that is literally an Object[], * and not e.g. a {@code String[]}. */ static @Nullable Object[] copyAsObjectArray(@Nullable Object[] elements, int offset, int length) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 9K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/index.md
And dependencies can be created in a very simple and intuitive way that allows you to just import the Python packages you need, and integrate them with your API functions in a couple of lines of code, *literally*. You will see examples of this in the next chapters, about relational and NoSQL databases, security, etc. ## **FastAPI** compatibility
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:18:17 UTC 2024 - 9.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ObjectArrays.java
*/ static @Nullable Object[] toArrayImpl(Collection<?> c) { return fillArray(c, new Object[c.size()]); } /** * Returns a copy of the specified subrange of the specified array that is literally an Object[], * and not e.g. a {@code String[]}. */ static @Nullable Object[] copyAsObjectArray(@Nullable Object[] elements, int offset, int length) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionBlocksSummaryRenderer.java
Element literal = document.createElement("literal"); title.appendChild(literal); literal.appendChild(document.createTextNode(extension.getPluginId())); title.appendChild(document.createTextNode(" plugin")); Element titleabbrev = document.createElement("titleabbrev"); section.appendChild(titleabbrev); literal = document.createElement("literal");
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockDetailRenderer.java
section.setAttribute("role", "detail"); Element title = document.createElement("title"); section.appendChild(title); Element literal = document.createElement("literal"); title.appendChild(literal); literal.appendChild(document.createTextNode(blockDoc.getName())); title.appendChild(document.createTextNode(" { }"));
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/PropertiesUtil.java
} /** * 指定のエンコーディングでファイルを読み込んで{@link Properties}にロードします(例外処理はラップします)。 * * @param props * プロパティセット。{@literal null}であってはいけません * @param file * ファイル。{@literal null}であってはいけません * @param encoding * エンコーディング。{@literal null}や空文字列であってはいけません */ public static void load(final Properties props, final File file, final String encoding) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ModifierUtil.java
* * @param method * メソッド。{@literal null}であってはいけません * @return パブリックかどうか */ public static boolean isPublic(final Method method) { assertArgumentNotNull("method", method); return isPublic(method.getModifiers()); } /** * <code>public</code>かどうか返します。 * * @param field * フィールド。{@literal null}であってはいけません * @return パブリックかどうか */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceBundleUtil.java
return convertMap(bundle); } /** * {@literal locale}が{@literal null}でなければ{@literal locale}を、{@literal null} * ならデフォルトのロケールを返します。 * * @param locale * ロケール * @return {@literal locale}が{@literal null}でなければ{@literal locale}を、 * {@literal null}ならデフォルトのロケールを返します。 */ protected static Locale getLocale(final Locale locale) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SchemaUtil.java
* @return {@link Schema} */ public static Schema newRelaxNgSchema(final Source schema) { assertArgumentNotNull("schema", schema); return newSchema(SchemaFactoryUtil.newRelaxNgSchemaFactory(), schema); } /** * URLからRELAX NGのための{@link Schema}を生成します。 * * @param schema * RELAX NGのURL。{@literal null}であってはいけません
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.8K bytes - Viewed (0)