Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,298 for somme (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInKotlinIntegrationTest.groovy

            "System.getProperties().get(\"some.property\")"            | _
            "System.getProperty(\"some.property\")"                    | _
            "System.getProperty(\"some.property\", \"default.value\")" | _
            "System.setProperty(\"some.property\", \"new.value\")"     | _
            "System.clearProperty(\"some.property\")"                  | _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/code/UserCodeApplicationContext.java

    import javax.annotation.Nullable;
    import java.util.function.Supplier;
    
    /**
     * Assigns and stores an ID for the application of some user code (e.g. scripts and plugins).
     */
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface UserCodeApplicationContext {
        /**
         * Applies some user code, assigning an ID for this particular application.
         *
         * @param source The source of the code being applied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginCrossVersionSmokeTest.kt

                    kotlinOptions.freeCompilerArgs += "-Xskip-metadata-version-check"
                }
                """
            )
            withFile("buildSrc/src/main/kotlin/some.gradle.kts", """println("some!")""")
    
            withDefaultSettings()
            withBuildScript("""plugins { id("some") }""")
    
            expectConventionDeprecations()
            expectKotlinDslPluginDeprecation()
            if (GradleContextualExecuter.isConfigCache()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsGroovyDSLIntegrationTest.groovy

            when:
            plugin.allowAll()
            succeeds taskName
    
            then:
            outputContains message
    
            where:
            alias << ['greeter', 'some.greeter', 'some-greeter']
        }
    
        def "can apply a plugin declared in a catalog in a TOML file"() {
            String taskName = 'greet'
            String message = 'Hello from plugin!'
            String pluginId = 'com.acme.greeter'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. docs/fr/docs/tutorial/path-params.md

    vous verrez comme réponse :
    
    ```JSON
    {"item_id":"foo"}
    ```
    
    ## Paramètres de chemin typés
    
    Vous pouvez déclarer le type d'un paramètre de chemin dans la fonction, en utilisant les annotations de type Python :
    
    
    ```Python hl_lines="7"
    {!../../../docs_src/path_params/tutorial002.py!}
    ```
    
    Ici, `item_id` est déclaré comme `int`.
    
    !!! check "vérifier"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top