Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 310 for _rmdir (0.18 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
    // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
    // time and thus not defined there.
    # else
    inline int FileNo(FILE* file) { return _fileno(file); }
    inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
    inline int RmDir(const char* dir) { return _rmdir(dir); }
    inline bool IsDir(const StatStruct& st) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
    // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
    // time and thus not defined there.
    # else
    inline int FileNo(FILE* file) { return _fileno(file); }
    inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
    inline int RmDir(const char* dir) { return _rmdir(dir); }
    inline bool IsDir(const StatStruct& st) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultGradlePropertiesLoaderTest.groovy

            _ * startParameter.gradleHomeDir >> gradleInstallationHomeDir
        }
    
        private static File fromDir(File dir) {
            new File(dir, Project.GRADLE_PROPERTIES)
        }
    
        def mergeAddsPropertiesFromInstallationPropertiesFile() {
            given:
            1 * environment.propertiesFile(fromDir(gradleInstallationHomeDir)) >> [
                "settingsProp": "settings value"
            ]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 11:52:10 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_volumes.go

    // when this is called, so it effectively does a recursive rmdir instead of
    // RemoveAll to ensure it only removes empty directories and files that were
    // used as mount points, but not content of the mount points.
    func (kl *Kubelet) removeOrphanedPodVolumeDirs(uid types.UID) []error {
    	orphanVolumeErrors := []error{}
    
    	// If there are still volume directories, attempt to rmdir them
    	volumePaths, err := kl.getPodVolumePathListFromDisk(uid)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/files/fileCollections/groovy/build.gradle

        doLast {
            File srcDir
    
            // Create a file collection using a closure
            collection = projectDirectory.files { srcDir.listFiles() }
    
            srcDir = projectDirectory.file('src').asFile
            println "Contents of $srcDir.name"
            collection.collect { projectDirectory.asFile.relativePath(it) }.sort().each { println it }
    
            srcDir = projectDirectory.file('src2').asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/fileCollections/kotlin/build.gradle.kts

        doLast {
            var srcDir: File? = null
    
            val collection = projectDirectory.files({
                srcDir?.listFiles()
            })
    
            srcDir = projectDirectory.file("src").asFile
            println("Contents of ${srcDir.name}")
            collection.map { it.relativeTo(projectDirectory.asFile) }.sorted().forEach { println(it) }
    
            srcDir = projectDirectory.file("src2").asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTestKitSetupIntegrationTest.groovy

                        java {
                            srcDir 'src'
                            compileClasspath = configurations.compileClasspath
                        }
                        resources {
                            srcDir 'resources'
                        }
                    }
    
                    functionalTest {
                        java {
                            srcDir 'src/functional/java'
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-monolithic/prebuilt.gradle

                    headers.with {
                        srcDir "prebuilt/lib$it/include"
                        include "**/*.h"
                    }
                    // TODO: Define library locations (and generate something?)
                }
                <% } %>
    
                commonHeaders {
                    headers.with {
                        <% if (overlapWithOutput) { %>
                            srcDir "\$rootDir"
                        <% } else { %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 735 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

            }
        }
    
        writeAccessorsTo(
            sourceFileFor(className, srcDir),
            sourceCode,
            importsRequiredBy(accessor),
            outputPackage.name
        )
    
        return className
    }
    
    
    private
    fun sourceFileFor(className: InternalName, srcDir: File) =
        srcDir.resolve("${className.value.removeSuffix("Kt")}.kt")
    
    
    private
    fun IO.writeAccessorsBytecodeTo(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectAccessorsClassPathTest.kt

                    "bin",
                    kotlinFilesIn(srcDir),
                    loggerFor<ProjectAccessorsClassPathTest>(),
                    classPath.asFiles
                )
            )
        }
    
        private
        fun kotlinFilesIn(srcDir: File) =
            srcDir.walkTopDown().filter { it.isFile && it.extension == "kt" }.toList()
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 18.5K bytes
    - Viewed (0)
Back to top