Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for browser (0.1 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4JUnitIntegrationTest.groovy

    abstract class AbstractJUnit4JUnitIntegrationTest extends AbstractJUnitIntegrationTest implements JUnit4CommonTestSources {
        abstract boolean isSupportsBlockJUnit4ClassRunner()
    
        @Issue("https://issues.gradle.org//browse/GRADLE-3114")
        def "creates runner before tests"() {
            Assume.assumeTrue(supportsBlockJUnit4ClassRunner)
    
            given:
            file('src/test/java/org/gradle/CustomRunner.java') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperProjectIntegrationTest.groovy

            def result = wrapperExecuter.inDirectory(projectDir).withTasks('assertProjectDirHasMeta').run()
            then:
            result.assertTaskExecuted(":assertProjectDirHasMeta")
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-1871")
        void "can specify project properties containing D"() {
            given:
            prepareWrapper()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/ClassPageRenderer.java

                htmlWriter.startElement("div").attribute("class", "test")
                    .startElement("a").attribute("name", test.getId().toString()).characters("").endElement() //browsers dont understand <a name="..."/>
                    .startElement("h3").attribute("class", test.getStatusClass()).characters(test.getDisplayName()).endElement();
                for (TestFailure failure : test.getFailures()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/util/GradleVersionTest.groovy

        }
    
        def 'can parse commitId from commit version'() {
            expect:
            GradleVersion.version('5.1-commit-123abc').commitId == '123abc'
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-1892")
        def "build time should always print in UTC"() {
            expect:
            // Note: buildTime is null when running a local build
            version.buildTimestamp == null || version.buildTimestamp.endsWith("UTC")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesWithComponentReferenceIntegrationTest.groovy

    import spock.lang.Issue
    
    @UnsupportedWithConfigurationCache(because = "software model")
    class CustomComponentBinariesWithComponentReferenceIntegrationTest extends AbstractIntegrationSpec {
    
        @Issue("https://issues.gradle.org/browse/GRADLE-3422")
        def "@ComponentBinaries rule is not applied to component reference field of managed binary"() {
            buildFile << """
                @Managed interface SampleLibrary extends GeneralComponentSpec {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningConfigurationsSpec.groovy

            //        it would be easy if we could do…
            //
            // configurations.archives.buildArtifacts in signArchives.dependsOn
            //
            //        but we can't because of https://issues.gradle.org/browse/GRADLE-1608
    
            and:
            configurations.signatures.artifacts.size() == 3
            signingTasks.every { it.signatures.every { it in configurations.signatures.artifacts } }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomResolveIntegrationTest.groovy

                        module("newGroupA:projectA:1.2") // relocation is treated as a dependency in the graph
                    }
                }
            }
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2861")
        def "can handle pom with unspecified properties in dependency management"() {
            given:
            def parent = mavenHttpRepo.module('group', 'parent', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/SupportedOptionsCollectingProcessor.java

    import java.util.HashSet;
    import java.util.List;
    import java.util.Set;
    
    /**
     * Collects all registered processors' supported options.
     *
     * <p>This is a workaround for https://bugs.openjdk.java.net/browse/JDK-8162455, which
     * will be triggered a lot more during incremental compilations, and can fail builds
     * when combined with {@code -Werror}.
     *
     * <p>This processor needs to be added last to make sure that all other processors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestTestFrameworkIntegrationTest.groovy

            // The driver application for XCTest behave very differently on macOS and Linux.
            // It was hard to get the desired outcome on macOS and impossible for Linux. It
            // all seems to be related to https://bugs.swift.org/browse/SR-1127. On Linux,
            // we just can't assert that test output is captured correctly. Until we roll out
            // our own driver app, test output capture only works on macOS.
            return OperatingSystem.current().macOsX
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/jdk7/Jdk7SymlinkTest.groovy

            symlink.isSymlink(new File(testDirectory, 'testDir'))
    
            cleanup:
            // Need to delete the junction point manually because it's not supported by JDK
            // See: https://bugs.openjdk.java.net/browse/JDK-8069345
            new File(testDirectory, 'testDir').delete()
        }
    
        private static List<File> listSymlinkTestFiles() {
            def tempDir = new File(SystemProperties.getInstance().getJavaIoTmpDir())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top