Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 6,574 for KClass (0.16 sec)

  1. src/test/java/org/codelibs/core/io/CloseableUtilTest.java

    import static org.hamcrest.CoreMatchers.is;
    import static org.junit.Assert.assertThat;
    
    import java.io.IOException;
    import java.io.OutputStream;
    
    import org.junit.Test;
    
    /**
     * @author shot
     */
    public class CloseableUtilTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void testClose() throws Exception {
            final NotifyOutputStream out = new NotifyOutputStream();
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/pac/PacSignatureTest.java

    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.nio.ByteBuffer;
    import java.nio.ByteOrder;
    
    import org.junit.jupiter.api.Test;
    
    /**
     * Tests for the PacSignature class.
     */
    class PacSignatureTest {
    
        /**
         * Helper method to write integer in little-endian format.
         */
        private void writeLittleEndianInt(ByteArrayOutputStream baos, int value) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationTest.java

    import org.junit.jupiter.api.Test;
    
    import jcifs.smb1.util.Hexdump;
    
    /**
     * Unit test for {@link Trans2QueryFSInformation}. The class contains mostly
     * trivial wire-format helpers and a custom {@code toString()} implementation.
     * All tests are pure unit tests – no network or file system access is
     * required.
     */
    class Trans2QueryFSInformationTest {
    
        /** Small helper to create a byte buffer larger than the maximum expected
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/ImmutableCollections.java

    import java.util.function.Function;
    import java.util.function.Predicate;
    
    /**
     * This should be removed when https://bugs.openjdk.org/browse/JDK-8323729
     * is released in our minimum JDK.
     */
    class ImmutableCollections {
    
        private static final Map<?, ?> EMPTY_MAP = new AbstractImmutableMap<>() {
            @Override
            public Set<Entry<Object, Object>> entrySet() {
                return new AbstractImmutableSet<>() {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jul 07 11:47:42 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  5. docs/em/docs/advanced/openapi-callbacks.md

    πŸ‘‰ πŸ–Ό 🚫 πŸ› οΈ ⏲ ⚫️ (πŸ‘ˆ πŸ’ͺ ⏸ πŸ“Ÿ), πŸ•΄ 🧾 πŸ•.
    
    /// tip
    
    β˜‘ ⏲ πŸ‡ΊπŸ‡ΈπŸ” πŸ“¨.
    
    πŸ•β” πŸ› οΈ ⏲ πŸ‘†, πŸ‘† πŸ’ͺ βš™οΈ πŸ•³ πŸ’– <a href="https://www.python-httpx.org" class="external-link" target="_blank">πŸ‡ΈπŸ‡²</a> βš–οΈ <a href="https://requests.readthedocs.io/" class="external-link" target="_blank">πŸ“¨</a>.
    
    ///
    
    ## ✍ ⏲ 🧾 πŸ“Ÿ
    
    πŸ‘‰ πŸ“Ÿ πŸ† 🚫 πŸ› οΈ πŸ‘† πŸ“±, πŸ‘₯ πŸ•΄ πŸ’ͺ ⚫️ *πŸ“„* ❔ πŸ‘ˆ *πŸ”’ πŸ› οΈ* πŸ”œ πŸ‘€ πŸ’–.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Creator for protected words dictionary files.
     * This class manages the creation and registration of protected words dictionary files.
     */
    public class ProtwordsCreator extends DictionaryCreator {
        private static final Logger logger = LogManager.getLogger(ProtwordsCreator.class);
    
        /**
         * Constructor for ProtwordsCreator.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  7. futures/failureaccess/src/com/google/common/util/concurrent/internal/InternalFutures.java

    
    /**
     * Static utilities for {@link InternalFutureFailureAccess}. Most users will never need to use this
     * class.
     *
     * <p>This class is GWT-compatible.
     *
     * @since {@code com.google.guava:failureaccess:1.0}, which was added as a dependency of Guava in
     *     Guava 27.0
     */
    public final class InternalFutures {
      /**
       * Usually returns {@code null} but, if the given {@code Future} has failed, may <i>optionally</i>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/converter/NumberConverter.java

                return null;
            }
            return new DecimalFormat(pattern).format(value);
        }
    
        @Override
        public boolean isTarget(final Class<?> clazz) {
            assertArgumentNotNull("clazz", clazz);
            return Number.class.isAssignableFrom(clazz);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/converter/TimestampConverter.java

                return null;
            }
            return StringConversionUtil.toString((Date) value, pattern);
        }
    
        @Override
        public boolean isTarget(final Class<?> clazz) {
            assertArgumentNotNull("clazz", clazz);
            return clazz == java.sql.Timestamp.class;
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/context/SingletonContext.java

    import jcifs.config.PropertyConfiguration;
    
    /**
     * Global singleton context
     *
     * @author mbechler
     *
     */
    public class SingletonContext extends BaseContext implements CIFSContext {
    
        private static final Logger log = LoggerFactory.getLogger(SingletonContext.class);
        private static SingletonContext INSTANCE;
    
        /**
         * Initialize singleton context using custom properties
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top