- Sort Score
- Result 10 results
- Languages All
Results 4631 - 4640 of 7,602 for _class (0.04 sec)
-
guava/src/com/google/common/net/ParametricNullness.java
import java.lang.annotation.Retention; import java.lang.annotation.Target; /** * Annotates a "top-level" type-variable usage that takes its nullness from the type argument * supplied by the user of the class. For example, {@code Multiset.Entry.getElement()} returns * {@code @ParametricNullness E}, which means: * * <ul> * <li>{@code getElement} on a {@code Multiset.Entry<@NonNull String>} returns {@code @NonNull
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/cache/ParametricNullness.java
import java.lang.annotation.Retention; import java.lang.annotation.Target; /** * Annotates a "top-level" type-variable usage that takes its nullness from the type argument * supplied by the user of the class. For example, {@code Multiset.Entry.getElement()} returns * {@code @ParametricNullness E}, which means: * * <ul> * <li>{@code getElement} on a {@code Multiset.Entry<@NonNull String>} returns {@code @NonNull
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/pac/Pac.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.util.Hexdump; @SuppressWarnings ( "javadoc" ) public class Pac { private static final Logger log = LoggerFactory.getLogger(Pac.class); private PacLogonInfo logonInfo; private PacCredentialType credentialType; private PacSignature serverSignature; private PacSignature kdcSignature;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.5K bytes - Viewed (0) -
guava/src/com/google/common/escape/ParametricNullness.java
import java.lang.annotation.Retention; import java.lang.annotation.Target; /** * Annotates a "top-level" type-variable usage that takes its nullness from the type argument * supplied by the user of the class. For example, {@code Multiset.Entry.getElement()} returns * {@code @ParametricNullness E}, which means: * * <ul> * <li>{@code getElement} on a {@code Multiset.Entry<@NonNull String>} returns {@code @NonNull
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java
.build(); } static ArtifactFactoryRequestBuilder builder() { return new ArtifactFactoryRequestBuilder(); } @NotThreadSafe class ArtifactFactoryRequestBuilder { private Session session; private String groupId; private String artifactId; private String version; private String classifier;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 7.5K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java
import java.util.Set; import java.util.TreeSet; import org.apache.maven.api.di.Named; @SupportedAnnotationTypes("org.apache.maven.api.di.Named") @SupportedSourceVersion(SourceVersion.RELEASE_17) public class DiIndexProcessor extends AbstractProcessor { private final Set<String> processedClasses = new HashSet<>(); @Override public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Sep 16 06:25:19 UTC 2024 - 6.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java
import org.codehaus.plexus.PlexusContainer; import org.codehaus.plexus.testing.PlexusTest; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; @PlexusTest @Deprecated class MavenMetadataSourceTest { @Inject private RepositorySystem repositorySystem; @Inject PlexusContainer container; @Test @Disabled
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblemCollector.java
*/ @Deprecated(since = "4.0.0") class DefaultModelProblemCollector implements ModelProblemCollectorExt { private final ModelBuildingResult result; private List<ModelProblem> problems; private String source; private Model sourceModel; private Model rootModel; private Set<ModelProblem.Severity> severities = EnumSet.noneOf(ModelProblem.Severity.class);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/ko/docs/tutorial/index.md
또한 향후에도 참조 자료로 쓰일 수 있도록 작성되었습니다. 그러므로 필요할 때에 다시 돌아와서 원하는 것을 정확히 찾을 수 있습니다. ## 코드 실행하기 모든 코드 블록은 복사하여 바로 사용할 수 있습니다(실제로 테스트된 파이썬 파일입니다). 예제를 실행하려면 코드를 `main.py` 파일에 복사하고 다음을 사용하여 `uvicorn`을 시작합니다: <div class="termy"> ```console $ uvicorn main:app --reload <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 10:57:17 UTC 2024 - 3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/HasKotlinFlagsMetadataQuery.kt
else -> error("Unsupported Kotlin metadata type '${this::class}'") } private fun hasClassAttribute(kmClassSupplier: Supplier<KmClass>, memberType: MemberType, jvmSignature: String, predicate: AttributePredicate): Boolean { val kmClass = kmClassSupplier.get() return when (memberType) { MemberType.TYPE -> hasTypeAttribute(kmClass, jvmSignature, predicate)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Aug 21 11:57:24 UTC 2024 - 5.9K bytes - Viewed (0)