Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for hognorsk (0.2 sec)

  1. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

            fails("check")
            then:
            testResult.assertTestClassesExecuted('SomeTest', 'NewTest')
        }
    
        @ToBeFixedForConfigurationCache(bottomSpecs = "XCTestTestFrameworkIntegrationTest")
        def "honors test case filter from --tests flag"() {
            given:
            createPassingFailingTest()
    
            when:
            run testTaskName, '--tests', "${testSuite('SomeOtherTest')}.${removeParentheses(passingTestCaseName)}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketExtensions.kt

    import okhttp3.internal.delimiterOffset
    import okhttp3.internal.trimSubstring
    import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
    
    /**
     * Models the contents of a `Sec-WebSocket-Extensions` response header. OkHttp honors one extension
     * `permessage-deflate` and four parameters, `client_max_window_bits`, `client_no_context_takeover`,
     * `server_max_window_bits`, and `server_no_context_takeover`.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            result.assertTasksExecuted(tasks.debug.allToLink, ":assemble")
    
            sharedLibrary("build/lib/main/debug/hello").assertExists()
        }
    
        @ToBeFixedForConfigurationCache
        def "honors changes to buildDir"() {
            given:
            settingsFile << "rootProject.name = 'hello'"
            def lib = new CppLib()
            lib.writeToProject(testDirectory)
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  9. cmd/os-reliable.go

    // syscall.ENOENT (parent does not exist).
    func reliableMkdirAll(dirPath string, mode os.FileMode, baseDir string) (err error) {
    	i := 0
    	for {
    		// Creates all the parent directories, with mode 0777 mkdir honors system umask.
    		if err = osMkdirAll(dirPath, mode, baseDir); err != nil {
    			// Retry only for the first retryable error.
    			if osIsNotExist(err) && i == 0 {
    				i++
    				// Determine if os.NotExist error is because of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

                    }
                }
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/14017")
        @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
        def "honors upstream excludes with available-at variant"() {
            given:
            mavenHttpRepo.module('org', 'moduleB', '1.0')
                .dependsOn(mavenHttpRepo.module("org", "moduleA", "1.0"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top