- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 117 for literally (0.04 sec)
-
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 Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.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 { #fastapi-compatibility }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.6K 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 Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.9K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HostSpecifier.java
* @throws IllegalArgumentException if the specifier is not valid. */ public static HostSpecifier fromValid(String specifier) { // Verify that no port was specified, and strip optional brackets from // IPv6 literals. HostAndPort parsedHost = HostAndPort.fromString(specifier); Preconditions.checkArgument(!parsedHost.hasPort()); String host = parsedHost.getHost();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/PropertiesUtil.java
* * @param props * Property set. Must not be {@literal null}. * @param file * File. Must not be {@literal null}. * @param encoding * Encoding. Must not be {@literal null} or empty. */ public static void load(final Properties props, final File file, final String encoding) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SchemaUtil.java
* @param schema * Schema file. Must not be {@literal null}. * @return {@link Schema} */ public static Schema newSchema(final SchemaFactory factory, final File schema) { assertArgumentNotNull("factory", factory); assertArgumentNotNull("schema", schema); try { return factory.newSchema(schema);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/FileUtil.java
* * @param path * The file path. Must not be {@literal null} or empty. * @param encoding * The encoding. Must not be {@literal null} or empty. * @return The text read from the file. */ public static String readText(final String path, final String encoding) { assertArgumentNotEmpty("path", path);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceBundleUtil.java
return convertMap(bundle); } /** * Returns the {@literal locale} if not {@literal null}, otherwise returns the default locale. * * @param locale the locale * @return the {@literal locale} if not {@literal null}, otherwise the default locale */ protected static Locale getLocale(final Locale locale) { if (locale != null) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/DriverManagerUtil.java
*/ protected DriverManagerUtil() { } /** * Registers a JDBC driver. * * @param driverClassName * The class name of the JDBC driver to register. Must not be {@literal null} or an empty string. */ public static void registerDriver(final String driverClassName) { assertArgumentNotEmpty("driverClassName", driverClassName);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/FieldDesc.java
*/ <T> Class<T> getFieldType(); /** * Returns {@literal true} if the field is {@literal public}. * * @return {@literal true} if the field is {@literal public} */ boolean isPublic(); /** * Returns {@literal true} if the field is {@literal static}. * * @return {@literal true} if the field is {@literal static} */ boolean isStatic(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4K bytes - Viewed (0)