Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for browser (0.2 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileParallelIntegrationTest.groovy

    @Requires([IntegTestPreconditions.NotParallelExecutor, IntegTestPreconditions.MoreThanOneJavacAvailable])
    class JavaCompileParallelIntegrationTest extends AbstractIntegrationSpec {
        @Issue("https://issues.gradle.org/browse/GRADLE-3029")
        def "system property java.home is not modified across compile task boundaries"() {
            def projectNames = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildSourceBuilderIntegrationTest.groovy

    @IntegrationTestTimeout(600)
    class BuildSourceBuilderIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2032")
        def "can simultaneously run gradle on projects with buildSrc"() {
            initScript """
                import ${BuildOperationListenerManager.name}
                import ${BuildOperationListener.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskEncodingIntegrationSpec.groovy

    @DoesNotSupportNonAsciiPaths(reason = "Uses non-Unicode default charset")
    class CopyTaskEncodingIntegrationSpec extends AbstractIntegrationSpec {
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2181")
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "can copy files with unicode characters in name with non-unicode platform encoding"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

            then:
            project.classpathContainers.find { it.path.startsWith('org.eclipse.jdt.launching.JRE_CONTAINER') && it.path.contains('customJavaRuntime') }
        }
    
        @Issue('https://issues.gradle.org/browse/GRADLE-3231')
        def "Whether or not the eclipse plugin is explicitly applied, the same model is retrieved "() {
            setup:
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestClassDetectionIntegrationTest.groovy

    import spock.lang.Issue
    
    abstract class AbstractJUnitTestClassDetectionIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2527")
        def "test class detection works for custom test tasks"() {
            given:
            buildFile << """
                apply plugin:'java'
                ${mavenCentralRepository()}
    
                sourceSets {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomMailingList.java

         */
        Property<String> getPost();
    
        /**
         * The URL where you can browse the archive of this mailing list.
         */
        Property<String> getArchive();
    
        /**
         * The alternate URLs where you can browse the archive of this mailing list.
         */
        SetProperty<String> getOtherArchives();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/BadPomFileResolveIntegrationTest.groovy

        def setup() {
            settingsFile """
                rootProject.name = 'test'
            """
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-1005")
        def "can handle self referencing dependency"() {
            given:
            mavenRepo().module('group', 'artifact', '1.0').dependsOn('group', 'artifact', '1.0').publish()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:31:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/Special.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model;
    
    /**
     * Out on its own due to http://jira.codehaus.org/browse/GROOVY-7010
     */
    public interface Special {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 750 bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyDocIntegrationTest.groovy

                dependencies {
                    implementation "${groovyModuleDependency("groovy", versionNumber)}"
                }
            """
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-3116")
        def "can run groovydoc"() {
            when:
            file("src/main/groovy/pkg/Thing.groovy") << """
                package pkg
    
                class Thing {}
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            String rewritten = document.body().html();
            // Turn Gradle Jira issue numbers into issue links
            rewritten = rewritten.replaceAll("GRADLE-\\d+", "<a href=\"https://issues.gradle.org/browse/$0\">$0</a>");
            // Turn Gradle Github issue numbers into issue links
            rewritten = rewritten.replaceAll("(gradle/[a-zA-Z\\-_]+)#(\\d+)", "<a href=\"https://github.com/$1/issues/$2\">$0</a>");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top