Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,426 for directory1 (0.29 sec)

  1. platforms/documentation/docs/src/snippets/plugins/readme.xml

        <itemizedlist>
            <listitem>
                <para>The <filename>buildscript</filename> directory contains a project that uses the old <code>buildscript</code> syntax for using plugins.</para>
            </listitem>
            <listitem>
                <para>The <filename>dsl</filename> directory contains the a project that uses the new <code>plugins</code> syntax for using plugins.</para>
            </listitem>
            <listitem>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. pkg/util/removeall/removeall.go

    		return nil
    	}
    
    	// Otherwise, is this a directory we need to recurse into?
    	dir, serr := os.Lstat(path)
    	if serr != nil {
    		if serr, ok := serr.(*os.PathError); ok && (os.IsNotExist(serr.Err) || serr.Err == syscall.ENOTDIR) {
    			return nil
    		}
    		return serr
    	}
    	if !dir.IsDir() {
    		// Not a directory; return the error from remove.
    		return err
    	}
    
    	// Directory.
    	isNotMount, err := mounter.IsLikelyNotMountPoint(path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/fileAndDirectoryProperty/kotlin/build.gradle.kts

    // A task that generates a source file and writes the result to an output directory
    abstract class GenerateSource : DefaultTask() {
        // The configuration file to use to generate the source file
        @get:InputFile
        abstract val configFile: RegularFileProperty
    
        // The directory to write source files to
        @get:OutputDirectory
        abstract val outputDir: DirectoryProperty
    
        @TaskAction
        fun compile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/list_perm.txt

    stderr 'matched no packages'
    
    # Make the directory ./noread unreadable, and verify that 'go list' reports an
    # explicit error for a pattern that should match it (rather than treating it as
    # equivalent to an empty directory).
    
    [root] stop # Root typically ignores file permissions.
    [GOOS:windows] skip # Does not have Unix-style directory permissions.
    [GOOS:plan9] skip   # Might not have Unix-style directory permissions.
    
    chmod 000 noread
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResourceLister.java

                try {
                    return directoryListingParser.parse(directory.getUri(), inputStream, contentType);
                } catch (Exception e) {
                    throw new ResourceException(directory.getUri(), String.format("Unable to parse HTTP directory listing for '%s'.", directory.getUri()), e);
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor.txt

    # but should not provide a module directory because no directory contains
    # the complete module.
    go list -mod=vendor -f '{{.Version}} {{.Dir}}' -m x
    stdout '^v1.0.0 $'
    
    # -mod=vendor should cause 'go list' flags that look up versions to fail.
    ! go list -mod=vendor -versions -m x
    stderr '^go: can''t determine available versions using the vendor directory\n\t\(Use -mod=mod or -mod=readonly to bypass.\)$'
    ! go list -mod=vendor -u -m x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ArtifactCacheMetadata.java

    public interface ArtifactCacheMetadata {
        /**
         * Returns the root directory for the cache.
         */
        File getCacheDir();
    
        /**
         * Returns the root directory for the module artifacts file store.
         *
         * @return File store location
         */
        File getFileStoreDirectory();
    
        /**
         * Returns the root directory for the external resources file store.
         *
         * @return File store location
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:07:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/file-temp/src/main/java/org/gradle/api/internal/file/temp/DefaultTemporaryFileProvider.java

                    throw new IOException("Failed to make directory: " + tmpDir);
                }
                return tmpDir;
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        private static File forceMkdir(File directory) {
            if (!directory.mkdirs() && !directory.isDirectory()) {
                throw new UncheckedIOException("Cannot create directory '" + directory + "'.");
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 21:16:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

            }
        }
    }
    """
            // directory header starts out as a directory
            def directoryHeader = file("src/other/directory")
            directoryHeader.mkdirs()
            // this is the a header file named 'directory'
            file("src/main/headers/directory") << '#pragma message("including directory named header")'
    
            sourceFile << """
                #include "directory"
    """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/file-temp/src/main/java/org/gradle/api/internal/file/temp/TempFiles.java

         */
        @CheckReturnValue
        static File createTempFile(String prefix, String suffix, File directory) throws IOException {
            if (directory == null) {
                throw new NullPointerException("The `directory` argument must not be null as this will default to the system temporary directory");
            }
            if(prefix == null) {
                prefix = "gradle-";
            }
            if(prefix.length() <= 3) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:50:17 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top