Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,942 for somme (0.07 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

    eclipse {
      project {
        file {
          beforeMerged {
            assert it.natures.contains('some.nature.one')
            it.natures << 'some.nature.two'
          }
          whenMerged {
            assert it.natures.contains('some.nature.one')
            assert it.natures.contains('some.nature.two')
    
            it.natures << 'some.nature.three'
          }
        }
      }
    }
            """
            when:
            run "eclipse"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInDynamicGroovyIntegrationTest.groovy

                                         "System.getProperties().get('some.property')",
                                         "getProperties().get('some.property')",
                                         "System.getProperty('some.property')",
                                         "System.getProperty(*['some.property'])",
                                         "getProperty('some.property')",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultModuleComponentIdentifierTest.groovy

            null         | 'some-name' | '1.0'
            'some-group' | null        | '1.0'
            'some-group' | 'some-name' | null
        }
    
        def "can compare with other instance (#group, #name, #version)"() {
            expect:
            ModuleComponentIdentifier defaultModuleComponentIdentifier1 = new DefaultModuleComponentIdentifier(DefaultModuleIdentifier.newId('some-group', 'some-name'), '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/query-params.md

    ## Paramètres optionnels
    
    De la même façon, vous pouvez définir des paramètres de requête comme optionnels, en leur donnant comme valeur par défaut `None` :
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params/tutorial002.py!}
    ```
    
    Ici, le paramètre `q` sera optionnel, et aura `None` comme valeur par défaut.
    
    !!! check "Remarque"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/body.md

    ```
    
    Les paramètres de la fonction seront reconnus comme tel :
    
    * Si le paramètre est aussi déclaré dans le **chemin**, il sera utilisé comme paramètre de chemin.
    * Si le paramètre est d'un **type singulier** (comme `int`, `float`, `str`, `bool`, etc.), il sera interprété comme un paramètre de **requête**.
    * Si le paramètre est déclaré comme ayant pour type un **modèle Pydantic**, il sera interprété comme faisant partie du **corps** de la requête.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/VfsRelativePath.java

         *
         * Examples:
         * lengthOfCommonPrefix("some/path", "some/other") == 4
         * lengthOfCommonPrefix("some/path", "some1/other") == 0
         * lengthOfCommonPrefix("some/longer/path", "some/longer/other") == 11
         * lengthOfCommonPrefix("some/longer", "some/longer/path") == 11
         */
        public int lengthOfCommonPrefix(String relativePath, CaseSensitivity caseSensitivity) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            then:
            assertMainModuleIsPublished('some.group', 'deck', '1.2', targetMachines, ["some.group:card:1.2"])
            assertVariantsArePublished('some.group', 'deck', '1.2', ['debug', 'release'], targetMachines, ["some.group:shuffle:1.2", "some.group:card:1.2"])
    
            and:
            assertMainModuleIsPublished('some.group', 'card', '1.2', targetMachines)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FlatDirJvmLibraryArtifactResolutionIntegrationTest.groovy

            file("repo/some-artifact-1.0.jar").createFile()
            file("repo/some-artifact-1.0-sources.jar").createFile()
            file("repo/some-artifact-1.0-javadoc.jar").createFile()
        }
    
        private publishChanged() {
            file("repo/some-artifact-1.0.jar") << "more"
            file("repo/some-artifact-1.0-sources.jar") << "more"
            file("repo/some-artifact-1.0-javadoc.jar") << "more"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInStaticGroovyIntegrationTest.groovy

            "System.properties['some.property']"                   | _
            "System.getProperties().get('some.property')"          | _
            "getProperties().get('some.property')"                 | _
            "System.getProperty('some.property')"                  | _
            "getProperty('some.property')"                         | _
            "System.getProperty('some.property', 'default.value')" | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpecTest.groovy

            then:
            modulePath == [new File("/some/path"), new File("/some/path2")]
    
            where:
            description               | modulePathParameters
            "--module-path=<modules>" | ["--module-path=/some/path$File.pathSeparator/some/path2"]
            "--module-path <modules>" | ["--module-path", "/some/path$File.pathSeparator/some/path2"]
            "-p <modules>"            | ["-p", "/some/path$File.pathSeparator/some/path2"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top