- Sort Score
- Result 10 results
- Languages All
Results 4101 - 4110 of 7,967 for aclass (0.12 sec)
-
guava/src/com/google/common/cache/AbstractCache.java
import java.util.concurrent.ConcurrentMap; import java.util.concurrent.ExecutionException; /** * This class provides a skeletal implementation of the {@code Cache} interface to minimize the * effort required to implement this interface. * * <p>To implement a cache, the programmer needs only to extend this class and provide an * implementation for the {@link #put} and {@link #getIfPresent} methods. {@link #getAllPresent} is
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 9.1K bytes - Viewed (0) -
guava/src/com/google/common/graph/AbstractNetwork.java
import java.util.Map; import java.util.Optional; import java.util.Set; import javax.annotation.CheckForNull; /** * This class provides a skeletal implementation of {@link Network}. It is recommended to extend * this class rather than implement {@link Network} directly. * * <p>The methods implemented in this class should not be overridden unless the subclass admits a * more efficient implementation. * * @author James Sexton
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Mar 13 18:17:09 UTC 2024 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbEnumerationUtil.java
import jcifs.internal.smb1.trans.SmbComTransaction; import jcifs.internal.smb1.trans.SmbComTransactionResponse; /** * @author mbechler * */ final class SmbEnumerationUtil { private static final Logger log = LoggerFactory.getLogger(SmbEnumerationUtil.class); /** * */ private SmbEnumerationUtil () {}
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:41:19 UTC 2019 - 12.5K bytes - Viewed (0) -
docs_src/cookie_param_models/tutorial001_py310.py
from fastapi import Cookie, FastAPI from pydantic import BaseModel app = FastAPI() class Cookies(BaseModel): session_id: str fatebook_tracker: str | None = None googall_tracker: str | None = None @app.get("/items/") async def read_items(cookies: Cookies = Cookie()):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 303 bytes - Viewed (0) -
cmd/signature-v4-utils.go
// globalMinioDefaultRegion, handle it. if reqRegion == "US" { reqRegion = globalMinioDefaultRegion } return reqRegion == confRegion } // check if the access key is valid and recognized, additionally // also returns if the access key is owner/admin. func checkKeyValid(r *http.Request, accessKey string) (auth.Credentials, bool, APIErrorCode) { cred := globalActiveCred if cred.AccessKey != accessKey {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 22:26:38 UTC 2024 - 9.1K bytes - Viewed (0) -
src/main/webapp/css/admin/adminlte.min.css.map
background-color: transparent;\n}\n\n[class*=\"sidebar-dark-\"] .nav-header {\n background-color: inherit;\n color: #d0d4db;\n}\n\n[class*=\"sidebar-dark-\"] .sidebar a {\n color: #c2c7d0;\n}\n\n[class*=\"sidebar-dark-\"] .sidebar a:hover, [class*=\"sidebar-dark-\"] .sidebar a:focus {\n text-decoration: none;\n}\n\n[class*=\"sidebar-dark-\"] .nav-treeview > .nav-item > .nav-link {\n color: #c2c7d0;\n}\n\n[class*=\"sidebar-dark-\"] .nav-treeview > .nav-item > .nav-link:hover, [class*=\"sidebar-dark-\"] .nav-treeview...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 3.7M bytes - Viewed (1) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
import org.codelibs.fess.util.OptionalUtil; import org.dbflute.optional.OptionalEntity; import org.dbflute.util.DfTypeUtil; import jakarta.annotation.PostConstruct; public class LdapManager { private static final Logger logger = LogManager.getLogger(LdapManager.class); protected ThreadLocal<DirContextHolder> contextLocal = new ThreadLocal<>(); protected volatile boolean isBind = false; protected FessConfig fessConfig;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 65.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.mail.CardView; import org.dbflute.mail.send.supplement.SMailPostingDiscloser; public class NotificationHelper { private static final Logger logger = LogManager.getLogger(NotificationHelper.class); protected static final char LF = '\n'; public void send(final CardView cardView, final SMailPostingDiscloser discloser) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/FakeTicker.java
* * <p>The ticker can be configured so that the time is incremented whenever {@link #read} is called: * see {@link #setAutoIncrementStep}. * * <p>This class is thread-safe. * * @author Jige Yu * @since 10.0 */ @ElementTypesAreNonnullByDefault @GwtCompatible public class FakeTicker extends Ticker { private final AtomicLong nanos = new AtomicLong(); private volatile long autoIncrementStepNanos;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 4.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/SynchronizedQueueTest.java
* * @author Kurt Alfred Kluever */ public class SynchronizedQueueTest extends TestCase { protected Queue<String> create() { TestQueue<String> inner = new TestQueue<>(); Queue<String> outer = Synchronized.queue(inner, inner.mutex); outer.add("foo"); // necessary because we try to remove elements later on return outer; } private static final class TestQueue<E> implements Queue<E> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Aug 19 20:50:58 UTC 2024 - 4.7K bytes - Viewed (0)