Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for publishLib (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                }
            """
            def publishLib = { String artifactId, String version ->
                def lib = mavenHttpRepo.module("org.gradle.test", artifactId, version)
                    .withModuleMetadata()
                    .publish()
                lib.moduleMetadata.expectGet()
                lib.pom.expectGet()
                return lib
            }
            publishLib("lib-core", "1.0").with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                }
            """
            def publishLib = { String artifactId, String version ->
                def lib = mavenHttpRepo.module("org.gradle.test", artifactId, version)
                    .withModuleMetadata()
                    .publish()
                lib.moduleMetadata.expectGet()
                lib.pom.expectGet()
                return lib
            }
            publishLib("lib-core", "1.0").with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/ivy-publish/conditional-publishing/groovy/build.gradle

                name "internal"
                url layout.buildDirectory.dir('repos/internal')
            }
        }
    }
    // end::publishing[]
    
    // tag::task-config[]
    tasks.withType(PublishToIvyRepository) {
        def publishIf = provider {
            if (repository == publishing.repositories.external)
                return publication == publishing.publications.binary
            if (repository == publishing.repositories.internal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_block.go

    	publishDir := filepath.Dir(publishPath)
    	if err := os.MkdirAll(publishDir, 0750); err != nil {
    		return "", errors.New(log("blockMapper.publishVolumeForBlock failed to create dir %s:  %v", publishDir, err))
    	}
    	klog.V(4).Info(log("blockMapper.publishVolumeForBlock created directory for publishPath successfully [%s]", publishDir))
    
    	// Request to publish a block volume to publishPath.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/gradle/GradleFileModuleAdapter.groovy

            this.version = version
            this.publishArtifactVersion = publishArtifactVersion
            this.variants = variants
            this.attributes = attributes
        }
    
        void publishTo(Writer writer, long publishId) {
            def jsonBuilder = new JsonBuilder()
            jsonBuilder {
                formatVersion GradleModuleMetadataParser.FORMAT_VERSION
                builtBy {
                    gradle {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_block_test.go

    	}
    	if _, err := os.Stat(publishPath); err == nil {
    		t.Errorf("volume publish path %s was not deleted", publishPath)
    	}
    	publishDir := filepath.Dir(publishPath)
    	if _, err := os.Stat(publishDir); err == nil {
    		t.Errorf("volume publish parent directory %s was not deleted", publishDir)
    	}
    	if _, err := os.Stat(stagingPath); err == nil {
    		t.Errorf("volume staging path %s was not deleted", stagingPath)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top