Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stableClasspath (1.27 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

            classpath = objectFactory.fileCollection();
            // Create a stable instance to represent the classpath, that takes care of conventions and mutations applied to the property
            stableClasspath = objectFactory.fileCollection();
            stableClasspath.from(new Callable<Object>() {
                @Override
                public Object call() {
                    return getClasspath();
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

                    }
                }
                with(inputFileProperties, List) {
                    !empty
                    with(it.find { it instanceof Map && it['propertyName'] == 'stableClasspath' }, Map) {
                        files.collect { new File(it as String) }.containsAll(expectedClasspath)
                    }
                }
                with(outputFileProperties, List) {
                    !empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top