Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 942 for directory1 (0.32 sec)

  1. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        }
    
        /**
         * Returns the directory to use as the user home directory.
         *
         * @return The home directory.
         */
        public File getGradleUserHomeDir() {
            return gradleUserHomeDir;
        }
    
        /**
         * Sets the directory to use as the user home directory. Set to null to use the default directory.
         *
         * @param gradleUserHomeDir The home directory. May be null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_volumes.go

    			// directory to fail below.
    			// Errors for all removal operations have already been recorded, so don't add another
    			// one here.
    			continue
    		}
    
    		// Call RemoveAllOneFilesystem for remaining subdirs under the pod directory
    		podDir := kl.getPodDir(uid)
    		podSubdirs, err := os.ReadDir(podDir)
    		if err != nil {
    			errorPods++
    			klog.ErrorS(err, "Could not read directory", "path", podDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * Sets the root directory of the project.
         *
         * @since 4.0.0
         */
        MavenExecutionRequest setRootDirectory(Path rootDirectory);
    
        /**
         * Gets the root directory of the top project, which is the parent directory containing the {@code .mvn}
         * directory or a {@code pom.xml} file with the {@code root="true"} attribute.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

         */
        void allowGetDirectoryListing(String path, File directory) {
            allow(path, false, ['GET'], new ActionSupport("return listing of directory $directory.name") {
                void handle(HttpServletRequest request, HttpServletResponse response) {
                    sendDirectoryListing(response, directory)
                }
            })
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Cache.kt

      /** Create a cache of at most [maxSize] bytes in [directory]. */
      constructor(directory: File, maxSize: Long) : this(
        FileSystem.SYSTEM,
        directory.toOkioPath(),
        maxSize,
      )
    
      internal val cache =
        DiskLruCache(
          fileSystem = fileSystem,
          directory = directory,
          appVersion = VERSION,
          valueCount = ENTRY_COUNT,
          maxSize = maxSize,
          taskRunner = taskRunner,
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

    import java.util.stream.Collectors
    
    
    object SamplesGenerator {
    
        fun generate(type: String, modularization: ModularizationOption, templateFolder: Directory, target: Directory, projectLayoutSetupRegistry: ProjectLayoutSetupRegistry) {
            val descriptor = projectLayoutSetupRegistry[type] as CompositeProjectInitDescriptor
            val projectName = "demo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * to the module-path if it contains a {@code module-info.class}, or to the class-path otherwise.
         * For the test output directory, the rules are more complex and are governed by the fact that
         * Java does not accept the placement of two modules of the same name on the module-path.
         * So the modular test output directory usually needs to be placed in a {@code --path-module} option.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. docs/en/docs/contributing.md

    ### Virtual environment with `venv`
    
    You can create an isolated virtual local environment in a directory using Python's `venv` module. Let's do this in the cloned repository (where the `requirements.txt` is):
    
    <div class="termy">
    
    ```console
    $ python -m venv env
    ```
    
    </div>
    
    That will create a directory `./env/` with the Python binaries, and then you will be able to install packages for that local environment.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         *
         * @param baseDir The base directory of the file tree. Evaluated as per [file].
         * @return The file tree.
         */
        @Suppress("unused")
        fun fileTree(baseDir: Any): ConfigurableFileTree =
            fileOperations.fileTree(baseDir)
    
        /**
         * Creates a new [ConfigurableFileTree] using the given base directory.
         *
         * @param baseDir The base directory of the file tree. Evaluated as per [file].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

                super(checker)
            }
    
            CannotWriteToDir dir(File directory) {
                this.problemDir = directory
                this.dir = directory
                this
            }
    
            CannotWriteToDir isNotDirectory() {
                this.reason = "is not a directory"
                this
            }
    
            CannotWriteToDir ancestorIsNotDirectory(File ancestor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top