Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,942 for somme (0.17 sec)

  1. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/BuildOptionSetTest.groovy

            def args = parser.parse("--some-option", "abc", "--some-flag")
            def bean = converter.convert(args, new Bean())
    
            then:
            bean.flag
            bean.prop == "abc"
        }
    
        def "can convert properties"() {
            def converter = set.propertiesConverter()
    
            when:
            def bean = converter.convert(["some.option": "abc", "some.flag": "true"], new Bean())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

                execute("some string", ["array"], file("test"))
    
                execute(["some", "string"] as String[])
                execute(["some", "string"] as String[], ["array"] as String[], file("test"))
                execute(["some", "string"] as String[], ["array"], file("test"))
    
                execute(["some", "string"])
                execute(["some", "string"], ["array"] as String[], file("test"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/TestClassExecutionEventGeneratorTest.groovy

            given:
            idGenerator.generateId() >> 1
            timeProvider.currentTime >> 1200
    
            when:
            processor.testClassStarted("some-test")
    
            then:
            1 * target.started({it.id == 1 && it.className == 'some-test'}, {it.startTime == 1200})
            0 * target._
        }
    
        def "fires event on test class finish"() {
            given:
            idGenerator.generateId() >> 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

            result.add(new TestMethodResult(1, "some test", "some test displayName", SUCCESS, 15, startTime + 25))
            result.add(new TestMethodResult(2, "some test two", "some test two displayName", SUCCESS, 15, startTime + 30))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

            message.contains('some.GradleScript.foo')
    
            message.contains('SimulatedJavaCallLocation.create')
            message.count('java.lang.reflect.Method.invoke') == 3
            message.contains('some.Class.withoutSource')
            message.contains('some.Class.withNativeMethod')
            message.contains('some.KotlinGradleScript')
    
            where:
            fakeStackTrace = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

                }
            """
    
            when:
            configurationCacheRun "some"
    
            then:
            result.groupedOutput.task(":some").assertOutputContains("FIRST").assertOutputContains("LAST")
    
            when:
            configurationCacheRun "some"
    
            then:
            result.groupedOutput.task(":some").assertOutputContains("FIRST").assertOutputContains("LAST")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInKotlinIntegrationTest.groovy

            ProcessGroovyMethodsExecute.execute(listOf("some", "string"))
            ProcessGroovyMethodsExecute.execute(listOf("some", "string"), arrayOf("string"), file("test"))
            ProcessGroovyMethodsExecute.execute(listOf("some", "string"), listOf("array"), file("test"))
    
            val e = RuntimeExec()
            e.exec("some string")
            e.exec("some string", arrayOf("string"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

                </activation>
                <properties>
                    <some.group>group-two</some.group>
                    <some.artifact>artifact-two</some.artifact>
                    <some.version>version-two</some.version>
                </properties>
            </profile>
        </profiles>
    </project>
    """
    
            when:
            parsePom()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoaderTest.groovy

            annotation.value() as Set == ["some-type", Transformer.name, Runnable.name] as Set
            annotation.classes() == [] as Class[]
        }
    
        static class Transformer {
        }
    }
    
    @GroovyASTTransformationClass("some-type")
    @interface WithNameSpecified {
    }
    
    @GroovyASTTransformationClass(["some-type", "some-other-type"])
    @interface WithNamesSpecified {
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/RemovePreviousOutputsStepTest.groovy

            0 * _
    
            !outputs.file.exists()
            outputs.dir.assertHasDescendants("some/notOutput1.txt", "some/notOutput2")
            !outputs.dir.file("some/dir").exists()
            !outputs.dir.file("some/lonelyDir").exists()
            !outputs.dir.file("some/another").exists()
            outputs.dir.file("some/notOutput2").isDirectory()
        }
    
        def "does not clean prepared directories"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top