Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 267 for light (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    Currently, Gradle has no good way to defend against these changes, and will simply cache whatever is in the output directory once the task is finished.
    This again can lead to corrupted results being uploaded to the shared cache.
    This recommendation might change when Gradle has added the necessary safeguards against unintentional modification of task inputs and outputs.
    
    [WARNING]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    external repository. Publishing configuration, such as a common group name for the libraries as well as the repository coordinates
    might be a cross-cutting concern that both libraries need to share. For this example let's also say that we want to enforce that
    our libraries expose some documentation with a common structure.
    
    == Organizing build logic
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr6_writing_tasks.adoc

    > Configure project :app
    BUILD SCRIPT: This is executed during the configuration phase
    
    BUILD SUCCESSFUL in 1s
    13 actionable tasks: 6 executed, 7 up-to-date
    ----
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. gradlew

    #   set -- "${ARGS[@]}" "$@"
    #
    # but POSIX shell has neither arrays nor command substitution, so instead we
    # post-process each arg (as a line of input to sed) to backslash-escape any
    # character that might be a shell metacharacter, then use eval to reverse
    # that process (while maintaining the separation between arguments), and wrap
    # the whole thing up as a single "set" statement.
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    * Providing user-specific information (e.g., authentication credentials)
    * Defining machine-specific details (e.g., JDK locations)
    * Registering build listeners (e.g., external tools that wish to listen to Gradle events might find this helpful)
    * Registering loggers (e.g., customize how Gradle logs the events that it generates)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. testing/precondition-tester/build.gradle.kts

            because("Smoke test preconditions are coming from here")
        }
    
        // This is a special dependency, as some of the preconditions might need a distribution.
        // E.g. see "IntegTestPreconditions.groovy"
        testImplementation(project(":distributions-core")) {
            because("Some preconditions might need a distribution to run against")
        }
    
        // ========================================================================
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/utils.kt

     */
    private
    fun sameType(left: DataType, right: DataType) = when (left) {
        is DataClass -> right is DataClass && left.name.qualifiedName == right.name.qualifiedName
        is DataType.BooleanDataType -> right is DataType.BooleanDataType
        is DataType.IntDataType -> right is DataType.IntDataType
        is DataType.LongDataType -> right is DataType.LongDataType
        is DataType.StringDataType -> right is DataType.StringDataType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashingTest.groovy

            def hash = hasher.hash()
            hash != Hashing.hashString("abc")
        }
    
        def 'hash collision for bytes'() {
            def left = [[1, 2, 3], [4, 5]]
            def right = [[1, 2], [3, 4, 5]]
            expect:
            hashKey(left) != hashKey(right)
        }
    
        def 'hash collision for strings'() {
            expect:
            hashStrings(["abc", "de"]) != hashStrings(["ab", "cde"])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseSensitiveVfsRelativePathTest.groovy

    import static org.gradle.internal.snapshot.PathUtil.getPathComparator
    
    class CaseSensitiveVfsRelativePathTest extends AbstractCaseVfsRelativePathTest {
    
        def "finds right entry in sorted list with only case differences"() {
            def children = ["bAd", "BaD", "Bad"]
            children.sort(getPathComparator(CASE_SENSITIVE))
            expect:
            for (int i = 0; i < children.size(); i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/print.css

        font-size: 240%;
        text-align: right;
    }
    
    .chapter > .titlepage h2 {
        font-size: 400%;
        text-align: right;
    }
    
    .chapter > .titlepage {
        margin-bottom: 4em;
    }
    
    .appendix > .titlepage h1 {
        font-size: 240%;
        text-align: right;
    }
    
    .appendix > .titlepage h2 {
        font-size: 400%;
        text-align: right;
    }
    
    .appendix > .titlepage {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top