Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 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/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        if (::testing::internal::IsTrue(condition)) \
          ; \
        else \
          GTEST_LOG_(FATAL) << "Condition " #condition " failed. "
    
    // An all-mode assert to verify that the given POSIX-style function
    // call returns 0 (indicating success).  Known limitation: this
    // doesn't expand to a balanced 'if' statement, so enclose the macro
    // in {} if you need to use it as the only statement in an 'if'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                def VERSION_SCHEME = new DefaultVersionSelectorScheme(VERSIONED_COMPARATOR, new VersionParser())
    
                configurations.all {
                    resolutionStrategy.dependencySubstitution.all {
                        def substituteFromVersion = "[1.2,)"
                        def substituteToVersion = "1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            }
    
            expect:
            registry.realize("b", Bean).value == "b-mutate a-defaults"
            registry.realize("a", Bean).value == "a-mutate"
        }
    
        def "can attach a mutator with inputs to all elements linked from an element"() {
            given:
            registry.register("parent") { it.unmanagedNode Integer, { MutableModelNode node ->
                node.applyTo(allLinks(), ModelActionRole.Mutate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                                attributes.attribute(color, 'red')
                            }
                        }
                    }
                    configurations.implementation.resolutionStrategy.dependencySubstitution.all {
                        // To trigger the substitution: include dependency substitution rule to include external dependencies in the execution graph calculation
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
Back to top