- Sort Score
- Result 10 results
- Languages All
Results 1621 - 1630 of 3,253 for classof (0.07 sec)
-
fastapi/applications.py
from starlette.types import ASGIApp, Lifespan, Receive, Scope, Send from typing_extensions import Annotated, Doc, deprecated AppType = TypeVar("AppType", bound="FastAPI") class FastAPI(Starlette): """ `FastAPI` app class, the main entrypoint to use FastAPI. Read more in the [FastAPI docs for First Steps](https://fastapi.tiangolo.com/tutorial/first-steps/). ## Example ```python
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 17 04:52:31 UTC 2024 - 172.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
import static org.apache.maven.cling.invoker.Utils.toProperties; /** * Plexus invoker implementation, that boots up Plexus DI container. This class expects fully setup ClassWorld via constructor. * * @param <O> the options type * @param <R> the request type * @param <C> the context type */ public abstract class LookupInvoker< O extends Options, R extends InvokerRequest<O>, C extends LookupInvoker.LookupInvokerContext<O, R, C>>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java
* repository system instance needed, new instance of this class must be created. For proper shut down of returned * repository system instance(s) use {@link RepositorySystem#shutdown()} method on supplied instance(s). * <p> * Since Resolver 2.0 this class offers access to various components via public getters, and allows even partial object * graph construction. * <p>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 45.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
import org.dbflute.cbean.result.PagingResultBean; import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; public class FailureUrlService { private static final Logger logger = LogManager.getLogger(FailureUrlService.class); @Resource protected FailureUrlBhv failureUrlBhv; @Resource protected FessConfig fessConfig;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 24 01:20:42 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
import org.lastaflute.web.Execute; import org.lastaflute.web.response.JsonResponse; import jakarta.annotation.Resource; public class ApiAdminUserAction extends FessApiAdminAction { private static final Logger logger = LogManager.getLogger(ApiAdminUserAction.class); @Resource private UserService userService; // GET /api/admin/user/settings // POST /api/admin/user/settings @Execute
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5.8K bytes - Viewed (0) -
regression-test/src/androidTest/java/okhttp/regression/compare/AndroidHttpEngineTest.kt
import org.junit.Assert.assertEquals import org.junit.Assert.assertTrue import org.junit.Test import org.junit.runner.RunWith /** * Android HttpEngine. */ @RunWith(AndroidJUnit4::class) @SdkSuppress(minSdkVersion = 34) class AndroidHttpEngineTest { val context = InstrumentationRegistry.getInstrumentation().context val cacheDir = context.cacheDir.resolve("httpEngine").also { it.mkdirs() }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 24 13:19:43 UTC 2024 - 6.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/ConcurrentMapReplaceEntryTester.java
*/ @GwtCompatible @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") @ElementTypesAreNonnullByDefault public class ConcurrentMapReplaceEntryTester<K, V> extends AbstractMapTester<K, V> { @Override protected ConcurrentMap<K, V> getMap() { return (ConcurrentMap<K, V>) super.getMap(); } @MapFeature.Require(SUPPORTS_PUT)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 20:00:30 UTC 2024 - 5.4K bytes - Viewed (0) -
docs/em/docs/python-types.md
{!../../docs_src/python_types/tutorial010.py!} ``` & โคด๏ธ, ๐, ๐ ๐ค ๐ ๐จโ๐จ ๐โ๐ฆบ: <img src="/img/python-types/image06.png"> ## Pydantic ๐ท <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> ๐ ๐ ๐ญ ๐ ๐ฌ. ๐ ๐ฃ "๐ " ๐ฝ ๐ โฎ๏ธ ๐ข. & ๐ ๐ข โ๏ธ ๐. โคด๏ธ ๐ โ ๐ ๐ ๐ โฎ๏ธ ๐ฒ & โซ๏ธ ๐ โ ๐ฒ, ๐ ๐ซ โ ๐ (๐ฅ ๐ ๐ผ) & ๐ค ๐ ๐ โฎ๏ธ ๐ ๐ฝ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/IngestFactory.java
*/ package org.codelibs.fess.ingest; import java.util.Arrays; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; public class IngestFactory { private static final Logger logger = LogManager.getLogger(IngestFactory.class); private Ingester[] ingesters = {}; public synchronized void add(final Ingester ingester) { if (logger.isDebugEnabled()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java
import org.codelibs.fess.app.web.api.FessApiAction; import org.codelibs.fess.exception.InvalidAccessTokenException; public abstract class FessApiAdminAction extends FessApiAction { private static final Logger logger = LogManager.getLogger(FessApiAdminAction.class); @Override protected boolean isAccessAllowed() { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.4K bytes - Viewed (0)