Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 164 for setPath (0.14 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/ServeDocs.java

            System.out.println("serving docs at http://localhost:" + getPort().get());
            DeploymentRegistry registry = getDeploymentRegistry();
            JavaApplicationHandle handle = registry.get(getPath(), JavaApplicationHandle.class);
            if (handle == null) {
                JavaExecHandleBuilder builder = getExecActionFactory().newJavaExec();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 12:38:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelSet.java

            return ModelType.of(this.getClass());
        }
    
        @Override
        public String getName() {
            return modelNode.getPath().getName();
        }
    
        @Override
        public String getDisplayName() {
            return publicType.getDisplayName() + " '" + modelNode.getPath() + "'";
        }
    
        @Override
        public String toString() {
            return getDisplayName();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

            try {
                symlink.symlink(link, target);
            } catch (Exception e) {
                throw new FileException(String.format("Could not create symlink from '%s' to '%s'.", link.getPath(), target.getPath()), e);
            }
        }
    
        @Override
        public boolean isSymlink(File suspect) {
            return symlink.isSymlink(suspect);
        }
    
        @Override
        public int getUnixMode(File f) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

     */
    @Incubating
    public interface IsolatedProject {
    
        /**
         * <p>Returns the name of this project. The project's name is not necessarily unique within a project hierarchy. You
         * should use the {@link #getPath()} method for a unique identifier for the project.
         * If the root project is unnamed and is located on a file system root it will have a randomly-generated name
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/AggregateMultiProjectTaskReportModel.java

        }
    
        public void add(TaskReportModel project) {
            projects.add(project);
        }
    
        public void build() {
            groups = TreeMultimap.create(String::compareToIgnoreCase, Comparator.comparing(TaskDetails::getPath));
            for (TaskReportModel project : projects) {
                for (String group : project.getGroups()) {
                    if (isVisible(group)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

                        .setPluginArtifactRepositories(repositories)
                        .setProcessPlugins(request.isProcessPlugins());
                ProjectBuildingResult res;
                if (request.getPath().isPresent()) {
                    Path path = request.getPath().get();
                    res = builder.build(path.toFile(), req);
                } else if (request.getSource().isPresent()) {
                    Source source = request.getSource().get();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

                }
            }
            File destinationDir = spec.getDestinationDir();
            if (destinationDir != null) {
                args.add("-d");
                args.add(destinationDir.getPath());
            }
            if (compileOptions.isVerbose()) {
                args.add("-verbose");
            }
            if (compileOptions.isDeprecation()) {
                args.add("-deprecation");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionRangeResolver.java

                        syncContext.acquire(null, Collections.singleton(metadata));
    
                        if (metadata.getPath() != null && Files.exists(metadata.getPath())) {
                            try (InputStream in = Files.newInputStream(metadata.getPath())) {
                                versioning = new Versioning(
                                        new MetadataStaxReader().read(in, false).getVersioning());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. pkg/volume/emptydir/empty_dir.go

    		}
    	}
    
    	return nil
    }
    
    func (ed *emptyDir) GetPath() string {
    	return getPath(ed.pod.UID, ed.volName, ed.plugin.host)
    }
    
    // TearDown simply discards everything in the directory.
    func (ed *emptyDir) TearDown() error {
    	return ed.TearDownAt(ed.GetPath())
    }
    
    // TearDownAt simply discards everything in the directory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionRangeResolver.java

                        syncContext.acquire(null, Collections.singleton(metadata));
    
                        if (metadata.getPath() != null && Files.exists(metadata.getPath())) {
                            try (InputStream in = Files.newInputStream(metadata.getPath())) {
                                versioning =
                                        new MetadataStaxReader().read(in, false).getVersioning();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top