Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for myDir (0.03 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

            elementType         | elementName | elementInitialization                                              | elementRead
            'Directory'         | 'myField'   | "Directory myField = project.layout.projectDirectory.dir('myDir')" | 'myField.getAsFile().absolutePath'
            "DirectoryProperty" | 'myProp'    | "abstract DirectoryProperty getMyProp()"                           | "myProp.getAsFile().get().absolutePath"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/net/http/fs.go

    		// serveFile. Reject the request under the assumption that happened
    		// here and ".." may not be wanted.
    		// Note that name might not contain "..", for example if code (still
    		// incorrectly) used filepath.Join(myDir, r.URL.Path).
    		serveError(w, "invalid URL path", StatusBadRequest)
    		return
    	}
    	dir, file := filepath.Split(name)
    	serveFile(w, r, Dir(dir), file, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        def "task is not up-to-date when the implementation of a named #actionMethodName action changes"() {
            buildScript """
                tasks.register('myTask') {
                    outputs.dir(layout.buildDirectory.dir('myDir'))
                    ${actionMethodName}('myAction') { println("printing from action") }
                }
            """
    
            when:
            run ':myTask'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top