Search Options

Results per page
Sort
Preferred Languages
Advance

Results 391 - 400 of 406 for instantiated (0.07 sec)

  1. src/main/java/org/codelibs/core/io/TraversalUtil.java

     * </ul>
     *
     * @author koichik
     * @see URLUtil#toCanonicalProtocol(String)
     * @see ClassTraversalUtil
     * @see ResourceTraversalUtil
     */
    public abstract class TraversalUtil {
    
        /**
         * Do not instantiate.
         */
        protected TraversalUtil() {
        }
    
        /** An empty array of {@link Traverser}. */
        protected static final Traverser[] EMPTY_ARRAY = new Traverser[0];
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

     * </tr>
     * </table>
     *
     * @author koichik
     * @see DateConversionUtil
     * @see TimestampConversionUtil
     */
    public abstract class TimeConversionUtil {
    
        /**
         * Do not instantiate.
         */
        protected TimeConversionUtil() {
        }
    
        /** Array of styles held by {@link DateFormat} */
        protected static final int[] STYLES = new int[] { SHORT, MEDIUM, LONG, FULL };
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

     * </tr>
     * </table>
     *
     * @author shinsuke
     * @see DateConversionUtil
     * @see TimeConversionUtil
     */
    public abstract class TimestampConversionUtil {
    
        /**
         * Do not instantiate.
         */
        protected TimestampConversionUtil() {
        }
    
        /** Array of styles held by {@link DateFormat} */
        protected static final int[] STYLES = new int[] { SHORT, MEDIUM, LONG, FULL };
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

    import java.util.NoSuchElementException;
    import org.junit.Ignore;
    
    /**
     * Tester for navigation of SortedMultisets.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @Ignore("test runners must not instantiate and run this directly, only via suites we build")
    // @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    @SuppressWarnings("JUnit4ClassUsedInJUnit3")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 20:14:36 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

     * </pre>
     *
     * @author Kimura Satoshi
     * @author higa
     * @author shinsuke
     * @see CopyOptionsUtil
     * @see CopyOptions
     */
    public abstract class BeanUtil {
    
        /**
         * Do not instantiate.
         */
        protected BeanUtil() {
        }
    
        /** Default options */
        protected static final CopyOptions DEFAULT_OPTIONS = new CopyOptions();
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/ClassUtil.java

    import org.codelibs.core.exception.NoSuchMethodRuntimeException;
    
    /**
     * Utility class for {@link Class} operations.
     *
     * @author higa
     */
    public abstract class ClassUtil {
    
        /**
         * Do not instantiate.
         */
        protected ClassUtil() {
        }
    
        /** Map from wrapper types to primitive types */
        protected static final Map<Class<?>, Class<?>> wrapperToPrimitiveMap = newHashMap();
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/GenericsUtil.java

    import org.codelibs.core.collection.CollectionsUtil;
    
    /**
     * Utility class for handling generics in Java.
     *
     * @author koichik
     */
    public abstract class GenericsUtil {
    
        /**
         * Do not instantiate.
         */
        protected GenericsUtil() {
        }
    
        /**
         * Returns <code>true</code> if the raw type of <code>type</code> can be assigned to <code>clazz</code>,
         * <code>false</code> otherwise.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  8. cmd/bucket-lifecycle.go

    		ctx:          ctx,
    		killCh:       make(chan struct{}),
    		lastDayStats: make(map[string]*lastDayTierStats),
    	}
    }
    
    // Init initializes t with given objAPI and instantiates the configured number
    // of transition workers.
    func (t *transitionState) Init(objAPI ObjectLayer) {
    	n := globalAPIConfig.getTransitionWorkers()
    	// Prefer ilm.transition_workers over now deprecated api.transition_workers
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/collection/ArrayUtil.java

    import java.util.List;
    
    import org.codelibs.core.message.MessageFormatter;
    
    /**
     * Utility class for array operations.
     *
     * @author higa
     */
    public abstract class ArrayUtil {
    
        /**
         * Do not instantiate.
         */
        protected ArrayUtil() {
        }
    
        /**
         * Returns an array of {@literal boolean}.
         *
         * @param elements the elements of the array
         * @return the array
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 41.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/CopyUtil.java

     * Any {@link IOException} thrown by these methods is wrapped and thrown as an {@link IORuntimeException}.
     * </p>
     *
     * @author koichik
     */
    public abstract class CopyUtil {
    
        /**
         * Do not instantiate.
         */
        protected CopyUtil() {
        }
    
        /** Buffer size used for copying. */
        protected static final int DEFAULT_BUF_SIZE = 4096;
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 45.2K bytes
    - Viewed (0)
Back to top