Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,426 for directory1 (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/buildsrc/BuildSrcDetector.java

            }
            LOGGER.info("Ignoring buildSrc directory: does not contain 'settings.gradle[.kts]', 'build.gradle[.kts]', or a 'src' directory.");
            return false;
        }
    
        private static boolean containsFiles(File directory) {
            if (!directory.exists() || !directory.isDirectory()) {
                return false;
            }
            try (Stream<Path> directoryContents = Files.walk(directory.toPath())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/fsys/fsys.go

    // that the argument is not a directory, so that IsDirWithGoFiles doesn't
    // return an error.
    var errNotDir = errors.New("not a directory")
    
    func nonFileInOverlayError(overlayPath string) error {
    	return fmt.Errorf("replacement path %q is a directory, not a file", overlayPath)
    }
    
    // readDir reads a dir on disk, returning an error that is errNotDir if the dir is not a directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/AbstractCompile.java

         */
        public void setClasspath(FileCollection configuration) {
            this.classpath = configuration;
        }
    
        /**
         * Returns the directory property that represents the directory to generate the {@code .class} files into.
         *
         * @return The destination directory property.
         * @since 6.1
         */
        @OutputDirectory
        @ReplacesEagerProperty(
            replacedAccessors = {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_vendor.txt

    # but should not provide a module directory because no directory contains
    # the complete module.
    go list -mod=vendor -f '{{.Version}} {{.Dir}}' -m x
    stdout '^v1.0.0 $'
    
    # -mod=vendor should cause 'go list' flags that look up versions to fail.
    ! go list -mod=vendor -versions -m x
    stderr '^go: can''t determine available versions using the vendor directory\n\t\(Use -mod=mod or -mod=readonly to bypass.\)$'
    ! go list -mod=vendor -u -m x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/files/misc/groovy/build.gradle

    tasks.register('ensureDirectory') {
        // Store target directory into a variable to avoid project reference in the configuration cache
        def directory = file("images")
    
        doLast {
            Files.createDirectories(directory.toPath())
        }
    }
    // end::mkdir-example[]
    
    // tag::move-example[]
    tasks.register('moveReports') {
        // Store the build directory into a variable to avoid project reference in the configuration cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 932 bytes
    - Viewed (0)
  6. apache-maven/src/assembly/shared/init.cmd

    :init
    
    set "CLASSWORLDS_CONF=%MAVEN_HOME%\bin\m2.conf"
    
    @REM Find the project basedir, i.e., the directory that contains the directory ".mvn".
    @REM Fallback to current working directory if not found.
    
    set "EXEC_DIR=%CD%"
    set "WDIR=%EXEC_DIR%"
    
    @REM Look for the --file switch and start the search for the .mvn directory from the specified
    @REM POM location, if supplied.
    
    set FILE_ARG=
    :arg_loop
    if "%~1" == "-f" (
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 16 21:35:28 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java

            this.classifier = classifier;
        }
    
        @Override
        public String getDirectory() {
            if (directory == null) {
                return getPackaging() + "s";
            }
            return directory;
        }
    
        public void setDirectory(final String directory) {
            this.directory = directory;
        }
    
        @Override
        public String getPackaging() {
            if (packaging == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. guava-gwt/pom.xml

          <resource>
            <directory>${project.build.directory}/guava-gwt-sources</directory>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
          </testResource>
          <testResource>
            <directory>test-super</directory>
          </testResource>
          <testResource>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/configure-built-in-caches/groovy/settings.gradle

    rootProject.name = 'configure-built-in-caches'
    
    // tag::configure-directory-build-cache[]
    buildCache {
        local {
            directory = new File(rootDir, 'build-cache')
        }
    }
    // end::configure-directory-build-cache[]
    
    // tag::configure-http-build-cache[]
    buildCache {
        remote(HttpBuildCache) {
            url = 'https://example.com:8123/cache/'
            credentials {
                username = 'build-cache-user'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:36 UTC 2024
    - 516 bytes
    - Viewed (0)
  10. src/internal/trace/testdata/README.md

    # Trace test data
    
    ## Trace golden tests
    
    Trace tests can be generated by running
    
    ```
    go generate .
    ```
    
    with the relevant toolchain in this directory.
    
    This will put the tests into a `tests` directory where the trace reader
    tests will find them.
    
    A subset of tests can be regenerated by specifying a regexp pattern for
    the names of tests to generate in the `GOTRACETEST` environment
    variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top