Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for publishTest (0.22 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/AbstractMavenPublisher.java

             */
            public String getVersion() {
                return snapshotMetadata.getVersioning().getSnapshotVersions().get(0).getVersion();
            }
        }
    
        /**
         * Publishes artifacts for a single Maven module.
         */
        private static class ModuleArtifactPublisher {
            private final NetworkOperationBackOffAndRetry<Void> networkOperationCaller = new NetworkOperationBackOffAndRetry<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/NativeAlignmentWithJavaPlatformResolveIntegrationTest.groovy

    @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value="maven")
    class NativeAlignmentWithJavaPlatformResolveIntegrationTest extends AbstractModuleDependencyResolveTest {
        def "publishes a platform with native alignment"() {
            settingsFile << """
                rootProject.name = 'root'
                include "platform"
                include "core"
                include "lib"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

         *
         * To react to changes in Kotlin sources, [KaResolveExtension] may subscribe to Analysis API modification topics:
         * `KotlinModificationTopics`. If the [KaResolveExtension] both subscribes to and publishes modification events, care needs to be taken
         * that no cycles are introduced. In general, the [KaResolveExtension] should never publish an event for a module A in a listener for
         * the same module A.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            tokens
        }
    
        /**
         * Publishes ivy.xml plus all artifacts with different content to previous publication.
         */
        IvyFileModule publishWithChangedContent() {
            publishCount++
            publish()
        }
    
        String getPublicationDate() {
            return String.format("2010010112%04d", publishCount)
        }
    
        /**
         * Publishes ivy.xml (if enabled) plus all artifacts
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapiv3/controller.go

    	listers "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1"
    	"k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder"
    )
    
    // Controller watches CustomResourceDefinitions and publishes OpenAPI v3
    type Controller struct {
    	crdLister  listers.CustomResourceDefinitionLister
    	crdsSynced cache.InformerSynced
    
    	// To allow injection for testing.
    	syncFn func(string) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    	listers "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1"
    	"k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder"
    )
    
    // Controller watches CustomResourceDefinitions and publishes validation schema
    type Controller struct {
    	crdLister  listers.CustomResourceDefinitionLister
    	crdsSynced cache.InformerSynced
    
    	// To allow injection for testing.
    	syncFn func(string) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    image::plugin-portal-plugin-page.png[]
    
    === Sources & Javadoc ===
    
    The Plugin Publish Plugin automatically generates and publishes the <<building_java_projects.adoc#sec:java_packaging,Javadoc, and sources JARs>> for your plugin publication.
    
    === Sign artifacts ===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

            )
    
            then:
            succeeds "help"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/26468")
        def "publishes jar type and extension when publishing dependency on artifact with classifier"() {
            given:
            mavenRepo.module("org", "foo").artifact(classifier: "cls").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    # Gradle Module Metadata 1.1 specification
    
    _Gradle Module Metadata 1.1 is supported in Gradle 6._
    
    Gradle publishes Gradle Module Metadata along with traditional metadata. Gradle Module Metadata is automatically consumed when available.
    
    ## Goal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/runtime/mbarrier.go

    // but use the old value of arena_used. In this case, tracing will not
    // mark the object, even though it's reachable. However, the mutator
    // is guaranteed to execute a write barrier when it publishes the
    // pointer, so it will take care of marking the object. A general
    // consequence of this is that the garbage collector may cache the
    // value of mheap_.arena_used. (See issue #9984.)
    //
    //
    // Stack writes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top