- Sort Score
- Result 10 results
- Languages All
Results 651 - 660 of 2,493 for anchor (3.12 sec)
-
src/main/java/org/codelibs/core/beans/factory/BeanDescFactory.java
* </p> * * <pre> * BeanDesc beanDesc = BeanDescFactory.getBeanDesc(Foo.class); * </pre> * <p> * {@link BeanDesc} is cached. To clear the cache, call {@link DisposableUtil#dispose()}. * </p> * * @author higa * @see BeanDesc * @see DisposableUtil */ public abstract class BeanDescFactory { /** * Do not instantiate. */ protected BeanDescFactory() { }
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/beans/impl/ParameterizedClassDescImpl.java
import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import org.codelibs.core.beans.ParameterizedClassDesc; /** * Implementation class of {@link ParameterizedClassDesc}. * * @author koichik */ public class ParameterizedClassDescImpl implements ParameterizedClassDesc { /** The raw class */ protected Class<?> rawClass;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BigDecimalConversionUtil.java
import java.math.BigDecimal; import java.text.SimpleDateFormat; import org.codelibs.core.lang.StringUtil; /** * Utility class for conversions related to {@link BigDecimal}. * * @author higa */ public abstract class BigDecimalConversionUtil { /** * Do not instantiate. */ protected BigDecimalConversionUtil() { } /** * Converts to {@link BigDecimal}.
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/timer/TimeoutTask.java
* governing permissions and limitations under the License. */ package org.codelibs.core.timer; import org.codelibs.core.exception.ClIllegalStateException; /** * This class manages timeouts. * * @author higa * */ public class TimeoutTask { private static final int ACTIVE = 0; private static final int STOPPED = 1; private static final int CANCELED = 2;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponse.java
* SMB1 Trans2 Set File Information response implementation. * Handles server responses to Trans2 set file information requests, used for * modifying file attributes, timestamps, and other file metadata in SMB1 protocol. * * @author mbechler */ public class Trans2SetFileInformationResponse extends SmbComTransactionResponse { /** * Constructs a Trans2SetFileInformationResponse with the specified configuration. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmNtHashAuthenticator.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; import org.bouncycastle.util.encoders.Hex; /** * Authenticator directly specifing the user's NT hash * * @author mbechler * */ public class NtlmNtHashAuthenticator extends NtlmPasswordAuthenticator { private static final long serialVersionUID = 4328214169536360351L; /** The NT hash for authentication */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/net/MimeTypeUtilTest.java
import org.codelibs.core.io.ResourceUtil; import org.codelibs.core.lang.ClassUtil; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; /** * @author shot */ public class MimeTypeUtilTest { /** * @see org.junit.rules.ExpectedException */ @Rule public ExpectedException exception = ExpectedException.none(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.7K bytes - Viewed (0) -
docs/es/docs/advanced/index.md
O podría ser que simplemente prefieras tomar otros cursos porque se adaptan mejor a tu estilo de aprendizaje. Algunos proveedores de cursos ✨ [**sponsorean FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, esto asegura el desarrollo continuo y saludable de FastAPI y su **ecosistema**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestIteratorGenerator.java
package com.google.common.collect.testing; import com.google.common.annotations.GwtCompatible; import java.util.Iterator; /** * Creates iterators to be tested. * * @param <E> the element type of the iterator. * @author George van den Driessche */ @GwtCompatible public interface TestIteratorGenerator<E> { Iterator<E> get();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 938 bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/TestPlatform.java
* limitations under the License. */ package com.google.common.math; import com.google.common.annotations.GwtCompatible; import org.jspecify.annotations.NullUnmarked; /** * @author Chris Povirk */ @GwtCompatible @NullUnmarked final class TestPlatform { static boolean intsCanGoOutOfRange() { return false; } static boolean isAndroid() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 1K bytes - Viewed (0)