Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,970 for reasons (0.23 sec)

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

                        out.text = tasks.compileDebugCpp.systemIncludes.join('\\n')
                    }
                }
            """
    
            when:
            //TODO this fails in CI (for unknown reasons) with project access checks based on configuration barrier
            executer.withBuildJvmOpts("-Dorg.gradle.configuration-cache.internal.task-execution-access-pre-stable=true")
            succeeds("sysHeaders")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. hack/update-internal-modules.sh

    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # These are "internal" modules.  For various reasons, we want them to be
    # decoupled from their parent modules.
    MODULES=()                                                                                                                                                                   
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationsProvider.java

    import java.util.function.Consumer;
    
    public interface ConfigurationsProvider {
        /**
         * Returns the number of configurations in this provider.
         * <p>
         * This method is provided for performance reasons. It should be more efficient to call this method
         * than to call {@link #visitAll(Consumer)} and then call {@link Set#size()} on the result.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionEventCatapult.java

    import org.apache.maven.plugin.MojoExecution;
    
    /**
     * Assists in firing execution events. <strong>Warning:</strong> This is an internal utility interface that is only
     * public for technical reasons, it is not part of the public API. In particular, this interface can be changed or
     * deleted without prior notice.
     *
     */
    public interface ExecutionEventCatapult {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskExecuterResult.java

    import org.gradle.internal.execution.caching.CachingState;
    
    import java.util.List;
    import java.util.Optional;
    
    public interface TaskExecuterResult {
        /**
         * Returns the reasons for executing this task. An empty list means the task was not executed.
         */
        List<String> getExecutionReasons();
    
        /**
         * Whether the task was executed incrementally.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 16:45:45 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/GenerateGraphTask.groovy

                "$it.name=${attributes.getAttribute(it as Attribute<Object>)}"
            }.sort().join(',')
        }
    
        protected String formatReason(ComponentSelectionReasonInternal reason) {
            def reasons = reason.descriptions.collect {
                def message
                if (it.hasCustomDescription() && it.cause != ComponentSelectionCause.REQUESTED) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/configuration/ImportsReader.java

         */
        String[] getImportPackages();
    
        /**
         * Returns a mapping from simple to qualified class name, derived from
         * the packages returned by {@link #getImportPackages()}. For historical reasons,
         * some simple name match multiple qualified names. In those cases the first match
         * should be used when resolving a name in the DSL.
         */
        Map<String, List<String>> getSimpleNameToFullClassNamesMapping();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptor.java

    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Provides metadata about a build extension. <strong>Warning:</strong> This is an internal utility class that is only
     * public for technical reasons, it is not part of the public API. In particular, this class can be changed or deleted
     * without prior notice.
     *
     */
    public class ExtensionDescriptor {
    
        private List<String> exportedPackages;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/UntrackedTask.java

     * That also means that Gradle does not do any optimizations for running the task.
     * For example, such a task will always be out of date and never stored in or loaded from the build cache.
     *
     * <p>There can be different reasons for declaring a task as untracked, for example:
     * <ul>
     *     <li>Some input or output locations contain unreadable files like pipes where Gradle cannot track the content.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 09:15:04 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/JavaResolutionConsistency.java

         * the compile classpath and the runtime classpath, the version from the
         * compile classpath is going to be used.
         *
         * Unless you have a good reason to, this option should be preferred to
         * {@link #useRuntimeClasspathVersions()} for different reasons:
         *
         * <ul>
         *     <li>As code is compiled first against the given dependencies,
         *     it is expected that the versions at runtime would be the same.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top