Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for imagesdir (0.15 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                attributes.put("stylesdir", stylesDir.get().getAsFile().getAbsolutePath());
                attributes.put("stylesheet", "manual.css");
                attributes.put("doctype", "book");
                attributes.put("imagesdir", "img");
                attributes.put("nofooter", true);
                attributes.put("sectanchors", true);
                attributes.put("sectlinks", true);
                attributes.put("linkattrs", true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. build/lib/release.sh

      (
        local binary_dir
        local arch
        local binaries
        local images_dir
        binary_dir="$1"
        arch="$2"
        binaries=$(kube::build::get_docker_wrapped_binaries)
        images_dir="${RELEASE_IMAGES}/${arch}"
        mkdir -p "${images_dir}"
    
        # registry.k8s.io is the constant tag in the docker archives, this is also the default for config scripts in GKE.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/cluster/cluster.go

    			for _, ds := range daemonsets {
    				if ds.Name == o.Name {
    					return ds.Name
    				}
    			}
    		}
    	}
    	return ""
    }
    
    func imageToVersion(imageStr string) string {
    	vs := versionRegex.FindStringSubmatch(imageStr)
    	if len(vs) != 2 {
    		return ""
    	}
    	return vs[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (1)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultFileOperationsTest.groovy

            fileToBeDeleted.touch()
    
            expect:
            fileOperations.delete('file') == true
            fileToBeDeleted.isFile() == false
        }
    
        def makesDir() {
            TestFile dirToBeCreated = tmpDir.file("parentDir", "dir")
            resolver.resolve('parentDir/dir') >> dirToBeCreated
    
            when:
            File actualDir = fileOperations.mkdir('parentDir/dir')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top