- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 765 for Plugins (0.12 sec)
-
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
void testBuildReader() throws Exception { PluginDescriptor pd = build("/plugin.xml"); assertEquals("org.apache.maven.plugins", pd.getGroupId()); assertEquals("maven-jar-plugin", pd.getArtifactId()); assertEquals("2.3-SNAPSHOT", pd.getVersion()); assertEquals("jar", pd.getGoalPrefix()); assertEquals("plugin-description", pd.getDescription()); assertFalse(pd.isIsolatedRealm());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
cni/pkg/nodeagent/netns_linux.go
// See the License for the specific language governing permissions and // limitations under the License. package nodeagent import ( "fmt" "runtime" "sync" netns "github.com/containernetworking/plugins/pkg/ns" "golang.org/x/sys/unix" ) type NetnsWrapper struct { innerNetns netns.NetNS inode uint64 } func (n *NetnsWrapper) Inode() uint64 { return n.inode }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jan 31 10:05:36 UTC 2024 - 2.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java
import dev.adamko.dokkatoo.dokka.parameters.DokkaSourceSetSpec; import dev.adamko.dokkatoo.dokka.plugins.DokkaHtmlPluginParameters; import dev.adamko.dokkatoo.formats.DokkatooHtmlPlugin; import dev.adamko.dokkatoo.tasks.DokkatooGenerateTask; import gradlebuild.basics.BuildEnvironmentKt; import org.gradle.api.NamedDomainObjectContainer; import org.gradle.api.Plugin; import org.gradle.api.Project; import org.gradle.api.Task;
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 7.7K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts
// For the configuration cache module "it.unimi.dsi.fastutil.objects.ReferenceArrayList", "it.unimi.dsi.fastutil.objects.ReferenceOpenHashSet", ) ) plugins.withId("java-base") { dependencies { attributesSchema { attribute(minified) } // It would be nice if we could be more selective about which variants to apply this to.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 4.2K bytes - Viewed (0) -
architecture/README.md
## Platform architecture Gradle is arranged into several coarse-grained components called "platforms". Each platform provides support for some kind of automation, such as building JVM software or building Gradle plugins. Most platforms typically build on the features of other platforms. By understanding the Gradle platforms and their relationships, you can get a feel for where in the Gradle source a particular feature might be implemented.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu May 02 06:42:46 UTC 2024 - 2.4K bytes - Viewed (0) -
build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt
import org.gradle.api.internal.tasks.testing.TestExecutionSpec import org.gradle.api.internal.tasks.testing.TestResultProcessor plugins { id("gradlebuild.ci-reporting") } subprojects { apply(plugin = "gradlebuild.ci-reporting") } project(":failed-test-with-leftover").configureTestWithLeftover(false, true)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 14 12:35:52 UTC 2023 - 10.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/extensions.kt
import jetbrains.buildServer.configs.kotlin.failureConditions.failOnText import jetbrains.buildServer.configs.kotlin.ui.add import java.util.Locale const val pluginPortalUrlOverride = "-Dorg.gradle.internal.plugins.portal.url.override=%gradle.plugins.portal.url%" fun BuildSteps.customGradle(init: GradleBuildStep.() -> Unit, custom: GradleBuildStep.() -> Unit): GradleBuildStep = GradleBuildStep(init) .apply(custom) .also {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 10 03:25:26 UTC 2024 - 13.2K bytes - Viewed (0) -
okhttp/build.gradle.kts
import com.vanniktech.maven.publish.JavadocJar import com.vanniktech.maven.publish.KotlinJvm plugins { kotlin("jvm") kotlin("plugin.serialization") id("org.jetbrains.dokka") id("com.vanniktech.maven.publish.base") id("binary-compatibility-validator") } // Build & use okhttp3/internal/-InternalVersion.kt val copyKotlinTemplates = tasks.register<Copy>("copyKotlinTemplates") { from("src/main/kotlinTemplates")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 5.6K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle
import gradlebuild.binarycompatibility.transforms.ExplodeZipAndFindJars import gradlebuild.binarycompatibility.transforms.FindGradleClasspath import gradlebuild.binarycompatibility.transforms.FindGradleJars plugins { id("gradlebuild.module-identity") } repositories { ['distributions', 'distributions-snapshots'].each { distUrl -> ivy { name 'Gradle distributions'
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 08:15:16 UTC 2024 - 9.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/RemoteRepository.java
import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.model.ModelBase; /** * <p>A <dfn>remote repository</dfn> is a central or distributed location * from which Maven can download project dependencies, plugins, and other * build artifacts. When Maven cannot find an artifact in the local * repository, it attempts to retrieve it from one or more remote * repositories.</p> *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.3K bytes - Viewed (0)