Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,826 for unpublished (0.18 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     *
     * Most modification events may be published before or after a modification, so subscribers should not assume that the modification has or
     * hasn't happened yet. The reason for this design decision is that some of the underlying events (such as PSI tree changes) may be
     * published before or after a change, or even both. Modification events published before the modification should however be published close
     * to the modification.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    |`<dependencyManagement>` dependencies
    |Not published
    |Gradle dependency constraints are _transitive_, while Maven's dependency management block _isn't_
    
    |<<rich_versions.adoc#rich-version-constraints,rich version constraints>>
    |Publishes the _requires_ version
    |Published the _requires_ version
    |
    
    |<<component_capabilities.adoc#declaring-component-capabilities,component capabilities>>
    |Not published
    |Not published
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyArtifact.java

        /**
         * A comma separated list of public configurations in which this artifact is published.
         * The '*' wildcard is used to designate that the artifact is published in all public configurations.
         * A <code>null</code> value (the default) indicates that this artifact will be published without a conf attribute.
         * @return The value of 'conf' for this artifact.
         */
        @Nullable
        String getConf();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ComponentDependencyResolver.java

    /**
     * Given a declared dependency to be published, determines the coordinates
     * that should be used to reference the dependency in published metadata. Dependencies
     * are resolved to component-level precision, meaning the coordinates of the resolved
     * variant's owning component are returned.
     */
    public interface ComponentDependencyResolver {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/validation/DuplicatePublicationTracker.java

            if (published.get(repositoryKey).contains(publicationWithProject)) {
                LOG.warn("Publication '" + projectIdentity + "' is published multiple times to the same location. It is likely that repository '" + repositoryName + "' is duplicated.");
                return;
            }
    
            for (PublicationWithProject previousPublicationWithProject : published.get(repositoryKey)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/component/AdhocComponentWithVariants.java

    import org.gradle.api.artifacts.Configuration;
    
    /**
     * A component which can declare additional variants corresponding to
     * features. When published to Maven POMs, the dependencies of those variants
     * are exposed as optional dependencies. When published to Gradle metadata, the
     * variants are published as is.
     *
     * @since 5.3
     */
    public interface AdhocComponentWithVariants extends SoftwareComponent {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 19 14:20:53 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VariantDependencyResolver.java

    import javax.annotation.Nullable;
    
    /**
     * Given a declared dependency to be published, determines the coordinates
     * that should be used to reference the dependency in published metadata. Dependencies
     * are resolved to variant-level precision, meaning that if resolved variant
     * is published to different coordinates than the declared component, the
     * variant coordinates are returned.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeaturePublishingIntegrationTest.groovy

         * similar to "test fixtures", but where the fixtures are consumed by the integration tests
         */
        @Unroll("can register integration test fixtures (published=#published, javadocs=#javadocs, sources=#sources)")
        def "can register integration test fixtures"() {
            buildFile << """
                sourceSets {
                    integTestFixtures
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPrecompiledScriptPluginsSmokeTest.groovy

        @UnsupportedWithConfigurationCache(because = "previous Gradle versions")
        def "can consume kotlin precompiled scripts published using Gradle #pluginPublishGradleVersion"() {
    
            given: 'a published precompiled script plugin exercising generated accessors'
            def pluginPublishJavaHome = AvailableJavaHomes.getAvailableJdks(JavaVersion.VERSION_1_8).last().javaHome
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantDetailsInternal.java

         *
         * <p>This interface should eventually be moved to its own file once dependency mapping is stabilized.</p>
         */
        interface DependencyMappingDetails {
            /**
             * If true, the resolved coordinates of the dependencies will be published instead of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top