Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 779 for Directories (0.34 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppComponent.java

         */
        Property<String> getBaseName();
    
        /**
         * Defines the source files or directories of this component. You can add files or directories to this collection. When a directory is added, all source files are included for compilation.
         *
         * <p>When this collection is empty, the directory {@code src/main/cpp} is used by default.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/SourceDistributionResolverIntegrationTest.kt

                require(sourceDirs.isNotEmpty()) {
                    "Expected source directories but got none"
                }
    
                val subprojectSourcePath = "org/gradle/StartParameter.java"
                val subprojectFound = sourceDirs.find { it.resolve(subprojectSourcePath).isFile }
                require(subprojectFound != null) {
                    "Source directories do not contain subproject file '${'$'}subprojectSourcePath'. Searched in:\n  " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 13:27:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

                .with { line ->
                    def matcher = line =~ /Watched directory hierarchies: \[(.*)]/
                    String directories = matcher[0][1]
                    return (directories.empty
                        ? []
                        : directories.split(', ').collect { new File(it) }
                    ) as Set
                }
    
            assert watchedHierarchies == (expected as Set)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputDirectories.java

    /**
     * <p>Marks a property as specifying one or more output directories 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>This will cause the task to be considered out-of-date when the directory paths or task
     * output to those directories have been modified since the task was last run.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 29 11:24:35 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/files/inputFiles/groovy/build.gradle

        }
    }
    // end::set-input-files[]
    
    // tag::add-input-files[]
    compile {
        // Add some source directories use String paths
        source 'src/main/java', 'src/main/groovy'
    
        // Add a source directory using a File object
        source file('../shared/java')
    
        // Add some source directories using a closure
        source { file('src/test/').listFiles() }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/clean_cache_n.txt

    # Build something so that the cache gets populates
    go build main.go
    
    # Check that cache contains directories before running
    exists $GOCACHE/00
    
    # Run go clean -cache -n and ensure that directories weren't deleted
    go clean -cache -n
    exists $GOCACHE/00
    
    # Re-run go clean cache without the -n flag go ensure that directories were properly removed
    go clean -cache
    ! exists $GOCACHE/00
    
    ! go clean -cache .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 637 bytes
    - Viewed (0)
  7. dbflute_fess/_readme.txt

    manage.bat(sh) => 23 (generate):
    A execution command of Generate task
    which generates classes corresponding your tables,
    for example, entities, condition-beans to specified
    directories by DBFlute properties on "dfprop" directory.
    
    Generated structures (directories and classes) are like this:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    allcommon : classes bridging to DBFlute Runtime
    bsbhv     : base behaviors
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/CurrentInstallationSupplierTest.groovy

            given:
            def supplier = new CurrentInstallationSupplier()
    
            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 1
            directories[0].location == Jvm.current().javaHome
            directories[0].source == "Current JVM"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. pkg/util/removeall/removeall_test.go

    	}
    	return true, nil
    }
    
    func TestRemoveAllOneFilesystem(t *testing.T) {
    	tests := []struct {
    		name string
    		// Items of the test directory. Directories end with "/".
    		// Directories starting with "mount" are considered to be mount points.
    		// Directories starting with "err" will cause an error in
    		// IsLikelyNotMountPoint.
    		items       []string
    		expectError bool
    	}{
    		{
    			"empty dir",
    			[]string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 20:35:13 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/zip.kt

    internal
    fun File.walkReproducibly(): Sequence<File> = sequence {
    
        require(isDirectory)
    
        yield(this@walkReproducibly)
    
        var directories: List<File> = listOf(this@walkReproducibly)
        while (directories.isNotEmpty()) {
            val subDirectories = mutableListOf<File>()
            directories.forEach { dir ->
                dir.listFilesOrdered().partition { it.isDirectory }.let { (childDirectories, childFiles) ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top