Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setIncludedBuilds (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/composite/ChildBuildRegisteringSettingsLoader.java

                    children.add(includedBuild.getModel());
                }
    
                // Set the visible included builds
                gradle.setIncludedBuilds(children);
            } else {
                gradle.setIncludedBuilds(Collections.emptyList());
            }
    
            return state;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/GradleInternal.java

        @UsedByScanPlugin
        ServiceRegistry getServices();
    
        void setClassLoaderScope(Supplier<? extends ClassLoaderScope> classLoaderScope);
    
        ClassLoaderScope getClassLoaderScope();
    
        void setIncludedBuilds(Collection<? extends IncludedBuildInternal> includedBuilds);
    
        /**
         * Returns a unique path for this build within the current Gradle invocation.
         */
        Path getIdentityPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top