- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 1,188 for extentions (0.83 sec)
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
Set<String> exportedPackages = new HashSet<>(coreEntry.getExportedPackages()); for (CoreExtensionEntry extension : extensions) { exportedArtifacts.addAll(extension.getExportedArtifacts()); exportedPackages.addAll(extension.getExportedPackages()); } final CoreExports exports = new CoreExports(containerRealm, exportedArtifacts, exportedPackages);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingHelper.java
* {@code null}. * @return The record with the project realm and extension artifact filter, never {@code null}. * @throws PluginResolutionException If any build extension could not be resolved. */ ProjectRealmCache.CacheRecord createProjectRealm(MavenProject project, Model model, ProjectBuildingRequest request)Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java
} private static String getKey(Plugin plugin, boolean extension) { String version = ArtifactUtils.toSnapshotVersion(plugin.getVersion()); return (extension ? "extension>" : "plugin>") + plugin.getGroupId() + ":" + plugin.getArtifactId() + ":" + version; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.5K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
} } private fun containsSrcFileWithString( srcRoot: File, content: String, exceptions: List<String>, ): Boolean { srcRoot.walkTopDown().forEach { file -> if (file.extension == "groovy" || file.extension == "java") { val originalText = file.readText() val text = originalTextRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 16 01:27:05 UTC 2025 - 14.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionListener.java
* under the License. */ package org.apache.maven.execution; import org.apache.maven.lifecycle.LifecycleExecutionException; /** * <p> * Extension point that allows build extensions observe and possibly veto project build execution. * </p> * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice. * * @see ExecutionListener
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/ArtifactFilterManagerDelegate.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven; import java.util.Set; /** * @deprecated use {@code META-INF/maven/extension.xml} to define artifacts exported by Maven core extensions. */ @Deprecated public interface ArtifactFilterManagerDelegate { void addExcludes(Set<String> excludes); void addCoreExcludes(Set<String> excludes);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.strict-compile.gradle.kts
* See the License for the specific language governing permissions and * limitations under the License. */ import gradlebuild.jvm.extension.StrictCompileExtension extensions.create<StrictCompileExtension>("strictCompile") val strictCompilerArgs = listOf("-Werror", "-Xlint:all", "-Xlint:-options", "-Xlint:-serial", "-Xlint:-classfile", "-Xlint:-try")
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 15 20:21:31 UTC 2023 - 1.2K bytes - Viewed (0) -
docs/en/docs/how-to/extending-openapi.md
For example, let's add <a href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md#x-logo" class="external-link" target="_blank">ReDoc's OpenAPI extension to include a custom logo</a>. ### Normal **FastAPI** { #normal-fastapi } First, write all your **FastAPI** application as normally:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 3.4K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts
import gradlebuild.integrationtests.createTestTask import gradlebuild.integrationtests.extension.IntegrationTestExtension import gradlebuild.integrationtests.setSystemPropertiesOfTestJVM plugins { java id("gradlebuild.dependency-modules") id("gradlebuild.jvm-compile") } extensions.create<IntegrationTestExtension>("integTest").apply { generateDefaultAutoTestedSamplesTest.convention(true)Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 16:39:23 UTC 2025 - 2.4K bytes - Viewed (5) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/TypeProvider.java
/** * Service provider interface for registering custom {@link Type} implementations. * <p> * This interface allows plugins and extensions to define and register additional artifact types * beyond the standard ones provided by Maven (like jar, war, pom, etc.). Types define how artifacts * are handled, including their default extension, classifier, and language. * <p> * Implementations of this interface will be discovered through the Java ServiceLoader mechanismRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.1K bytes - Viewed (0)