- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 159 for Qualifier (0.31 seconds)
-
api/maven-api-di/src/main/java/org/apache/maven/api/di/Qualifier.java
/** * Meta-annotation that marks other annotations as qualifier annotations. * <p> * Qualifiers are used to distinguish between multiple beans of the same type, * allowing for more precise control over which implementation should be injected. * Custom qualifier annotations should be annotated with {@code @Qualifier}. * <p> * Example of creating a custom qualifier: * <pre> * {@literal @}Qualifier * {@literal @}Retention(RUNTIME)Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jan 30 23:28:59 GMT 2025 - 1.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/QualifiedVersion.java
return revision; } public boolean hasQualifier() { return qualifier != null; } public Qualifier getQualifier() { return qualifier; } public boolean isSnapshot() { return this.qualifier != null && this.qualifier.level == QualifierLevel.SNAPSHOT; } public QualifiedVersion withoutQualifier() {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 06:25:29 GMT 2021 - 5.9K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/DefaultArtifactVersion.java
if (buildNumber == null) { qualifier = part2; } } else { qualifier = part2; } } if ((!part1.contains(".")) && !part1.startsWith("0")) { majorVersion = tryParseInt(part1); if (majorVersion == null) { // qualifier is the whole version, including "-"
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
} /** * Gets the name ID name qualifier. * @return The name ID name qualifier. */ public String getNameidNameQualifier() { return nameidNameQualifier; } /** * Gets the name ID SP name qualifier. * @return The name ID SP name qualifier. */ public String getNameidSPNameQualifier() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.4K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 26.4K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/VersionPropertiesLoader.java
); } String qualifier = providers.systemProperty("build.version_qualifier") .orElse("") .forUseAtConfigurationTime() .get(); if (qualifier.isEmpty() == false) { if (qualifier.matches("(alpha|beta|rc)\\d+") == false) { throw new IllegalStateException("Invalid qualifier: " + qualifier); }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Aug 09 07:39:30 GMT 2021 - 2.7K bytes - Click Count (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Named.java
* </pre> * * @see Inject * @see Qualifier * @since 4.0.0 */ @Qualifier @Retention(RUNTIME) @Documented public @interface Named { /** * The name identifier for the annotated element. * <p> * If no value is specified, the default empty string will be used. * When used as a qualifier, this value helps distinguish between differentCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jan 30 23:28:59 GMT 2025 - 1.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttp.kt
* headers. * * Official OkHttp releases follow [semantic versioning][semver]. Versions with the `-SNAPSHOT` * qualifier are not unique and should only be used in development environments. If you create * custom builds of OkHttp please include a qualifier your version name, like "4.7.0-mycompany.3". * The version string is configured in the root project's `build.gradle`. *
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jul 28 20:33:04 GMT 2025 - 1.5K bytes - Click Count (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java
assertEquals(buildnumber, artifactVersion.getBuildNumber(), parsed + "check build number"); assertEquals(qualifier, artifactVersion.getQualifier(), parsed + "check qualifier"); assertEquals(version, artifactVersion.toString(), "check " + version + " string value"); } @Test void testVersionParsing() {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 9.6K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ReleasedVersionsDetails.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Sep 10 06:04:09 GMT 2025 - 3.3K bytes - Click Count (0)