Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BOTH (0.51 sec)

  1. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRuleTest.groovy

            where:
            type         | result
            'internal'   | "\"${replaceAsInternal(InternalInterface.name)}\""
            'incubating' | "\"${IncubatingInterface.name}\""
        }
    
        def "do not report if they are both incubating"() {
            given:
            apiClass.newClass >> Optional.of(newIncubatingBase)
            newSuper.addInterface(incubatingInterface)
    
            expect:
            noViolation(rule)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheKeyIntegrationTest.groovy

            when:
            configurationCacheRun "help", "--offline"
            then:
            configurationCache.assertStateStored()
    
            // Now repeat invocations in different order to make sure both entries can be reused
            when:
            configurationCacheRun "help"
            then:
            configurationCache.assertStateLoaded()
    
            when:
            configurationCacheRun "help", "--offline"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

    /**
     * Base class for tests that invoke external process with the dynamic Groovy code.
     * There are many different ways to run a process in Groovy, and all are producing different byte code.
     * The class supports compiling Groovy code in both indy and old-school CallSite modes.
     */
    abstract class AbstractProcessInstrumentationInDynamicGroovyIntegrationTest extends AbstractProcessInstrumentationIntegrationTest implements DynamicGroovyPluginMixin {
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryWalkerTest.groovy

            return [
                new DefaultDirectoryWalker(TestFiles.fileSystem()),
                new ReproducibleDirectoryWalker(TestFiles.fileSystem())
            ]
        }
    
        def "both DirectoryWalker implementations return same set of files and attributes"() {
            given:
            def rootDir = tmpDir.createDir("root")
            generateFilesAndSubDirectories(rootDir, 10, 5, 3, 1, new AtomicInteger())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top