Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for subdir2 (0.12 sec)

  1. src/cmd/go/internal/fsys/fsys_test.go

    				{"overlayfiles", 0, true},
    				{"parentoverwritten", 0, true},
    				{"subdir1", 0, true},
    				{"subdir10", 0, true},
    				{"subdir11", 0, false},
    				{"subdir2", 0, true},
    				{"subdir3", 0, true},
    				{"subdir4", 2, false},
    				// no subdir5.
    				{"subdir6", 0, true},
    				{"subdir7", 0, true},
    				{"subdir8", 0, true},
    				{"subdir9", 0, true},
    				{"textfile.txt", 0, true},
    			},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultSourceDirectorySetTest.groovy

            touch(new File(srcDir1, 'subdir/file1.txt'))
            touch(new File(srcDir1, 'subdir/file2.txt'))
            touch(new File(srcDir1, 'subdir/ignored.txt'))
            File srcDir2 = new File(testDir, 'dir2')
            touch(new File(srcDir2, 'subdir2/file1.txt'))
            touch(new File(srcDir2, 'subdir2/file2.txt'))
            touch(new File(srcDir2, 'subdir2/ignored.txt'))
    
            when:
            set.srcDir 'dir1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            assertSetContainsForAllTypes(filtered, 'subDir/included1', 'subDir2/included2')
            assertVisits(filtered, ['subDir/included1', 'subDir2/included2'], ['subDir', 'subDir2'])
            filtered.contains(included1)
            !filtered.contains(excluded1)
            !filtered.contains(ignored1)
        }
    
        def testCanFilterMatchingFilesUsingPatternSet() {
            File included1 = new File(testDir, 'subDir/included1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

            createTar('test1.tar') {
                subdir1 {
                    file ('file.txt').text = 'original text 1'
                }
                subdir2 {
                    file('file2.txt').text = 'original text 2'
                    file ('file3.txt').text =  'original text 3'
                }
            }
            createTar('test2.tar') {
                subdir1 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

            result.assertTaskExecuted(":copy")
            file('dest').assertHasDescendants('subdir1/file1.txt', 'subdir2/file2.txt')
    
            when:
            run 'copy'
    
            then:
            result.assertTasksSkipped(":copy")
    
            when:
            createZip('test.zip') {
                subdir1 {
                    file 'file1.txt'
                }
                subdir2 {
                    file 'file2.xml'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            when:
            execute(task)
    
            then:
            new File(testDir, "subdir").isDirectory()
        }
    
        def validationActionSucceedsWhenSpecifiedOutputFilesDoesNotExist() {
            given:
            def task = expectTaskCreated(TaskWithOutputFiles, [new File(testDir, "subdir/output.txt"), new File(testDir, "subdir2/output.txt")] as List)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top