Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 545 for Here (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/collections/CollectionEventRegister.java

        void registerRemoveAction(Class<? extends T> type, Action<? super T> removeAction);
    
        <S extends T> CollectionEventRegister<S> filtered(CollectionFilter<S> filter);
    
        // TODO: Migrate this away from here
        CollectionCallbackActionDecorator getDecorator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:12:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/util/RelativePathUtil.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.util.internal.TextUtil;
    
    import java.io.File;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class RelativePathUtil {
    
        private static void logDeprecation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/LayoutToPropertiesConverter.java

            allBuildOptions.addAll(new LoggingConfigurationBuildOptions().getAllOptions()); // TODO maybe a new converter also here
            allBuildOptions.addAll(new WelcomeMessageBuildOptions().getAllOptions()); // TODO maybe a new converter also here
            allBuildOptions.addAll(new DaemonBuildOptions().getAllOptions());
            allBuildOptions.addAll(new ParallelismBuildOptions().getAllOptions());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/OutputUnpacker.java

            if (unpackedValue instanceof Provider) {
                unpackedValue = ((Provider<?>) unpackedValue).getOrNull();
            }
            if (unpackedValue == null) {
                return;
            }
            // From here on, we already unpacked providers, so we can fail if any of the file collections contains a provider which is not present.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:56 UTC 2022
    - 9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchies.java

        }
    
        /**
         * Create the input node access hierarchy.
         *
         * For performance reasons, we keep one input node access hierarchy per project,
         * so we only have a factory method here and this is used to create the hierarchy in {@link org.gradle.execution.ProjectExecutionServices}.
         */
        public InputNodeAccessHierarchy createInputHierarchy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptSource.java

         * file this is the path to the file.  Never returns null.
         */
        String getFileName();
    
        /**
         * Returns a long description for this script. Same as {@link #getLongDisplayName()} but here for backwards compatibility.
         */
        String getDisplayName();
    
        /**
         * Returns a long display name for this script. The long description should use absolute paths and assume no particular context.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 27 05:02:53 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginIntegrationTest.groovy

        String getMainTask() {
            return "check"
        }
    
        def setup() {
            buildFile << """
                apply plugin: 'java'
    
                // Necessary to make CC tests pass, though it appears unused here
                ${mavenCentralRepository()}
    
                dependencies { implementation localGroovy() }
    
            """
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21301")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/DependencyResolutionServices.java

     * Provides access to services required for dependency resolution.
     */
    public interface DependencyResolutionServices {
        RepositoryHandler getResolveRepositoryHandler();
    
        // This method is currently referenced by IDEA, here:
        // https://github.com/JetBrains/intellij-community/blob/de935f2d08d531cb4ecad6594dfe09f55b1f8b6f/plugins/gradle/tooling-extension-impl/src/org/jetbrains/plugins/gradle/tooling/builder/VersionCatalogsModelBuilder.java#L50
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SuggestionsMessages.groovy

     */
    
    package org.gradle.integtests.fixtures
    
    /**
     * A collection of suggestions to be displayed to the user when a build fails.
     * These where repeated all over the test code, so they are now centralized here.
     */
    
    class SuggestionsMessages {
    
        public static final String INFO_DEBUG = "Run with --info or --debug option to get more log output."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ProguardSmokeTest.groovy

                }
    
                dependencies {
                    implementation 'com.guardsquare:proguard-gradle:${TestedVersions.proguardGradle}'
                }
    
                // Configure the validation task here, since there is no ProGuard plugin
                def validationTask = tasks.register('validatePluginWithId_proguard', ValidatePlugins) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top