Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 5,298 for somme (0.17 sec)

  1. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactoryTest.groovy

        }
    
        def "creates IvyArtifact for source map notation with file"() {
            given:
            File file = new File('some-file-1.2.zip')
    
            when:
            def ivyArtifact = parser.parseNotation(source: 'some-file')
    
            then:
            fileNotationParser.parseNotation('some-file') >> file
    
            and:
            ivyArtifact.name == 'pub-name'
            ivyArtifact.extension == "zip"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    }
    ----
    =====
    ====
    
    If we run `:app:build` again, we see the Java code of `some-logic` is also compiled by Gradle automatically:
    
    [source,text]
    ----
    $./gradlew :app:build
    
    > Task :app:processResources NO-SOURCE
    > Task :app:processTestResources NO-SOURCE
    > Task :some-logic:compileJava UP-TO-DATE
    > Task :some-logic:processResources NO-SOURCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/valueProviders/sysPropsDont/kotlin/gradle.properties

    some-property=some-value...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 25 bytes
    - Viewed (0)
  4. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

        def "creates MavenArtifact for source map notation with file"() {
            given:
            File file = new File('some-file-1.2-classifier.zip')
    
            when:
            MavenArtifact mavenArtifact = parser.parseNotation(source: 'some-file')
    
            then:
            fileNotationParser.parseNotation('some-file') >> file
    
            and:
            mavenArtifact.extension == "zip"
            mavenArtifact.file == file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. pkg/volume/util/util_test.go

    			goos:         "windows",
    			path:         "some\\path",
    			expectedPath: "c:\\some\\path",
    			name:         "basic windows",
    		},
    		{
    			goos:         "windows",
    			path:         "/some/path",
    			expectedPath: "c:/some/path",
    			name:         "linux path on windows",
    		},
    		{
    			goos:         "windows",
    			path:         "\\some\\path",
    			expectedPath: "c:\\some\\path",
    			name:         "windows path no drive",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/JavaUtilLoggingSystemIntegrationTest.groovy

        def 'JUL logger.isLoggable corresponds to gradle log level for --debug'() {
            given:
            buildFile << """
                task isLoggable() {
                    doLast {
                        def logger = Logger.getLogger('some-logger')
    
                        assert logger.isLoggable(Level.SEVERE)
                        assert logger.isLoggable(Level.WARNING)
                        assert logger.isLoggable(Level.INFO)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. docs/fr/docs/tutorial/index.md

    ... qui comprend également `uvicorn`, que vous pouvez utiliser comme serveur pour exécuter votre code.
    
    !!! note
        Vous pouvez également l'installer pièce par pièce.
    
        C'est ce que vous feriez probablement une fois que vous voudrez déployer votre application en production :
    
        ```
        pip install fastapi
        ```
    
        Installez également `uvicorn` pour qu'il fonctionne comme serveur :
    
        ```
        pip install uvicorn
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:55 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	scheduler:
    //	  extraArgs:
    //	    address: "10.100.0.1"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. test/typeparam/issue50264.go

    package main
    
    type hello struct{}
    
    func main() {
    	_ = Some(hello{})
    	res := Applicative2(func(a int, b int) int {
    		return 0
    	})
    	_ = res
    }
    
    type NoneType[T any] struct{}
    
    func (r NoneType[T]) Recover() any {
    	return nil
    }
    
    type Func2[A1, A2, R any] func(a1 A1, a2 A2) R
    
    func Some[T any](v T) any {
    	_ = Some2[T](v)
    	return NoneType[T]{}.Recover()
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 822 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/objectQualifier.kt

    object Some {
        fun foo() {
    
        }
    }
    
    fun test() {
        <expr>Some</expr>.foo()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 06:40:43 UTC 2024
    - 82 bytes
    - Viewed (0)
Back to top