Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,379 for place (0.04 sec)

  1. subprojects/core/src/test/groovy/org/gradle/caching/internal/packaging/impl/DefaultTarPackerFileSystemSupportTest.groovy

            fileSystemSupport.ensureDirectoryForTree(DIRECTORY, targetOutputDir)
    
            then:
            targetOutputDir.assertIsEmptyDir()
        }
    
        def "creates directories even if there is a pre-existing file in its place"() {
            def targetOutputDir = temporaryFolder.file("build/output")
            targetOutputDir << "This should become a directory"
    
            when:
            fileSystemSupport.ensureDirectoryForTree(DIRECTORY, targetOutputDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPluginConvention.java

         */
        public abstract void setApplicationDefaultJvmArgs(Iterable<String> applicationDefaultJvmArgs);
    
        /**
         * Directory to place executables in
         *
         * @since 4.5
         */
        public abstract String getExecutableDir();
    
        /**
         * Directory to place executables in
         *
         * @since 4.5
         */
        public abstract void setExecutableDir(String executableDir);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/JavaApplication.java

         */
        void setApplicationDefaultJvmArgs(Iterable<String> applicationDefaultJvmArgs);
    
        /**
         * Directory to place executables in
         */
        String getExecutableDir();
    
        /**
         * Directory to place executables in
         */
        void setExecutableDir(String executableDir);
    
        /**
         * <p>The specification of the contents of the distribution.</p>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. releasenotes/notes/36796.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/pull/36797
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 14 22:53:00 UTC 2022
    - 258 bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue43109.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Ensure there is no "imported and not used" error
    // if a package wasn't imported in the first place.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 325 bytes
    - Viewed (0)
  6. test/fixedbugs/issue14540.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func f(x int) {
    	switch x {
    	case 0:
    		fallthrough
    		; // ok
    	case 1:
    		fallthrough // ERROR "fallthrough statement out of place"
    		{}
    	case 2:
    		fallthrough // ERROR "cannot fallthrough"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:08:50 UTC 2017
    - 379 bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

         * For example, an artifact of type {@value org.apache.maven.api.Type#JAR} can be placed
         * either on the class-path or on the module-path. The project needs to make a choice
         * (possibly using heuristic rules), then to add the dependency in only one of the options
         * identified by {@link PathType}.
         *
         * @return file paths to place on the different tool options
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue67141.go

    // errorcheck -lang=go1.22
    
    //go:build go1.21
    
    // We need a line directive before the package clause,
    // but don't change file name or position so that the
    // error message appears at the right place.
    
    //line issue67141.go:10
    package p
    
    func _() {
    	for range 10 { // ERROR "cannot range over 10"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:21 UTC 2024
    - 301 bytes
    - Viewed (0)
  9. docs_src/dataclasses/tutorial002.py

    
    app = FastAPI()
    
    
    @app.get("/items/next", response_model=Item)
    async def read_next_item():
        return {
            "name": "Island In The Moon",
            "price": 12.99,
            "description": "A place to be be playin' and havin' fun",
            "tags": ["breater"],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 552 bytes
    - Viewed (0)
  10. test/fixedbugs/bug000.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	var x int;
    	switch x {
    	case 0:
    		{}
    	case 1:
    		x = 0;
    	}
    }
    /*
    bug0.go:8: case statement out of place
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 302 bytes
    - Viewed (0)
Back to top