Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,286 for unpublished (0.14 sec)

  1. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/README.adoc

    In order to use the `unpublished` library as-is in a composite build, the composing build can explicitly declare the substitutions that it provides.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vet/vetflag.go

    // support -flags, which prints a description of its flags in JSON to
    // stdout.
    
    // vetTool specifies the vet command to run.
    // Any tool that supports the (still unpublished) vet
    // command-line protocol may be supplied; see
    // golang.org/x/tools/go/analysis/unitchecker for one
    // implementation. It is also used by tests.
    //
    // The default behavior (vetTool=="") runs 'go tool vet'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top