Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 779 for Directories (0.22 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

                def numberMatcher = retainedInformation =~ /Virtual file system retains information about (\d+) files, (\d+) directories and (\d+) missing files until next build/
                return numberMatcher[0][1] as int
            }
    
            int getReceivedFileSystemEventsSinceLastBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/caching/internal/packaging/impl/DefaultTarPackerFileSystemSupportTest.groovy

            when:
            fileSystemSupport.ensureDirectoryForTree(DIRECTORY, targetOutputDir)
    
            then:
            targetOutputDir.assertIsEmptyDir()
        }
    
        def "creates directories even if there is a pre-existing file in its place"() {
            def targetOutputDir = temporaryFolder.file("build/output")
            targetOutputDir << "This should become a directory"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/normalization/RuntimeClasspathNormalization.java

     *
     * <ul>
     *
     * <li>'*' to match any number of characters
     *
     * <li>'?' to match any single character
     *
     * <li>'**' to match any number of directories or files
     *
     * </ul>
     *
     * <p>Either '/' or '\' may be used in a pattern to separate directories. Patterns ending with '/' or '\' will have '**'
     * automatically appended.</p>
     *
     * <p>Examples:</p>
     *
     * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:43:32 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  4. samples/guide/src/test/kotlin/okhttp3/AllMainsTest.kt

    private fun mainFiles(): List<File> {
      val directories =
        listOf(
          "$prefix/samples/guide/src/main/java/okhttp3/guide",
          "$prefix/samples/guide/src/main/java/okhttp3/recipes",
          "$prefix/samples/guide/src/main/java/okhttp3/recipes/kt",
        ).map { File(it) }
    
      return directories.flatMap {
        it.listFiles().orEmpty().filter { f -> f.isFile }.toList()
      }
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppBinary.java

        /**
         * Returns the C++ source files of this binary.
         */
        FileCollection getCppSource();
    
        /**
         * Returns the header directories to use to compile this binary. Includes the header directories of this binary plus those of its dependencies.
         */
        FileCollection getCompileIncludePath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/crypto/x509/root_aix.go

    // license that can be found in the LICENSE file.
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/var/ssl/certs/ca-bundle.crt",
    }
    
    // Possible directories with certificate files; all will be read.
    var certDirectories = []string{
    	"/var/ssl/certs",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 410 bytes
    - Viewed (0)
  7. .gitignore

    /www/master/shared/config/development.json
    
    # Karma output
    /www/test_out
    
    # precommit temporary directories created by ./hack/verify-generated-docs.sh and ./hack/lib/util.sh
    /_tmp/
    /doc_tmp/
    
    # Test artifacts produced by Prow/kubetest2 jobs
    /_artifacts/
    /_rundir/
    
    # Go dependencies installed on Jenkins
    /_gopath/
    
    # Config directories created by gcloud and gsutil on Jenkins
    /.config/gcloud*/
    /.gsutil/
    
    # CoreOS stuff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_symlink_dotgo.txt

    env GO111MODULE=on
    [!symlink] skip
    
    symlink dir.go -> dir
    
    # Issue #39841: symlinks to directories should be ignored, not treated as source files.
    go list -f '{{range .GoFiles}}{{.}}{{"\n"}}{{end}}' .
    stdout 'p\.go$'
    ! stdout 'dir\.go$'
    
    -- go.mod --
    module example.com
    go 1.15
    -- p.go --
    package p
    -- dir/README.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 25 03:29:25 UTC 2020
    - 372 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

         * Returns the user search paths for this binary. This includes the header directories for the binary itself, plus any dependencies of the binary.
         */
        List<File> getUserHeaderSearchPaths();
    
        /**
         * Returns the source files for this binary.
         */
        DomainObjectSet<? extends SourceFile> getSources();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/OutputsCleanerTest.groovy

        Predicate<File> fileSafeToDelete = Mock()
        Predicate<File> dirSafeToDelete = Mock()
        def cleaner = new OutputsCleaner(deleter, fileSafeToDelete, dirSafeToDelete)
    
        def "does not delete non-empty directories"() {
            def outputFiles = []
    
            def outputDir = temporaryFolder.createDir("rootDir")
            outputFiles << outputDir.file("some-output.txt")
    
            def subDir = outputDir.createDir("subDir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top