Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 779 for Directories (0.17 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/DuplicateBaseNamesIntegrationTest.groovy

        @RequiresInstalledToolChain(SUPPORTS_32)
        @ToBeFixedForConfigurationCache
        def "can have sourcefiles with same base name but different directories"() {
            given:
            def testApp = initTestApp(testAppType)
    
            when:
            testApp.writeSources(file("src/main"))
            buildFile.text = ""
            testApp.plugins.each { plugin ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

                // Workaround for Android Gradle plugin checking for the presence of these directories at configuration time,
                // which invalidates configuration cache if their presence changes. Create these directories before the first build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskLocalState.java

     * limitations under the License.
     */
    
    package org.gradle.api.tasks;
    
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Represents the files or directories that represent the local state of a {@link org.gradle.api.Task}.
     * The typical usage for local state is to store non-relocatable incremental analysis between builds.
     * Local state is removed whenever the task is loaded from cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/MultiReleaseClasspathElementTransformForLegacy.java

     * This is still used when TestKit and TAPI run Gradle in embedded or debug mode.
     * <p>
     * This transformation filters out not yet supported versioned directories of the multi-release JARs.
     */
    class MultiReleaseClasspathElementTransformForLegacy extends BaseClasspathElementTransform {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    The Groovy plugin assumes the project layout shown in <<#groovylayout,Groovy Layout>>. All the Groovy source directories can contain Groovy _and_ Java code. The Java source directories may only contain Java source code.footnote:[Gradle uses the same conventions as introduced by Russel Winder's link:https://gant.github.io/[Gant tool].] None of these directories need to exist or have anything in them; the Groovy plugin will simply compile whatever it finds.
    
    [[groovylayout]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. src/debug/dwarf/line.go

    		}
    	} else {
    		dirFormat := r.readLNCTFormat()
    		c := buf.uint()
    		r.directories = make([]string, c)
    		for i := range r.directories {
    			dir, _, _, err := r.readLNCT(dirFormat, dwarf64)
    			if err != nil {
    				return err
    			}
    			r.directories[i] = dir
    		}
    		fileFormat := r.readLNCTFormat()
    		c = buf.uint()
    		r.fileEntries = make([]*LineFile, c)
    		for i := range r.fileEntries {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

        }
    
        /**
         * Returns the header directories to be used for compilation.
         */
        @Internal("The paths for include directories are tracked via the includePaths property, the contents are tracked via discovered inputs")
        public ConfigurableFileCollection getIncludes() {
            return includes;
        }
    
        /**
         * Add directories where the compiler should search for header files.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/SnapshotWatchedDirectoryFinder.java

    import java.io.File;
    
    public class SnapshotWatchedDirectoryFinder {
    
        /**
         * Resolves the directories to watch for a snapshot.
         *
         * For existing files, we watch the parent directory,
         * so we learn if the file itself disappears or gets modified.
         * For directories, we only watch the directory itself, as we get
         * events for that.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/CompileClasspath.java

     *
     * <ul>
     *     <li>Changes to the path of jar or top level directories.</li>
     *     <li>Changes to timestamps and the order of entries in Jars.</li>
     *     <li>Changes to resources and Jar manifests, including adding or removing resources.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 10:29:21 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  10. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                }
            }?.filter {
                it.value.isNotEmpty()
            } ?: emptyMap()
    
        /**
         * Returns any temporary directories used to extract resources from jars.
         *
         * These directories will be created as siblings of the randomly assigned test root directories, with the fixed name {@code tmp-extracted-resources}.
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top