- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 4,626 for Author (0.12 sec)
-
guava/src/com/google/common/util/concurrent/FakeTimeLimiter.java
* time-limited would be extremely annoying, so this gives you a time-limiter you can easily swap in * for your real time-limiter while you're debugging. * * @author Kevin Bourrillion * @author Jens Nyman * @since 1.0 */ @J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault public final class FakeTimeLimiter implements TimeLimiter {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 3.5K bytes - Viewed (0) -
android/guava/src/com/google/common/annotations/GwtCompatible.java
* to return a value with a GWT serializable type. * * <p>Note that a {@code GwtCompatible} type may have some {@link GwtIncompatible} methods. * * @author Charles Fry * @author Hayward Chan */ @Retention(RetentionPolicy.CLASS) @Target({ElementType.TYPE, ElementType.METHOD}) @Documented @GwtCompatible public @interface GwtCompatible { /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Dec 16 19:54:45 UTC 2020 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java
import jakarta.validation.constraints.Max; import jakarta.validation.constraints.Min; import jakarta.validation.constraints.Size; /** * @author codelibs * @author Shunji Makino */ public class CreateForm { @ValidateTypeFailure public Integer crudMode; @Size(max = 100) public String hostname; @Min(value = 0)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java
import jakarta.validation.constraints.Max; import jakarta.validation.constraints.Min; import jakarta.validation.constraints.Size; /** * @author codelibs * @author Keiichi Watanabe */ public class CreateForm { @ValidateTypeFailure public Integer crudMode; @Size(max = 100) public String hostname; @Min(value = 0)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java
import jakarta.validation.constraints.Max; import jakarta.validation.constraints.Min; import jakarta.validation.constraints.Size; /** * @author codelibs * @author jflute */ public class CreateForm { @ValidateTypeFailure public Integer crudMode; @Required @Size(max = 100) public String term; @Required
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/Hashing.java
import com.google.common.primitives.Ints; import javax.annotation.CheckForNull; /** * Static methods for implementing hash-based collections. * * @author Kevin Bourrillion * @author Jesse Wilson * @author Austin Appleby */ @GwtCompatible @ElementTypesAreNonnullByDefault final class Hashing { private Hashing() {} /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java
*/ package org.codelibs.fess.app.web.admin.general; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; /** * @author shinsuke */ public class MailForm { public String incrementalCrawling; public String dayForCleanup; public String crawlingThreadCount; public String searchLog;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvTimestamp.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.ntlmssp.av; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class AvTimestamp extends AvPair { /** * @param raw */ public AvTimestamp ( byte[] raw ) { super(AvPair.MsvAvTimestamp, raw); } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
docs/zh/docs/deployment/cloud.md
# 在云上部署 FastAPI 您几乎可以使用**任何云服务商**来部署 FastAPI 应用程序。 在大多数情况下,主要的云服务商都有部署 FastAPI 的指南。 ## 云服务商 - 赞助商 一些云服务商 ✨ [**赞助 FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨,这确保了FastAPI 及其**生态系统**持续健康地**发展**。 这表明了他们对 FastAPI 及其**社区**(您)的真正承诺,因为他们不仅想为您提供**良好的服务**,而且还想确保您拥有一个**良好且健康的框架**:FastAPI。 🙇 您可能想尝试他们的服务并阅读他们的指南:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Jan 28 10:38:34 UTC 2024 - 990 bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestStringMapGenerator.java
import java.util.List; import java.util.Map; import java.util.Map.Entry; /** * Implementation helper for {@link TestMapGenerator} for use with maps of strings. * * @author Chris Povirk * @author Jared Levy * @author George van den Driessche */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class TestStringMapGenerator implements TestMapGenerator<String, String> { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 2.4K bytes - Viewed (0)