- Sort Score
- Result 10 results
- Languages All
Results 5081 - 5090 of 7,602 for _class (0.07 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerException.java
import java.io.Serial; import org.apache.maven.api.annotations.Experimental; /** * An artifact could not correctly being deployed. * * @since 4.0.0 */ @Experimental public class ArtifactDeployerException extends MavenException { /** * */ @Serial private static final long serialVersionUID = 7421964724059077698L; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.4K bytes - Viewed (0) -
api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/Config.java
import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Experimental @Documented @Retention(RetentionPolicy.CLASS) @Target(ElementType.FIELD) public @interface Config { Source source() default Source.USER_PROPERTIES; String type() default "java.lang.String"; String defaultValue() default "";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 22 14:47:43 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/MavenExecutionException.java
* under the License. */ package org.apache.maven; import java.io.File; import org.apache.maven.project.ProjectBuildingException; /** */ public class MavenExecutionException extends Exception { private File pomFile; public MavenExecutionException(String message, File pomFile) { super(message); this.pomFile = pomFile; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCacheFactory.java
/** * Default implementation of {@link ModelCacheFactory}. * * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead */ @Singleton @Named @Deprecated(since = "4.0.0") public class DefaultModelCacheFactory implements ModelCacheFactory { @Override public ModelCache createCache(RepositorySystemSession session) { return DefaultModelCache.newInstance(session); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
tests/test_security_openid_connect.py
from fastapi.security.open_id_connect_url import OpenIdConnect from fastapi.testclient import TestClient from pydantic import BaseModel app = FastAPI() oid = OpenIdConnect(openIdConnectUrl="/openid") class User(BaseModel): username: str def get_current_user(oauth_header: str = Security(oid)): user = User(username=oauth_header) return user @app.get("/users/me")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 2.2K bytes - Viewed (0) -
tests/test_security_openid_connect_description.py
from fastapi.testclient import TestClient from pydantic import BaseModel app = FastAPI() oid = OpenIdConnect( openIdConnectUrl="/openid", description="OpenIdConnect security scheme" ) class User(BaseModel): username: str def get_current_user(oauth_header: str = Security(oid)): user = User(username=oauth_header) return user @app.get("/users/me")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 2.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotes.java
* limitations under the License. */ package gradlebuild.docs; import org.gradle.api.file.ConfigurableFileCollection; import org.gradle.api.file.RegularFileProperty; public abstract class ReleaseNotes { /** * The source markdown file for the release notes. */ public abstract RegularFileProperty getMarkdownFile(); /** * The base CSS file used by all documentation. */
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/RequestHeader.java
*/ package org.codelibs.fess.crawler.client.http; import java.io.Serializable; import org.codelibs.core.lang.StringUtil; /** * @author shinsuke * */ public class RequestHeader implements Serializable { private static final long serialVersionUID = 1L; private String name; private String value; public RequestHeader(final String name, final String value) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 1.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/SmbjEngine.java
import org.apache.http.impl.auth.NTLMEngine; import org.apache.http.impl.auth.NTLMEngineException; /** * SmbjEngine is a NTLM Engine implementation based on smbj. * * @author shinsuke * */ public class SmbjEngine implements NTLMEngine { @Override public String generateType1Msg(final String arg0, final String arg1) throws NTLMEngineException { // TODO Auto-generated method stub return null; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Shorts.java
* * @author Kevin Bourrillion * @since 1.0 */ @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public final class Shorts extends ShortsMethodsForWeb { private Shorts() {} /** * The number of bytes required to represent a primitive {@code short} value. * * <p><b>Java 8+ users:</b> use {@link Short#BYTES} instead.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 25.5K bytes - Viewed (0)