Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,426 for directory1 (0.38 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultDirectoryFileTreeFactory.java

        }
    
        @Override
        public DirectoryFileTree create(File directory) {
            return new DirectoryFileTree(directory, patternSetFactory.create(), fileSystem);
        }
    
        @Override
        public DirectoryFileTree create(File directory, PatternSet patternSet) {
            return new DirectoryFileTree(directory, patternSet, fileSystem);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/os/removeall_noat.go

    	if err == nil || IsNotExist(err) {
    		return nil
    	}
    
    	// Otherwise, is this a directory we need to recurse into?
    	dir, serr := Lstat(path)
    	if serr != nil {
    		if serr, ok := serr.(*PathError); ok && (IsNotExist(serr.Err) || serr.Err == syscall.ENOTDIR) {
    			return nil
    		}
    		return serr
    	}
    	if !dir.IsDir() {
    		// Not a directory; return the error from Remove.
    		return err
    	}
    
    	// Remove contents & return first error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCodecs.kt

    import org.gradle.internal.serialize.graph.writeFile
    
    
    class DirectoryCodec(private val fileFactory: FileFactory) : Codec<Directory> {
        override suspend fun WriteContext.encode(value: Directory) {
            writeFile(value.asFile)
        }
    
        override suspend fun ReadContext.decode(): Directory {
            return fileFactory.dir(readFile())
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputDirectory.java

    package org.gradle.api.tasks;
    
    import java.lang.annotation.*;
    
    /**
     * <p>Marks a property as specifying an output directory for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>The directory will be created before the task is executed if it does not exist already.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 12:53:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/src.xml

            <exclude>**/.idea/**</exclude>
            <exclude>**/.DS_Store</exclude>
            <exclude>**/build/**</exclude>
          </excludes>
        </fileSet>
        <fileSet>
          <directory>${project.build.directory}/maven-shared-archive-resources/META-INF</directory>
          <outputDirectory>/</outputDirectory>
          <includes>
            <include>DEPENDENCIES</include>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 27 13:14:24 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/project.xml

          </excludes>
          <resources>
            <resource>
              <directory>${basedir}/src/test</directory>
              <includes>
                <include>**/*.xml</include>
              </includes>
            </resource>
          </resources>
        </unitTest>
        <resources>
          <resource>
            <directory>/src/conf</directory>
            <includes>
              <include>*.xsd</include>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.6K bytes
    - Viewed (0)
  7. pkg/volume/util/fsquota/common/quota_common_linux.go

    	// GetConsumption returns the consumption (in bytes) of the
    	// directory, determined by the implementation's quota-based
    	// mechanism.  If it is unable to do so using that mechanism,
    	// it should return an error and allow higher layers to
    	// enumerate the directory.
    	GetConsumption(path string, id QuotaID) (int64, error)
    
    	// GetInodes returns the number of inodes used by the
    	// directory, determined by the implementation's quota-based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

        }
    
        def "creates directory in place of file"() {
            given:
            TestFile dir = tmpDir.getTestDirectory()
            def file = dir.file("someFile").createFile()
    
            when:
            boolean didWork = deleter.ensureEmptyDirectory(file)
    
            then:
            file.assertIsDir()
            didWork
        }
    
        def "creates directory if nothing existed before"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeInstallationSpec.java

     */
    @Incubating @UnmanagedStruct
    public class NativeInstallationSpec {
        private File directory;
    
        public File getDirectory() {
            return directory;
        }
    
        public void setDirectory(File directory) {
            this.directory = directory;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. cluster/gce/addons/README.md

    # GCE Cluster addons
    
    These cluster add-ons are specific to GCE and GKE clusters. The GCE-specific addon directory is
    merged with the general cluster addon directory at release, so addon paths (relative to the addon
    directory) must be unique across the 2 directory structures.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 23:08:03 UTC 2017
    - 357 bytes
    - Viewed (0)
Back to top