Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 126 for subdir2 (0.14 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

        }
    
        /**
         * Creates a directory structure specified by the given closure.
         * <pre>
         * dir.create {
         *     subdir1 {
         *        file 'somefile.txt'
         *     }
         *     subdir2 { nested { file 'someFile' } }
         * }
         * </pre>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/PathFactoryTest.groovy

            // Using normalised absolute urls
            factory.path(subDir) == factory.path("file://${relpath(subDir)}")
            factory.path(subDir) == factory.path("file://${relpath(childFile)}/../..")
            factory.path("file://${relpath(subDir)}") != factory.path("file://${relpath(childFile)}")
    
            // Using absolute paths
            factory.path(subDir) == factory.path("file://${subDir.absolutePath}")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/fingerprint/impl/PathNormalizationStrategyTest.groovy

            fingerprints[resources.file(fileInRoot)]    == fileInRoot
            fingerprints[resources.file(subDirA)]       == directoryFingerprintFor(subDirA, strategy.directorySensitivity)
            fingerprints[resources.file(fileInSubdirA)] == fileInSubdirA
            fingerprints[resources.file(subDirB)]       == directoryFingerprintFor(subDirB, strategy.directorySensitivity)
            fingerprints[resources.file(fileInSubdirB)] == fileInSubdirB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/testFixtures/groovy/org/gradle/api/internal/file/collections/AbstractDirectoryWalkerTest.groovy

            }
            if (currentDepth < maxDepth) {
                for (int i = 0; i < dirCount; i++) {
                    File subDir = new File(parentDir, "dir" + fileIdGenerator.incrementAndGet())
                    subDir.mkdirs()
                    generateFilesAndSubDirectories(subDir, fileCount, dirCount, maxDepth, currentDepth + 1, fileIdGenerator)
                }
            }
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/api/plugins/JvmTestSuitePluginIntegrationTest.groovy

            and:
            hasIncubatingLegend()
        }
    
        def "Test suites in different projects can use same test type"() {
            def subADir = createDir("subA")
            subADir.file("build.gradle") << """
                plugins {
                    id 'java'
                }
    
                ${mavenCentralRepository()}
    
                testing {
                    suites {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_volumes.go

    				cleanupFailed = true
    				err := fmt.Errorf("volumes subdir was found after it was removed")
    				klog.ErrorS(err, "Orphaned pod found, but failed to remove volumes subdir", "podUID", uid, "path", podSubdirPath)
    				continue
    			}
    			if err := removeall.RemoveAllOneFilesystem(kl.mounter, podSubdirPath); err != nil {
    				cleanupFailed = true
    				klog.ErrorS(err, "Failed to remove orphaned pod subdir", "podUID", uid, "path", podSubdirPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. test/typeparam/subdict.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 842 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ExclusiveVariantsIntegrationTest.groovy

        }
    
        def "attribute and capability combinations can be repeated across projects without a warning"() {
            given:
            def subADir = createDir("subA")
            subADir.file("build.gradle") << """
                plugins {
                    id 'java'
                }
    
                configurations {
                    sampleA {
                        canBeResolved = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            relativePaths as Set == [
                '',
                'a',
                'a/b', 'a/b/c.txt',
                'a/c', 'a/c/c.txt', 'a/b/c.html',
                'subdir1', 'subdir1/a', 'subdir1/a/b', 'subdir1/a/b/c.html',
                'a.txt'
            ] as Set
        }
    
        def "should snapshot file system root"() {
            given:
            def fileSystemRoot = fileSystemRoot()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ArchivesContinuousIntegrationTest.groovy

            given:
            def sourceDir = file("src")
            def subDir = sourceDir.file("subdir")
            def outputFile = file("build/distributions/zip.zip")
            def unpackDir = file("build/unpack")
    
            when:
            subDir.mkdirs()
            unpackDir.mkdirs()
            sourceDir.file("README").text = "README"
            subDir.file("A").text = "A"
            buildFile << """
                apply plugin: 'base'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top