Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,942 for somme (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

                    .sort() == ["another-file.txt", "file.txt", "some-ann-file.ann",
                                "some-ann-file.class", "some-dest-file.class",
                                "some-duplicated-file.class", "some-duplicated-file.class",
                                "some-header-file.class", "some-header-file.h"]
                throw new CompilationFailedException()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTestOperationsTest.groovy

            _ * testDescriptor.getName() >> 'some test suite'
            _ * testDescriptor.getDisplayName() >> 'some test suite in human readable form'
            _ * testDescriptor.getTestKind() >> InternalJvmTestDescriptor.KIND_SUITE
            _ * testDescriptor.getSuiteName() >> 'some suite'
            _ * testDescriptor.getClassName() >> 'some class'
            _ * testDescriptor.getMethodName() >> 'some method'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/arguments_test.go

    				{Name: "token-auth-file", Value: "/token"},
    				{Name: "tls-sni-cert-key", Value: "/some/path/"},
    			},
    			overrides: []kubeadmapi.Arg{
    				{Name: "tls-sni-cert-key", Value: "/some/new/path"},
    				{Name: "tls-sni-cert-key", Value: "/some/new/path/subpath"},
    			},
    			expected: []string{
    				"--tls-sni-cert-key=/some/new/path",
    				"--tls-sni-cert-key=/some/new/path/subpath",
    				"--token-auth-file=/token",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            runtimeDep = distDir.createZip("lib/dep-1.2.jar")
    
            resourcesDir = tmpDir.createDir("some-module/build/resources/main")
            save(
                properties(runtime: 'dep-1.2.jar', projects: ''),
                resourcesDir.file("gradle-some-module-classpath.properties"))
    
            jarFile = distDir.file("lib/gradle-some-module-5.1.jar")
            resourcesDir.zipTo(jarFile)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

      - devicePath: /dev/disk/by-id/some-random-clusterb9772-pvc-c2435a06-14d7-11e7-9baf-42010a800049
        name: kubernetes.io/pd/some-random-clusterb9772-pvc-c2435a06-14d7-11e7-9baf-42010a800049
      - devicePath: /dev/disk/by-id/some-random-clusterb9772-pvc-8bf50554-fd42-11e6-94d4-42010a800049
        name: kubernetes.io/pd/some-random-clusterb9772-pvc-8bf50554-fd42-11e6-94d4-42010a800049
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top