Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  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/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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            when:
            property.finalizeValue()
    
            then:
            1 * function.call() >> {
                // Emulate concurrent get() in other thread
                EvaluationContext.current().evaluateNested(property::get)
            }
            1 * function.call() >> someValue()
            0 * function._
    
            when:
            def result = property.get()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    link:{javadocPath}/org/gradle/api/provider/Provider.html#forUseAtConfigurationTime--[Provider#forUseAtConfigurationTime] is now deprecated and scheduled for removal in Gradle 9.0.
    Clients should simply remove the call.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    table.grid-all th.tableblock,
    table.grid-all td.tableblock {
    	border-width: 0 1px 1px 0;
    }
    
    table.grid-all tfoot>tr>th.tableblock,
    table.grid-all tfoot>tr>td.tableblock {
    	border-width: 1px 1px 0 0;
    }
    
    table.grid-cols th.tableblock,
    table.grid-cols td.tableblock {
    	border-width: 0 1px 0 0;
    }
    
    table.grid-all *>tr>.tableblock:last-child,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      virtual ~Test();
    
      // Sets up the stuff shared by all tests in this test case.
      //
      // Google Test will call Foo::SetUpTestCase() before running the first
      // test in test case Foo.  Hence a sub-class can define its own
      // SetUpTestCase() method to shadow the one defined in the super
      // class.
      static void SetUpTestCase() {}
    
      // Tears down the stuff shared by all tests in this test case.
      //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

                implementation("com:foo")
            }
        }
    }
    
    configurations.testImplementation {
        // Calling `all` here realizes/observes all lazy sources, including the `DependencyCollector`
        // from the test suite block. Operations like resolving a configuration similarly realize lazy sources.
        dependencies.all {
            if (this is ExternalDependency && group == "com" && name == "foo" && version == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top