Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 444 for unpublished (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    Then we conflict resolve between `core:1.0` and `core:1.1`, which means that `core` and `lib` are now aligned properly.
    
    NOTE: This behavior is enforced for published components only if you use Gradle Module Metadata.
    
    [[sec:align-versions-unpublished]]
    == Aligning versions of modules not published with Gradle
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

        }
    }
    """
    
            when: "Version 1.1 is published"
            def version1 = ivyHttpRepo.module("group", "projectA", "1.1").publish()
    
            and:
            expectGetDynamicRevision(version1)
    
            then:
            checkResolve "group:projectA:1.+": "group:projectA:1.1"
    
            when: "Version 1.2 is published"
            server.resetExpectations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    Any time the artifacts and dependencies specified for the default configuration of a project don't match what is published to a repository, the composite build may exhibit different behavior.
    
    Here are some cases where the published module metadata may be different from the project default configuration:
    
    * When a configuration other than `default` is published.
    * When the `maven-publish` or `ivy-publish` plugins are used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	// A pod that has a deletionTimestamp and a zero
    	// deletionGracePeriodSeconds
    	// a) has been processed by kubelet and was set up for deletion
    	//    by the apiserver:
    	//    - canBeDeleted has verified that volumes were unpublished
    	//      https://github.com/kubernetes/kubernetes/blob/5404b5a28a2114299608bab00e4292960dd864a0/pkg/kubelet/kubelet_pods.go#L980
    	//    - deletionGracePeriodSeconds was set via a delete
    	//      with zero GracePeriodSeconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_block.go

    var _ volume.BlockVolumeUnmapper = &csiBlockMapper{}
    var _ volume.CustomBlockVolumeUnmapper = &csiBlockMapper{}
    
    // unpublishVolumeForBlock unpublishes a block volume from publishPath
    func (m *csiBlockMapper) unpublishVolumeForBlock(ctx context.Context, csi csiClient, publishPath string) error {
    	// Request to unpublish a block volume from publishPath.
    	// Expectation for driver is to remove block volume from the publishPath, by unmounting bind-mounted device file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            mavenHttpRepo.module('org.foo', 'child-transitive1').publish().allowAll()
    
            // 'direct2' 'transitive2', and 'child-transitive2' are found in 'maven2' (unpublished in 'maven1')
            mavenHttpRepo.module('org.foo', 'direct2').allowAll()
            secondMavenHttpRepo.module('org.foo', 'direct2')
                .dependsOn('org.foo', 'transitive1', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    It is explained in detail in the section on <<dependency_version_alignment.adoc#sec:align-versions-unpublished,aligning versions of modules not published with Gradle>>.
    
    [[sec:custom_status_scheme]]
    == Modifying metadata on the component level for version selection based on status
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

     * </p><p>
     * To add additional artifacts to the set published, use the {@link #artifact(Object)} and {@link #artifact(Object, org.gradle.api.Action)} methods.
     * You can also completely replace the set of published artifacts using {@link #setArtifacts(Iterable)}.
     * Together, these methods give you full control over the artifacts to be published.
     * </p><p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     * The published component is used to determine which artifacts to publish, and which dependencies should be listed in the generated POM file.
     * </p><p>
     * To add additional artifacts to the set published, use the {@link #artifact(Object)} and {@link #artifact(Object, org.gradle.api.Action)} methods.
     * You can also completely replace the set of published artifacts using {@link #setArtifacts(Iterable)}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top