Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 186 for Sall (0.03 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

        }
    
        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "Usage with Configuration Cache is tested separately, because not all versions are supported")
        def "can use plugin #version"() {
            given:
            def versionNumber = VersionNumber.parse(version)
    
            when:
            usePluginVersion version
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

                        "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: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                return input.isPrimitive();
            }
        };
    
        static <T> DescribedPredicate<Collection<T>> thatAll(DescribedPredicate<T> predicate) {
            return new DescribedPredicate<Collection<T>>("that all %s", predicate.getDescription()) {
                @Override
                public boolean test(Collection<T> input) {
                    return input.stream().allMatch(predicate);
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            return getCompileBuildFileOperationsCount(buildOperations)
        }
    
        int getCompileBuildFileOperationsCount(BuildOperationTreeQueries buildOperations) {
            return buildOperations.all(CompileScriptBuildOperationType).size()
        }
    
        DaemonsFixture getDaemons() {
            new DaemonLogsAnalyzer(executer.daemonBaseDir)
        }
    
        void hasScript(String path, List<ClassDetails> scripts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

            return useIncubatingAPIs;
        }
    
        /**
         * Java version to be used by generated Java projects.
         *
         * When set, Gradle will use the provided value as the target major Java version
         * for all relevant generated projects.  Gradle will validate the number to ensure
         * it is a valid and supported major version.
         *
         * @return the java version number supplied by the user
         * @since 8.5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

        }
    
        public void transform(Transformer t) {
            logger.lifecycle("transform(Transformer)")
        }
    }
    
    task print(type: MyTask) {
        transform(Impl) // should call transform(Class)
    }
            """
    
            expect:
            succeeds("print")
            outputContains("transform(Class)")
        }
    
        def failsWhenTryingToCallMethodWithClassValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

         * If the callable returns null, then the returned Try instance will hold null as its value.
         */
        public static <U> Try<U> ofFailable(Callable<U> failable) {
            try {
                return Try.successful(failable.call());
            } catch (Exception e) {
                return Try.failure(e);
            }
        }
    
        /**
         * Construct a {@code Try} representing a successful execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    If the `--overwrite` option is provided, Gradle will overwrite any existing files in the directory where the `init` task runs. By default, `init` will prompt the user to continue if Gradle finds any files in the directory.
    
    All build types also set up <<gradle_wrapper.adoc#gradle_wrapper_reference, Gradle Wrapper>> in the build.
    
    [[sec:build_init_types]]
    == Build init types
    
    
    [[sec:pom_maven_conversion]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

    import spock.lang.Issue
    
    import java.nio.file.Paths
    
    import static org.gradle.api.internal.DocumentationRegistry.BASE_URL
    import static org.gradle.api.internal.DocumentationRegistry.RECOMMENDATION
    
    // TODO: Move all of these tests to AbstractJavaCompilerIntegrationSpec
    // so that we can verify them for forking, in-process, and cli compilers.
    class JavaCompileIntegrationTest extends AbstractIntegrationSpec {
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    * For new features, the feature should be mentioned in the [Release Notes](platforms/documentation/docs/src/docs/release/notes.md).
    
    Your code needs to run on [all versions of Java that Gradle supports](platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc) and across all supported operating systems (macOS, Windows, Linux). The [Gradle CI system](http://builds.gradle.org/) will verify this, but here are some pointers that will avoid surprises:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top