Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 5,298 for somme (0.05 sec)

  1. 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)
  2. pkg/test/framework/components/echo/config/param/template_test.go

    		{
    			name:        "wrong param",
    			template:    "{{ .Other.some.thing }}",
    			expectFound: false,
    		},
    		{
    			name:        "basic",
    			template:    "{{ .To }}",
    			expectFound: true,
    		},
    		{
    			name:        "with method calls",
    			template:    "{{ .To.some.thing }}",
    			expectFound: true,
    		},
    		{
    			name:        "if",
    			template:    "{{ if .To.some.thing }}{{ end }}",
    			expectFound: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/KotlinDslTestProjectInitiation.groovy

            def some = withFile("some.gradle.kts", getBuildScriptDependency(someJar))
            def settings = withSettings("""${getBuildScriptDependency(settingsJar)}
                apply(from = "some.gradle.kts")
                include("a", "b")
            """)
            def root = withBuildScript("""
                ${getBuildScriptDependency(rootJar)}
                apply(from = "some.gradle.kts")
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tests/test_tutorial/test_websockets/test_tutorial002_an_py39.py

        with pytest.raises(WebSocketDisconnect):
            with client.websocket_connect("/items/bar/ws?token=some-token") as websocket:
                message = "Message one"
                websocket.send_text(message)
                data = websocket.receive_text()
                assert data == "Session cookie or query token value is: some-token"
                data = websocket.receive_text()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. 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)
  9. tests/test_tutorial/test_websockets/test_tutorial002_an_py310.py

        with pytest.raises(WebSocketDisconnect):
            with client.websocket_connect("/items/bar/ws?token=some-token") as websocket:
                message = "Message one"
                websocket.send_text(message)
                data = websocket.receive_text()
                assert data == "Session cookie or query token value is: some-token"
                data = websocket.receive_text()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/toolchain/ToolChainAvailabilityTest.groovy

            availability.unavailable("some reason")
    
            when:
            availability.explain(visitor)
    
            then:
            1 * visitor.node("some reason")
        }
    
        def "visits message when unsupported"() {
            def visitor = Mock(DiagnosticsVisitor)
    
            given:
            def availability = new ToolChainAvailability()
            availability.unsupported("some reason")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top