Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 163 for setPath (0.52 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenMetadata.java

            return MAVEN_METADATA_XML;
        }
    
        @Deprecated
        @Override
        public File getFile() {
            return path != null ? path.toFile() : null;
        }
    
        @Override
        public Path getPath() {
            return path;
        }
    
        @Deprecated
        public void merge(File existing, File result) throws RepositoryException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunication.java

                MultiChoiceAddress multiChoiceAddress = (MultiChoiceAddress) address;
                new MultiChoiceAddressSerializer().write(encoder, multiChoiceAddress);
                encoder.writeString(daemonLog.getPath());
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
            target.println(byteArrayOutputStream.toString());
    
            //ibm vm 1.6 + windows XP gotchas:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

         * Provides access the file to be parsed, if this source is backed by a file.
         *
         * @return the underlying {@code Path}, or {@code null} if this source is not backed by a file
         */
        @Nullable
        Path getPath();
    
        /**
         * Creates a new byte stream to the source contents.
         * Closing the returned stream is the responsibility of the caller.
         *
         * @return a byte stream to the source contents, never {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. pkg/volume/git_repo/git_repo_test.go

    			fmt.Errorf("failed to make a new Mounter: %w", err))
    		return allErrs
    	}
    	if mounter == nil {
    		allErrs = append(allErrs,
    			fmt.Errorf("got a nil Mounter"))
    		return allErrs
    	}
    
    	path := mounter.GetPath()
    	suffix := filepath.Join("pods/poduid/volumes/kubernetes.io~git-repo", scenario.vol.Name)
    	if !strings.HasSuffix(path, suffix) {
    		allErrs = append(allErrs,
    			fmt.Errorf("got unexpected path: %s", path))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pkg/volume/fc/fc.go

    	plugin  *fcPlugin
    	// Utility interface that provides API calls to the provider to attach/detach disks.
    	manager diskManager
    	// io handler interface
    	io ioHandler
    	volume.MetricsNil
    }
    
    func (fc *fcDisk) GetPath() string {
    	// safe to use PodVolumeDir now: volume teardown occurs before pod is cleaned up
    	return fc.plugin.host.GetPodVolumeDir(fc.podUID, utilstrings.EscapeQualifiedName(fcPluginName), fc.volName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

        public LocalComponentGraphResolveState getComponent(ProjectComponentIdentifier projectIdentifier, Path currentBuildPath) {
            boolean isLocalProject = projectIdentifier.getBuild().getBuildPath().equals(currentBuildPath.getPath());
            if (isLocalProject) {
                return getLocalComponent(projectIdentifier, projectStateRegistry.stateFor(projectIdentifier));
            } else {
                return getLocalComponentWithForeignId(projectIdentifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

                            "ownReference",
                            new ArgumentListExpression(
                                    new ConstantExpression(inputReference.getPath()),
                                    new ConstantExpression(inputReference.getLineNumber())))));
                }
                for (InputReference inputReference : inputs.getNestedReferences()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

            File pom4 = new File(pom3.getParentFile(), "p4/pom.xml");
            File pom5 = new File(pom4.getParentFile(), "p5/pom.xml");
    
            System.out.println("Location of project-4's POM: " + pom4.getPath());
    
            // load everything...
            MavenProject project0 = getProject(pom0);
            MavenProject project1 = getProject(pom1);
            MavenProject project2 = getProject(pom2);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultArtifactCaches.java

                LOGGER.warn("The " + READONLY_CACHE_ENV_VAR + " environment variable was set to " + cacheDir + " which doesn't exist!");
                return null;
            }
            File root = CacheLayout.MODULES.getPath(cacheDir);
            if (!root.exists()) {
                String docLink = documentationRegistry.getDocumentationRecommendationFor("instructions on how to do this", "dependency_resolution", "sub:shared-readonly-cache");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/ProjectExecutionServices.java

    @SuppressWarnings("deprecation")
    public class ProjectExecutionServices extends DefaultServiceRegistry {
    
        public ProjectExecutionServices(ProjectInternal project) {
            super("Configured project services for '" + project.getPath() + "'", project.getServices());
        }
    
        @Provides
        org.gradle.api.execution.TaskActionListener createTaskActionListener(ListenerManager listenerManager) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top