Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 396 for Sall (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/AbstractInstrumentationProcessor.java

                // The order in which the executable elements are listed should be the order in which they appear in the code but
                // we take an extra measure of care here and ensure the ordering between all elements.
                .sorted(Comparator.comparing(AbstractInstrumentationProcessor::elementQualifiedName))
                .distinct()
                .collect(Collectors.toList());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

            node.getHardSuccessors().forEach(successor -> {
                // We are searching for dependencies between tasks, so we can skip everything which is not a task when searching.
                // For example we can skip all the transform nodes between two task nodes.
                if (successor instanceof TaskNode || successor instanceof OrdinalNode) {
                    if (seenNodes.add(successor)) {
                        queue.add(successor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

            MinimalGroovyCompilerDaemonForkOptions groovyOptions = spec.getGroovyCompileOptions().getForkOptions();
            // Ant is optional dependency of groovy(-all) module but mandatory dependency of Groovy compiler;
            // that's why we add it here. The following assumes that any Groovy compiler version supported by Gradle
            // is compatible with Gradle's current Ant version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

            when:
            writeVerificationMetadata(checksums)
            succeeds ':help'
    
            then:
            output.contains "You chose to generate ${message} checksums but they are all considered insecure. You should consider adding at least one of sha256 or sha512 or pgp."
    
            where:
            checksums   | message
            "md5"       | "md5"
            "sha1"      | "sha1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

        @Serializable
        @SerialName("configuringLambdaArgument")
        data class DefaultConfiguringLambdaArgument(override val objectType: DataTypeRef) : ConfigureAccessor.ConfiguringLambdaArgument
    
        // TODO: configure all elements by addition key?
        // TODO: Do we want to support configuring external objects?
    }
    
    
    @Serializable
    data class DefaultFqName(override val packageName: String, override val simpleName: String) : FqName {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top