Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Sall (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    - a `writeObject` method with no corresponding `readObject`; `writeObject` must eventually call `ObjectOutputStream.defaultWriteObject`;
    - a `readObject` method with no corresponding `writeObject`; `readObject` must eventually call `ObjectInputStream.defaultReadObject`;
    - a `writeReplace` method to allow the class to nominate a replacement to be written;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    * A `File` — used as a file path
    * A `FileCollection` or `FileTree` — all files in the collection are included in the copy
    * A task — the files or directories that form a task's <<incremental_build.adoc#sec:task_inputs_outputs,defined outputs>> are included
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    In most cases, you will need to apply the changes from all versions that come after the one you're upgrading from.
    For example, if you're upgrading from Gradle 4.3 to 5.0, you will also need to apply the changes since 4.4, 4.5, etc up to 5.0.
    
    TIP: If you are using Gradle for Android, you need to move to version 3.3 or higher of both the Android Gradle Plugin and Android Studio.
    
    == For all users
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            and:
            1 * callable.call() >> ["src1", "src2"]
            _ * fileResolver.resolve("src1") >> file1
            _ * fileResolver.resolve("src2") >> file2
            0 * _
    
            when:
            def f2 = elements.get()
    
            then:
            f2*.asFile == [file2]
    
            and:
            1 * callable.call() >> ["2"]
            _ * fileResolver.resolve("2") >> file2
            0 * _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            doesNotHaveLegacyLegend()
            hasSecondaryVariantsLegend()
        }
    
        def "can show all variants"() {
            buildFile << """
                plugins { id 'java-library' }
                group = 'org'
                version = '1.0'
            """
    
            when:
            run ':outgoingVariants', '--all'
    
            then:
            def jarPath = file('build/libs/myLib-1.0.jar').getRelativePathFromBase()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

         * in most cases no class. If it is a class the class needs to be imported explicitly. The effect is that in an expression like "def foo = bar" we do not have to use a loadClass call to check the
         * name foo and bar for being classes. Instead we will ask the module for an alias for this name which is much faster.
         */
        private static class LowerCaseClass extends ClassNode {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputDoesNotContain('Providing metadata for group:projectA:1.1')
    
            and: "remote status file parsed only once"
            outputContains 'Parsing status file call count: 1'
            outputDoesNotContain('Parsing status file call count: 2')
    
            when: "resolving the same dependencies"
            server.expectHead("/repo/status.txt", statusFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

        }
    
        def "queries initial value for every call to get()"() {
            expect:
            def initialValue = toMutable(["abc"])
            property.set(initialValue)
            assertValueIs(["abc"])
            initialValue.add("added")
            assertValueIs(["abc", "added"])
        }
    
        def "queries underlying provider for every call to get()"() {
            def provider = Stub(ProviderInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @see Project#beforeEvaluate(Action)
         *
         * @param closure The closure to call.
         */
        void beforeEvaluate(Closure closure);
    
        /**
         * <p>Adds a closure to call immediately after this project is evaluated.</p>
         *
         * @see Project#afterEvaluate(Action)
         *
         * @param closure The closure to call.
         */
        void afterEvaluate(@DelegatesTo(Project.class) Closure closure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ==== Calling Kotlin from Groovy
    
    To call a Kotlin function that has named arguments from Groovy, just use a normal method call with positional parameters.
    There is no way to provide values by argument name.
    
    To call a Kotlin function that has default arguments from Groovy, always pass values for all the function parameters.
    
    ==== Calling Groovy from Kotlin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top