Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,744 for somme (0.04 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForBuildOperationsTest.groovy

                assert event.descriptor.displayName == 'some build'
                assert event.descriptor.parent == null
            }
        }
    
        def "convert to BuildStartEvent"() {
            given:
            def listener = Mock(ProgressListener)
            def adapter = createAdapter(listener)
    
            when:
            def buildDesc = buildDescriptor(666, 'some build')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

            given:
            def output = """
    Some message
    
    FAILURE: broken
    
    * Exception is:
    Some.Failure
    """
            def errorOutput = """
    Some error
    """
    
            when:
            def failure = OutputScrapingExecutionFailure.from(output, errorOutput)
    
            then:
            failure.assertOutputContains("Some message")
            failure.assertHasErrorOutput("Some error")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            given:
            projectLayoutRegistry.get("some-type") >> defaultGenerator
            defaultGenerator.id >> "some-type"
            defaultGenerator.modularizationOptions >> [ModularizationOption.SINGLE_PROJECT]
            defaultGenerator.dsls >> [KOTLIN]
            defaultGenerator.getTestFrameworks(_) >> [NONE, JUNIT]
            init.type = "some-type"
            init.testFramework = "spock"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            def testValue2 = OperatingSystem.current().windows ? 'some value$PATH' : 'some value\\\\$PATH'
            def testValue3 = 'some value%PATH%'
            file("build.gradle") << '''
                application.applicationDefaultJvmArgs = [
                    '-DtestValue=value',
                    '-DtestValue2=some value$PATH',
                    '-DtestValue3=some value%PATH%',
                ]
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

                extensions.getByType(MyExtension::class).some("api.get")
                extensions.configure<MyExtension> { some("api.configure") }
                the<MyExtension>().some("kotlin.reified.get")
                the(MyExtension::class).some("kotlin.kclass.get")
                configure<MyExtension> { some("kotlin.configure") }
                my.some("accessor.get")
                my { some("accessor.configure") }
            """)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTaskOperationsTest.groovy

            when:
            def taskDescriptor = Mock(InternalTaskDescriptor)
            _ * taskDescriptor.getId() >> ":someTask"
            _ * taskDescriptor.getName() >> 'some task'
            _ * taskDescriptor.getDisplayName() >> 'some task in human readable form'
            _ * taskDescriptor.getTaskPath() >> ':some:path'
            _ * taskDescriptor.getParentId() >> null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            when:
            def commandLineExecution = factory.convert(["--some-option"])
            commandLineExecution.execute(executionListener)
    
            then:
            1 * actionFactory1.configureCommandLineParser(!null) >> {
                CommandLineParser parser -> parser.option("some-option")
            }
            1 * actionFactory2.configureCommandLineParser(!null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginSyntheticIntegrationTest.kt

                assertHasErrorOutput("ERROR")
            }
    
            withPrecompiledKotlinScript(
                "some.gradle.kts", """
                plugins {
                    ${outputFrom("plugins block", logger = false)}
                    id("applied-output")
                    TODO("some plugins block failure")
                }
            """
            )
            buildAndFail(":compileKotlin").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. docs/fr/docs/python-types.md

    Vous pouvez déclarer tous les types  de Python, pas seulement `str`.
    
    Comme par exemple :
    
    * `int`
    * `float`
    * `bool`
    * `bytes`
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial005.py!}
    ```
    
    ### Types génériques avec des paramètres de types
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

            def file2 = new File("b")
    
            expect:
            def collection1 = factory.fixed("some collection", file1, file2)
            collection1.files == [file1, file2] as Set
            collection1.buildDependencies.getDependencies(null).empty
            collection1.toString() == "some collection"
    
            def collection2 = factory.fixed("some collection", [file1, file2])
            collection2.files == [file1, file2] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top