- Sort Score
- Result 10 results
- Languages All
Results 651 - 660 of 7,612 for class (0.03 sec)
-
guava-testlib/src/com/google/common/collect/testing/google/SortedSetMultimapTestSuiteBuilder.java
} @SuppressWarnings("rawtypes") // class literals @Override protected List<Class<? extends AbstractTester>> getTesters() { List<Class<? extends AbstractTester>> testers = copyToList(super.getTesters()); testers.add(SetMultimapAsMapTester.class); testers.add(SetMultimapEqualsTester.class); testers.add(SetMultimapPutTester.class); testers.add(SetMultimapPutAllTester.class);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.9K bytes - Viewed (0) -
docs/pt/docs/tutorial/request_files.md
* Ela possui uma interface <a href="https://docs.python.org/3/glossary.html#term-file-like-object" class="external-link" target="_blank">semelhante a arquivos</a> `async`. * Ela expõe um objeto python <a href="https://docs.python.org/3/library/tempfile.html#tempfile.SpooledTemporaryFile" class="external-link" target="_blank">`SpooledTemporaryFile`</a> que você pode repassar para bibliotecas que esperam um objeto com comportamento de arquivo. ### `UploadFile`
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java
return redirect(getUserBean().map(user -> { final Class<? extends FessAdminAction> actionClass = getAdminActionClass(user); if (actionClass != null) { return actionClass; } return AdminDashboardAction.class; }).orElse(AdminDashboardAction.class)); } public static Class<? extends FessAdminAction> getAdminActionClass(final FessUserBean user) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.7K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/SubscriberRegistry.java
* all super-classes, that are annotated with {@code @Subscribe}. The cache is shared across all * instances of this class; this greatly improves performance if multiple EventBus instances are * created and objects of the same class are registered on all of them. */ private static final LoadingCache<Class<?>, ImmutableList<Method>> subscriberMethodsCache =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:16:45 UTC 2024 - 10.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/SubscriberRegistryTest.java
assertEquals( ImmutableSet.of( Object.class, HierarchyFixtureInterface.class, HierarchyFixtureSubinterface.class, HierarchyFixtureParent.class, HierarchyFixture.class), SubscriberRegistry.flattenHierarchy(HierarchyFixture.class)); } private interface HierarchyFixtureInterface {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 5.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/searchResults.jsp
</c:if> <c:if test="${favoriteSupport}"> <div class="d-sm-none"></div> <span class="d-none d-sm-inline"> </span> <a href="#${doc.doc_id}" class="favorite"><i class="far fa-star"></i></a> <span class="favorited"><i class="fas fa-star"></i></span> </c:if> </div> </li> </c:forEach> </ol> <aside class="col-md-4 d-none d-md-block"> <%-- Side Content --%>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 09 04:29:42 UTC 2022 - 9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/PropertyContributorExtender.java
import org.apache.maven.api.spi.PropertyContributor; import org.apache.maven.execution.MavenExecutionRequest; /** * Extender that manages {@link PropertyContributor}. * * @since 4.0.0 */ @Named @Singleton class PropertyContributorExtender implements MavenExecutionRequestExtender { private final Lookup lookup; @Inject PropertyContributorExtender(Lookup lookup) { this.lookup = lookup; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
docs_src/security/tutorial003_an_py310.py
def fake_hash_password(password: str): return "fakehashed" + password oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token") class User(BaseModel): username: str email: str | None = None full_name: str | None = None disabled: bool | None = None class UserInDB(User): hashed_password: str def get_user(db, username: str): if username in db: user_dict = db[username]
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Mar 26 16:56:53 UTC 2024 - 2.5K bytes - Viewed (0) -
scripts/label_approved.py
from pydantic import BaseModel, SecretStr from pydantic_settings import BaseSettings class LabelSettings(BaseModel): await_label: str | None = None number: int default_config = {"approved-2": LabelSettings(await_label="awaiting-review", number=2)} class Settings(BaseSettings): github_repository: str token: SecretStr debug: bool | None = False
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 13:58:30 UTC 2024 - 2.2K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ModuleIdentityExtension.kt
import org.gradle.api.provider.Property import org.gradle.api.tasks.TaskContainer import org.gradle.api.tasks.bundling.Jar import org.gradle.kotlin.dsl.* import org.gradle.util.GradleVersion abstract class ModuleIdentityExtension(val tasks: TaskContainer, val objects: ObjectFactory) { abstract val version: Property<GradleVersion> abstract val baseName: Property<String>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 2.1K bytes - Viewed (0)