Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 408 for Sall (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    You also want to ensure that all consumers of the property see the same value when they query the value.
    
    [[lazy_configuration_faqs]]
    == Using the Provider API
    
    Guidelines to be successful with the Provider API:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    include::{snippetsPath}/ant/useAntTask/tests/useAntTask.out[]
    ----
    
    TIP: You can mix Groovy/Kotlin code and the Ant task markup. This can be extremely powerful.
    
    You pass nested text to an Ant task as a parameter of the task method call.
    In this example, we pass the message for the `echo` task as nested text:
    
    ====
    include::sample[dir="snippets/ant/taskWithNestedText/kotlin",files="build.gradle.kts"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/testFixtures/groovy/org/gradle/workers/fixtures/WorkerExecutorFixture.groovy

                            files = list.collect { it as String }
                            outputDir = new File(outputFileDirPath)
                            bar = foo
                            additionalParameters.call(parameters)
                        }
                    }
                }
            """
        }
    
        WorkActionClass workActionClass(String name, String packageName, WorkParameterClass parameterClass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 12:36:12 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutorTest.groovy

            1 * valueSnapshotter.snapshot(_) >> inputsSnapshot
            1 * store.getIfPresent(keyHash) >> cachedEntry
            if (expired) {
                // should check that the recorded service call returns the same value
                1 * record.getInput() >> '124'
                1 * record.getOutput() >> TestHashCodes.hashCodeFrom(10000)
                1 * cachedResult.isChanging() >> changing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

                }
    
                signing {
                    ${signingConfiguration()}
                    sign publishing.publications.mavenJava
                }
    
                signMavenJavaPublication.signatures.all { signature ->
                    if (signature.toSign.name.endsWith('.jar')) {
                        signMavenJavaPublication.signatures.remove signature
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginCrossVersionSmokeTest.kt

                "The Provider.forUseAtConfigurationTime method has been deprecated. " +
                    "This is scheduled to be removed in Gradle 9.0. " +
                    "Simply remove the call. " +
                    "Consult the upgrading guide for further information: " +
                    "https://docs.gradle.org/current/userguide/upgrading_version_7.html#for_use_at_configuration_time_deprecation"
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

                                    if (absolutePath == null) {
                                        LOGGER.info("Overflow detected (type: {}), invalidating all watched files", type);
                                        fileWatcherUpdater.getWatchedFiles().visitRoots(watchedRoot ->
                                            handler.handleChange(OVERFLOW, Paths.get(watchedRoot)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependency.java

         * for this failure is abstract, we need to create an anonymous instance of it ourselves here, since there are
         * no instantiator types available here.
         *
         * NOTE: This should all be going away in Gradle 9, so it's okay to remain ugly for a little while.
         *
         * @param selectedConfiguration the non-consumable configuration that was selected
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                    count = socket.write(buffer);
                    if (count < 0) {
                        throw new EOFException();
                    } else if (count == 0) {
                        // buffer was full, just call Thread.yield
                        Thread.yield();
                    }
                }
                return count;
            }
    
            private void waitForWriteBufferToDrain() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    ### `variants` value
    
    This value must contain an array with zero or more elements. Each element must be an object with the following values:
    
    - `name`: The name of the variant. A string. The name must be unique across all variants of the component.
    - `attributes`: optional. When missing the variant is assumed to have no attributes.
    - `available-at`: optional. Information about where the metadata and files of this variant are available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top