Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for publishLib (0.19 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. 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)
  3. 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