Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 766 for setPath (0.27 sec)

  1. 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)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/FileLocation.java

     *
     * @since 8.6
     */
    @Incubating
    public interface FileLocation extends Location {
    
        /**
         * The path to the file.
         *
         * @return the file path
         * @since 8.6
         */
        String getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 927 bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

                    String patternPath = otherVersionListPattern.getPath();
                    Pattern regexPattern = toControlRegexPattern(patternPath);
                    List<String> matching = listedVersions.stream()
                        .filter(version -> regexPattern.matcher(currentVersionListPattern.getPath().replace(REVISION_TOKEN, version)).matches())
                        .collect(Collectors.toList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ResourceHandler.java

    interface ResourceHandler extends ResponseProducer {
        /**
         * Returns the method for this handler.
         */
        String getMethod();
    
        /**
         * Returns the path for this handler.
         */
        String getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 884 bytes
    - Viewed (0)
  6. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilder.java

        private Source convert(org.apache.maven.building.Source source) {
            if (source instanceof FileSource fs) {
                return Source.fromPath(fs.getPath());
            } else if (source != null) {
                return new Source() {
                    @Override
                    public Path getPath() {
                        return null;
                    }
    
                    @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPluginXmlFactory.java

        @Override
        public PluginDescriptor read(@Nonnull XmlReaderRequest request) throws XmlReaderException {
            nonNull(request, "request");
            Path path = request.getPath();
            URL url = request.getURL();
            Reader reader = request.getReader();
            InputStream inputStream = request.getInputStream();
            if (path == null && url == null && reader == null && inputStream == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseOutputLocation.java

    public class DefaultEclipseOutputLocation implements Serializable {
    
        private final String path;
    
        public DefaultEclipseOutputLocation(String path) {
            this.path = path;
        }
    
        public String getPath() {
            return path;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 953 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectIdentifier.java

    package org.gradle.api.internal.project;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    // TODO need a better name for this
    public interface ProjectIdentifier {
        String getName();
    
        String getPath();
    
        @Nullable
        ProjectIdentifier getParentIdentifier();
    
        File getProjectDir();
    
        File getBuildFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 09 14:19:30 UTC 2021
    - 947 bytes
    - Viewed (0)
  10. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ClosureBackedRuleFactory.java

                    for (InputReference inputReference : inputReferences) {
                        String description = "@ line " + inputReference.getLineNumber();
                        String path = inputReference.getPath();
                        if (!inputValues.containsKey(path)) {
                            inputValues.put(path, new PotentialInput(inputModelReferences.size()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top