Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 100 for Here (0.32 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/CodeGeneratingSignatureTreeVisitor.java

            TypeName entryChildType = TypeUtils.typeName(entry.type);
            CodeBlock matchExpr = entry.kind == RECEIVER_AS_CLASS ?
                CodeBlock.of("$L.equals($T.class)", argExpr, entryChildType) :
                // Vararg fits here, too:
                CodeBlock.of("$1L == null || $1L instanceof $2T", argExpr, entryChildType.box());
            result.beginControlFlow("if ($L)", matchExpr);
            boolean shouldPopParameter = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    When the action requires no parameters, you can use link:{javadocPath}/org/gradle/api/flow/FlowParameters.None.html[FlowParameters.None] as the type of parameter.
    
    Here is an example of a dataflow action that takes a shared build service and a file path as parameters:
    
    ====
    [source.multi-language-sample,java]
    .SoundPlay.java
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/util/VersionNumber.java

    import com.google.common.base.Objects;
    import com.google.common.collect.Ordering;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import javax.annotation.Nullable;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class VersionNumber implements Comparable<VersionNumber> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    - `UP-TO-DATE` - tasks that used incremental build and were not re-run.
    
    To summarize:
    
    1. First, we used the `build` task to populate our local cache with task inputs and outputs -- we can imagine this was done a week ago.
    2. Then, we used the `clean` task to mimic switching branches -- overriding previous outputs.
    3. Finally, we used the `build` task -- unlike incremental builds, the previous outputs were stored in the local cache and could be reused.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Arrays;
    import java.util.Locale;
    import java.util.regex.Pattern;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     * <p>
     * Plugins should prefer external frameworks over this class.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class TextUtil {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    If task B uses the output of task A, then task A must complete before task B begins.
    
    - A task may declare its dependencies explicitly.
    - A task may depend on other tasks implicitly.
    
    Here is an example of explicit task dependency:
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    tasks.register("hello") {
        doLast {
            println("Hello!")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    == Java and Kotlin compilation
    
    The <<caching_java_projects.adoc#java_compilation,discussion>> above in “Caching Java projects” is equally relevant here, with the caveat that, for projects that include Kotlin source code, the Kotlin compiler does not currently support <<java_plugin.adoc#sec:java_compile_avoidance,compile avoidance>> in the way that the Java compiler does.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    Develocity provides much richer data compared to what can be obtained from CI servers.
    For example, you can get insights into the execution of single tasks, how many tasks were retrieved from the cache, how long it took to download from the cache, the properties that were used to calculate the cache key and more.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

            append(totalProblemCount)
            append(if (totalProblemCount == 1) " problem was found " else " problems were found ")
            append(cacheAction)
            append(" the configuration cache")
            if (overflowed) {
                append(", only the first ")
                append(maxCollectedProblems)
                append(" were considered")
            }
            if (totalProblemCount != uniqueProblemCount) {
                append(", ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

            with(standardError) {
                files.forEach {
                    assertContains("API changes in file '${it.name}' should be in alphabetical order (by type and member), yet these changes were not:\n")
                }
                changes?.forEach { assertContains(it.toString()) }
                assertContains(cleanupHint)
            }
        }
    
        private
        fun StringWriter.assertContains(text: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top