Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,891 for directory1 (0.16 sec)

  1. src/cmd/go/testdata/script/work_module_not_in_go_work.txt

    ! go list ./...
    stderr 'pattern ./...: directory prefix . does not contain modules listed in go.work or their selected dependencies'
    
    ! go list ./a/c
    stderr 'directory a[\\/]c is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use a'
    
    ! go install ./a/c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathBuilder.java

         */
        void jar(File destinationFile, Action action);
    
        /**
         * Creates a directory using the given action to add entries to it. If the directory already exists, it will be cleared first.
         *
         * @param destinationDir the directory to place entries into
         * @param action the action to populate the directory
         */
        void directory(File destinationDir, Action action);
    
        @FunctionalInterface
        interface Action {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt

                        logger.lifecycle("Removing old cache directory : $stateDir")
                        delete { delete(stateDir) }
                    }
                }
            }
        }
    }
    
    
    /**
     * Clean up daemon log files produced in integration tests.
     */
    fun FileSystemOperations.removeDaemonLogFiles(dir: Directory) {
        if (dir.asFile.isDirectory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultProjectLayout.java

                }
            });
        }
    
        @Override
        public Provider<Directory> dir(Provider<File> provider) {
            return new MappingProvider<>(Directory.class, Providers.internal(provider), new Transformer<Directory, File>() {
                @Override
                public Directory transform(File file) {
                    return fileFactory.dir(fileResolver.resolve(file));
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt

        }
    
        private
        fun someClasses(): Sequence<Path> {
            val directory = projectDir.resolve("classes")
    
            touchFile(directory.resolve("com/acme/Foo.class"))
            touchFile(directory.resolve("com/acme/internal/FooInternal.class"))
            touchFile(directory.resolve("com/foo/internal/FooInternal.class"))
            touchFile(directory.resolve("javax/servlet/http/HttpServletRequest.class"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MerkleDirectorySnapshotBuilder.java

                collectEntry(snapshot);
            }
            return snapshot;
        }
    
        private void collectEntry(FileSystemLocationSnapshot snapshot) {
            Directory directory = directoryStack.peekLast();
            if (directory != null) {
                directory.collectEntry(snapshot);
            } else {
                assert result == null;
                result = snapshot;
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. maven-repository-metadata/src/site/apt/index.apt

     []
    
     Depending on what the directory represents ("groupId", "groupId/artifactId" or "groupId/artifactId/version"),
     the Maven Repository Metadata file contains 3 different sets of metadata:
    
     [[1]] in a "groupId" directory: a "groupId" directory may contain Maven plugins artifacts, which are described in metadata's <<<plugins>>> element,
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 07 10:05:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

        }
    
        def "can query the project directory"() {
            expect:
            layout.projectDirectory.getAsFile() == projectDir
        }
    
        def "can resolve directory relative to project directory"() {
            def pathProvider = withValues("a", "b")
    
            expect:
            def dir = layout.projectDirectory.dir("sub-dir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/layout/ResolvedBuildLayout.java

         *
         * <p>There are two cases where this might be true: Gradle was invoked from a directory where there is no build script and no settings script in the directory hierarchy,
         * or Gradle was invoked from a directory where there is a settings script in the directory hierarchy but the directory is not a project directory for any project defined
         * in that settings script.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java

        private String extension, directory, classifier, packaging, language;
        private boolean includesDependencies, addedToClasspath;
    
        public void setExtension(String extension) {
            this.extension = extension;
        }
    
        @Override
        public String getExtension() {
            return extension;
        }
    
        public void setDirectory(String directory) {
            this.directory = directory;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top