Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 465 for jar1 (0.37 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-jar-plugin/0.1/maven-jar-plugin-0.1.jar

    Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-jar-plugin 0.1 jar false true jar Does nothing. runtime false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/ItMojo.class package org.apache.maven.plugin.coreit; public synchronized class ItMojo extends org.apache.maven.plugin.AbstractMojo...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    val coreRuntimeClasspath by libraryResolver(listOf(coreRuntimeOnly))
    coreRuntimeClasspath.description = "Resolves to all Jars, including transitives, that make up the core of the distribution (needed to decide if a Jar goes into 'plugins' or not)"
    val agentsRuntimeClasspath by libraryResolver(listOf(agentsRuntimeOnly))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			fieldSelector: fields.ParseSelectorOrDie("spec.nodeName=t3-bar1"),
    			indexFields:   []string{"spec.nodeName"},
    			watchTests: []*testWatchStruct{
    				{baseNamespacedPod("t3-foo1", "t3-ns1"), false, ""},
    				{baseNamespacedPod("t3-foo2", "t3-ns2"), false, ""},
    				{baseNamespacedPodAssigned("t3-foo1", "t3-ns1", "t3-bar1"), true, watch.Added},
    				{baseNamespacedPodAssigned("t3-foo2", "t3-ns2", "t3-bar1"), true, watch.Added},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/MultiReleaseClasspathElementTransformForLegacy.java

    /**
     * Transformation for legacy instrumentation when transformed JARs are part of the classpath.
     * This is still used when TestKit and TAPI run Gradle in embedded or debug mode.
     * <p>
     * This transformation filters out not yet supported versioned directories of the multi-release JARs.
     */
    class MultiReleaseClasspathElementTransformForLegacy extends BaseClasspathElementTransform {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/services/NativeServicesInitializationTest.groovy

            URL[] jars = [
                jar(NativeServices),
                jar(ServiceRegistration),
                jar(ServiceRegistry),
                jar(Native),
                jar(LoggerFactory),
                jar(Chmod),
                jar(TemporaryFileProvider),
                jar(Cast),
                jar(Inject),
                jar(Stoppable)
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 08:51:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactoryForLegacy.java

                try (ZipInput entries = FileZipInput.create(source)) {
                    for (ZipEntry entry : entries) {
                        String entryName = entry.getName();
                        if (isJarSignatureFile(entryName)) {
                            // TODO(mlopatkin) Manifest of the signed JAR contains signature information and must be the first entry in the JAR.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            resourceFile.text = "bar"
            testResources.zipTo(file("libs/bar.jar"))
            resourceFile.text = "foo"
            testResources.zipTo(file("libs/foo.jar"))
            buildFile << """
                dependencies {
                    implementation files("libs/bar.jar")
                    implementation files("libs/foo.jar")
                }
            """
    
            when:
            run 'installDist'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

            file("jars/first").mkdirs()
            file("jars/second").mkdirs()
            def jar = file("jars/first/test-plugin-0.2.jar").with {
                it.createFile()
            }
            GFileUtils.copyFile(jar, file("jars/second/test-plugin-0.2.jar"))
    
            when:
            buildFile.text = """
                buildscript {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java

        //
        // or we can show it graphically as:
        //
        // p1 ---> p0 --> super model
        //
        // p1 has a depMgmt section that specifies versions 1.0 of jars "a" & "b"
        // jar "a" has a transitive dependency on 2.0 of jar "b", but maven should
        // prefer to use version 1.0.
        //
        // ----------------------------------------------------------------------
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/KotlinDslTestProjectInitiation.groovy

            withBuildSrc()
            def someJar = withEmptyJar("classes_some.jar")
            def settingsJar = withEmptyJar("classes_settings.jar")
            def rootJar = withEmptyJar("classes_root.jar")
            def aJar = withEmptyJar("classes_a.jar")
            def bJar = withEmptyJar("classes_b.jar")
            def precompiledJar = withEmptyJar("classes_b_precompiled.jar")
    
            def some = withFile("some.gradle.kts", getBuildScriptDependency(someJar))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top