Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,298 for somme (0.04 sec)

  1. 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)
  2. src/io/example_test.go

    	// Output:
    	// first reader
    	// second reader
    }
    
    func ExampleCopyN() {
    	r := strings.NewReader("some io.Reader stream to be read")
    
    	if _, err := io.CopyN(os.Stdout, r, 4); err != nil {
    		log.Fatal(err)
    	}
    
    	// Output:
    	// some
    }
    
    func ExampleReadAtLeast() {
    	r := strings.NewReader("some io.Reader stream to be read\n")
    
    	buf := make([]byte, 14)
    	if _, err := io.ReadAtLeast(r, buf, 4); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinModifiersChangeTest.kt

                    fun Int.invoke(some: Int) {}
                    operator fun Boolean.invoke(some: Int) {}
    
                    fun String.invoke(some: Int) {}
                    operator fun Long.invoke(some: Int) {}
    
                    fun Float.invoke(some: Int) {}
                    infix fun Byte.invoke(some: Int) {}
    
                    interface Source {
                        infix fun String.plus(some: List<Int>): String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  7. test/typeparam/issue52026.go

    package main
    
    func returnOption[T any](n int) Option[T] {
    	if n == 1 {
    		return Some[T]{}
    	} else {
    		return None{}
    	}
    }
    
    type Option[T any] interface {
    	sealedOption()
    }
    
    type Some[T any] struct {
    	val T
    }
    
    func (s Some[T]) Value() T {
    	return s.val
    }
    
    func (s Some[T]) sealedOption() {}
    
    type None struct{}
    
    func (s None) sealedOption() {}
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 03 21:36:22 UTC 2022
    - 735 bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            hierarchy.recordNodeAccessingLocations(node1, ["/some/location"])
            hierarchy.recordNodeAccessingLocations(node2, ["/some/other/location"])
            hierarchy.recordNodeAccessingLocations(node3, ["/some/other/third"])
    
            expect:
            assertNodesAccessing("/some", node1, node2, node3)
            assertNodesAccessing("/some/other", node2, node3)
            assertNodesAccessing("/some/other/third", node3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.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. subprojects/core/src/test/groovy/org/gradle/normalization/internal/DefaultRuntimeClasspathNormalizationTest.groovy

            !restoredNormalization.classpathResourceFilter.shouldBeIgnored(asPathFactory("notIgnored.file"))
    
            where:
            ignoredPattern | ignoredFilePathSegments
            "some.file"    | asPathFactory("some.file")
            "**/some.*"    | asPathFactory("dir", "some.file")
        }
    
        def "property ignores can be restored from the cached state"() {
            given:
            def originalNormalization = new DefaultRuntimeClasspathNormalization()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 22 13:17:59 UTC 2021
    - 7K bytes
    - Viewed (0)
Back to top