Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for hognorsk (0.18 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/PathTest.groovy

            expect:
            Matchers.strictlyEquals(new Path('file://$ROOT_DIR$/file'), new Path('file://$ROOT_DIR$/file'))
            new Path('file://$ROOT_DIR$/file') != new Path('file://$ROOT_DIR$/other')
        }
    
        def "equals honors subclasses"() {
            expect:
            new Path('file://$ROOT_DIR$/file') == new FilePath(null, null, 'file://$ROOT_DIR$/file', null)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/cache/internal/HeapProportionalCacheSizerTest.groovy

            100       | 400
            200       | 400
            768       | 1600
            1024      | 2300
            1536      | 3600
            2048      | 4900
        }
    
        def "cache cap sizer honors reserved space when specified"() {
            given:
            System.setProperty(HeapProportionalCacheSizer.CACHE_RESERVED_SYSTEM_PROPERTY, reserved.toString())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 14 07:38:37 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/plugins/LifecycleBasePluginIntegrationTest.groovy

            """
    
            then:
            succeeds(taskName)
            executed(":myTask")
    
            where:
            taskName << ["check", "build"]
        }
    
        def "clean task honors changes to build dir location"() {
            buildFile << """
                buildDir = 'target'
            """
            def buildDir = file("build")
            buildDir.mkdirs()
            def targetDir = file("target")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

            then:
            def aLog = readLog(executer.daemonBaseDir)
            aLog.findAll(DaemonMessages.STARTED_EXECUTING_COMMAND).size() == 2
        }
    
        def "daemon log honors log levels for logging"() {
            given:
            file("build.gradle") << """
                println 'println me!'
    
                logger.debug('debug me!')
                logger.info('info me!')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/mvnsettings/DefaultLocalMavenRepositoryLocatorTest.groovy

            ex.cause instanceof SettingsParseException
        }
    
        def "honors location specified in user settings file"() {
            writeSettingsFile(locations.userSettingsFile, repo1)
    
            expect:
            locator.localMavenRepository == repo1
        }
    
        def "honors location specified in global settings file"() {
            writeSettingsFile(locations.globalSettingsFile, repo1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeSwiftWithXCTestProjectIntegrationTest.groovy

        @Override
        protected List<ExpectedXcodeTarget> getExpectedXcodeTargets() {
            return super.getExpectedXcodeTargets() + [new ExpectedXcodeTarget('AppTest')]
        }
    
        @ToBeFixedForConfigurationCache
        def "honors Swift source compatibility difference on both tested component (#componentSourceCompatibility) and XCTest component (#xctestSourceCompatibility)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

            problems.assertResultHasProblems(failure) {
                withProblem "Task `:report` of type `org.gradle.api.DefaultTask`: invocation of 'Task.extensions' at execution time is unsupported."
            }
        }
    
        def "honors task up-to-date spec"() {
            buildFile << """
                abstract class TaskWithComplexInputs extends DefaultTask {
                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest.groovy

            swift3Component.assertTestCasesRan(testExecutionResult)
        }
    
        @ToBeFixedForConfigurationCache
        def "honors Swift source compatibility difference on both tested component (#componentSourceCompatibility) and XCTest component (#xctestSourceCompatibility)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/NativeCompilerTest.groovy

            when:
            def args = compiler.getSourceArgs(sourceFile)
    
            then:
            args == [sourceFile.absoluteFile.toString()]
        }
    
        def "output file directory honors output extension '#extension' and directory"() {
            given:
            def compiler = getCompiler()
            def testDir = tmpDirProvider.testDirectory
            def sourceFile = testDir.file("source.ext")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerCppBuildExportIntegrationTest.groovy

            ),
        ]
    )
    """
            swiftPmBuildSucceeds()
        }
    
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "honors customization of component basename"() {
            given:
            createDirs("lib1", "lib2")
            settingsFile << "include 'lib1', 'lib2'"
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top