Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for eachDir (0.26 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         *   include 'baz'
         *   project(':baz').projectDir = file('foo/baz')
         *
         *   // include many projects whose project dirs do not match the logical project paths
         *   file('subprojects').eachDir { dir ->
         *     include dir.name
         *     project(":${dir.name}").projectDir = dir
         *   }
         * </pre>
         *
         * @param projectPaths the projects to add.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/GroovyFileInterceptors.java

            @Receiver File self,
            Closure<?> closure,
            @CallerClassName String consumer
        ) throws IOException {
            Instrumented.directoryContentObserved(self, consumer);
            ResourceGroovyMethods.eachDir(self, closure);
        }
    
        @InterceptGroovyCalls
        @InstanceMethod
        @WithExtensionReferences(toClass = ResourceGroovyMethods.class)
        public static void intercept_eachDirMatch(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top