Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 216 for Here (0.05 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

    import org.gradle.tooling.model.GradleProject
    
    class PassingCommandLineArgumentsCrossVersionSpec extends ToolingApiSpecification {
    
    //    We don't want to validate *all* command line options here, just enough to make sure passing through works.
    
        def "understands project properties for building model"() {
            given:
            toolingApi.verboseLogging = false //sanity check, see GRADLE-2226
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

            return new OriginMetadata(
                buildInvocationScopeId.asString(),
                buildCacheKey,
                originExecutionTime
            );
        }
    
        /*
         * This operation is only used here temporarily. Should be replaced with a more stable operation in the long term.
         */
        public interface Operation extends BuildOperationType<Operation.Details, Operation.Result> {
            interface Details {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/PublicApiCorrectnessTest.java

        private static final DescribedPredicate<JavaClass> allowed_types_for_public_api =
            gradlePublicApi()
                .or(primitive)
                // NOTE: we don't want to include java.util.function here because Gradle public API uses custom types like org.gradle.api.Action and org.gradle.api.Spec
                // Mixing these custom types with java.util.function types would make the public API harder to use, especially for plugin authors.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    [[build_teamcity]]
    = Executing Gradle builds on TeamCity
    
    TIP: Top engineering teams using TeamCity have been able to reduce CI build time by up to 90% by using the Gradle Build Cache. https://gradle.org/training/#build-cache-deep-dive[Register here] for our Build Cache training session to learn how your team can achieve similar results.
    
    Building Gradle projects doesn't stop with the developer's machine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/EditorReportsBuilder.kt

    }
    
    
    /**
     * Check if this [LocationAwareException] is caused by a Gradle Kotlin DSL `ScriptCompilationException`.
     *
     * Compares class names because `ScriptCompilationException` from :provider isn't available here.
     */
    private
    val LocationAwareException.isCausedByScriptCompilationException
        get() = cause?.let { it::class.java.name == "org.gradle.kotlin.dsl.support.ScriptCompilationException" } == true
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractResourcePattern.java

            this.typeIsOptional = isOptionalToken(PatternHelper.TYPE_KEY);
        }
    
        @Override
        public String getPattern() {
            // Replace encoded [] with plain variants, since we are using them with a special meaning here.
            return pattern.getDisplayable().replace("%5B", "[").replace("%5D", "]");
        }
    
        protected ExternalResourceName getBase() {
            return pattern;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/ArtifactRepositoriesPluginResolver.java

                // in case the user provides an explicit or transitive required version.
                // The resolution will fail if there is no user-provided required version, however it avoids us failing here
                // if the weak version is not present but never selected.
                return PluginResolutionResult.found(new ExternalPluginResolution(getDependencyFactory(), pluginRequest, autoApplied));
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ProjectLeaseRegistry.java

         */
        Collection<? extends ResourceLock> getCurrentProjectLocks();
    
        /**
         * Releases any project state locks or task execution locks currently held by this thread, allowing the current
         * thread to run as if it were executing an isolated task.
         *
         * Does not release worker lease.
         */
        void runAsIsolatedTask();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    > Task :app:processTestResources NO-SOURCE
    > Task :app:testClasses
    > Task :app:test
    > Task :app:check
    > Task :app:build
    
    BUILD SUCCESSFUL in 1s
    8 actionable tasks: 8 executed
    ----
    
    No surprise here, Gradle invoked all the tasks needed to build the app.
    This was done successfully.
    
    Run the build again to view the _incremental build_ optimization in action:
    [source,text]
    ----
    $ ./gradlew :app:build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

    import java.util.Collection;
    import java.util.Map;
    import java.util.Set;
    import java.util.SortedSet;
    import java.util.TreeSet;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class NameMatcher {
    
        static {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top