Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for publishTest (0.23 sec)

  1. pilot/pkg/features/telemetry.go

    		"Metric expiry graceful deletion interval. No-op if METRIC_ROTATION_INTERVAL is disabled.").Get()
    
    	EnableControllerQueueMetrics = env.Register("ISTIO_ENABLE_CONTROLLER_QUEUE_METRICS", false,
    		"If enabled, publishes metrics for queue depth, latency and processing times.").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/plugins/IvyPublishPlugin.java

            repositories.all(repository -> tasks.register(publishAllToSingleRepoTaskName(repository), publish -> {
                publish.setDescription("Publishes all Ivy publications produced by this project to the " + repository.getName() + " repository.");
                publish.setGroup(PublishingPlugin.PUBLISH_TASK_GROUP);
            }));
    
            publications.all(publication -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/plugins/PublishingPlugin.java

            project.getTasks().register(PUBLISH_LIFECYCLE_TASK_NAME, task -> {
                task.setDescription("Publishes all publications produced by this project.");
                task.setGroup(PUBLISH_TASK_GROUP);
            });
            extension.getPublications().all(publication -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

            fixConflict | description
            false       | 'conflict fix not applied'
            true        | 'conflict fix applied'
        }
    
        /**
         * This use case corresponds to the case where a library maintainer publishes a library
         * either as individual modules, or using a fatjar. It's illegal to have both the fat jar and
         * individual modules on the classpath, so we need a way to declare that we prefer to use
         * the fat jar.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/PublishToMavenRepository.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    import java.net.URI;
    import java.util.Collection;
    
    import static org.gradle.internal.serialization.Transient.varOf;
    
    /**
     * Publishes a {@link org.gradle.api.publish.maven.MavenPublication} to a {@link MavenArtifactRepository}.
     *
     * @since 1.4
     */
    @DisableCachingByDefault(because = "Not worth caching")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/SamplesIvyPublishIntegrationTest.groovy

            and:
            module.assertPublished()
            module.assertArtifactsPublished "${artifactId}-${version}.rpm", "ivy-${version}.xml"
        }
    
        @UsesSample("ivy-publish/distribution")
        def "publishes distribution archives with #dsl dsl"() {
            given:
            def sampleDir = sampleProject.dir.file(dsl)
            executer.inDirectory(sampleDir)
    
            and:
            def repo = ivy(sampleDir.file("build/repo"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

                    ${signingConfiguration()}
                    sign publishing.publications.maven
                }
            """
    
            then:
            succeeds "signMavenPublication"
        }
    
        def "publishes signature files for Maven publication"() {
            given:
            buildFile << """
                apply plugin: 'maven-publish'
                ${keyInfo.addAsPropertiesScript()}
    
                task sourceJar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top