- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 206 for literals (0.89 sec)
-
src/main/java/org/codelibs/core/naming/InitialContextUtil.java
/** * Retrieves and returns the specified object from the given initial context. * * @param ctx * The initial context. Must not be {@literal null}. * @param jndiName * The name of the object to look up. Must not be {@literal null} or an empty string. * @return The object bound to <code>jndiName</code>. * @throws NamingRuntimeException
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/ResultSetUtil.java
} } /** * Moves the result set to the next position. * * @param resultSet * The result set. Must not be {@literal null}. * @return Whether the result set successfully moved to the next position. */ public static boolean next(final ResultSet resultSet) { assertArgumentNotNull("resultSet", resultSet);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BinaryConversionUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/OutputStreamUtil.java
/** * Do not instantiate. */ protected OutputStreamUtil() { } /** * Creates a {@link FileOutputStream}. * * @param file the file (must not be {@literal null}) * @return a {@link FileOutputStream} to output to the file * @see FileOutputStream#FileOutputStream(File) */ public static FileOutputStream create(final File file) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/hash/ImmutableSupplier.java
*/ package com.google.common.hash; import com.google.common.base.Supplier; import com.google.errorprone.annotations.Immutable; /** * Explicitly named subinterface of {@link Supplier} that can be marked {@literal @}{@link * Immutable}. */ // TODO(cpovirk): Should we just use ChecksumType directly instead of defining this type? @Immutable
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 991 bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Provides.java
* useful when the bean creation requires complex logic or when the bean needs to be * configured based on runtime conditions. * <p> * Example usage: * <pre> * public class Providers { * {@literal @}Provides * {@literal @}Singleton * public static Configuration provideConfiguration() { * return Configuration.load(); * } * } * </pre> * * @since 4.0.0 */ @Target(METHOD)
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/jar/JarInputStreamUtil.java
/** * Do not instantiate. */ protected JarInputStreamUtil() { } /** * Creates a {@link JarInputStream}. * * @param is the input stream (must not be {@literal null}) * @return {@link JarInputStream} * @throws IORuntimeException if an {@link IOException} occurs * @see JarInputStream#JarInputStream(InputStream) */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.3K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Named.java
* which implementation should be injected when multiple candidates exist. * The value represents a unique identifier for the dependency. * <p> * Example usage: * <pre> * {@literal @}Inject * {@literal @}Named("mysql") * private Repository mysqlRepository; * </pre> * * @see Inject * @see Qualifier * @since 4.0.0 */ @Qualifier @Retention(RUNTIME) @Documented
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java
/** * Constructs an instance. * * @param beanDesc * The {@link BeanDesc} of the class that owns this field. Must not be {@literal null}. * @param field * The field. Must not be {@literal null}. */ public FieldDescImpl(final BeanDesc beanDesc, final Field field) { assertArgumentNotNull("beanDesc", beanDesc); assertArgumentNotNull("field", field);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt
// pseudo headers. Literal Header Field without Indexing - Indexed Name. writeInt(headerNameIndex, PREFIX_4_BITS, 0) writeByteString(value) } else -> { // Literal Header Field with Incremental Indexing - Indexed Name. writeInt(headerNameIndex, PREFIX_6_BITS, 0x40)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 22.4K bytes - Viewed (0)