Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 766 for setPath (0.42 sec)

  1. pkg/volume/portworx/portworx.go

    	}
    	klog.Infof("Portworx Volume %s setup at %s", b.volumeID, dir)
    	return nil
    }
    
    func (pwx *portworxVolume) GetPath() string {
    	return getPath(pwx.podUID, pwx.volName, pwx.plugin.host)
    }
    
    type portworxVolumeUnmounter struct {
    	*portworxVolume
    }
    
    var _ volume.Unmounter = &portworxVolumeUnmounter{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            final PathInfo pi = convertToItem(id);
            if (StringUtil.isEmpty(pi.getPath()) && StringUtil.isEmpty(pi.getName())) {
                return StringUtil.EMPTY;
            }
            if (StringUtil.isEmpty(pi.getPath())) {
                return pi.getName();
            }
            return pi.getPath() + "/" + pi.getName();
        }
    
        public static PathInfo convertToItem(final String id) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/configuration/TaskDetails.java

            // tasks in higher-up projects first
            int depthCompare = o1.getProjectDepth() - o2.getProjectDepth();
            if (depthCompare != 0) {
                return depthCompare;
            }
            return o1.getPath().compareTo(o2.getPath());
        };
    
        /**
         * A read-only projection for OptionDescriptor details relevant for the help task.
         */
        public static class OptionDetails {
            private final String name;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 11 10:07:07 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                    indent += "  ";
                }
            } else if (collectStepTrace != null) {
                if (collectStepTrace.getPath().get(0).getArtifact() == null) {
                    return;
                }
                baseName = ArtifactIdUtils.toId(collectStepTrace.getPath().get(0).getArtifact())
                        .replace(":", "_");
                trackingFile = trackingDir.resolve(baseName + ext);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. pkg/volume/secret/secret.go

    	volName string
    	podUID  types.UID
    	plugin  *secretPlugin
    	mounter mount.Interface
    	volume.MetricsProvider
    }
    
    var _ volume.Volume = &secretVolume{}
    
    func (sv *secretVolume) GetPath() string {
    	return getPath(sv.podUID, sv.volName, sv.plugin.host)
    }
    
    // secretVolumeMounter handles retrieving secrets from the API server
    // and placing them into the volume on the host.
    type secretVolumeMounter struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractFileAccessor.java

            Path path = getPath(name, level);
            Files.write(path, bytes, StandardOpenOption.CREATE_NEW);
            return new Source(path);
        }
    
        @Override
        public DataTarget createTarget(String name, Level level) {
            return new Target(getPath(name, level));
        }
    
        private Path getPath(String name, Level level) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/LoadProjectsBuildOperationType.java

                 * The path of the project.
                 *
                 * See {@code org.gradle.api.Project#getPath()}.
                 */
                String getPath();
    
                /**
                 * The path of the project within the entire build execution.
                 * For top-level builds this will be the same as {@link #getPath()}.
                 * For nested builds the project path will be prefixed with a build path.
                 *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftElement.java

            final SourceFile beforeFile = beforeElement.getSourceFile();
            final SourceFile afterFile = afterElement.getSourceFile();
            assert beforeFile.getPath().equals(afterFile.getPath());
            assert beforeFile.getName().equals(afterFile.getName());
            assert !beforeFile.getContent().equals(afterFile.getContent());
    
            return new Transform() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

                this.rootDir = rootDir;
            }
    
            @Override
            public String getProjectPath() {
                return projectPath.getPath();
            }
    
            @Override
            public String getBuildPath() {
                return buildPath.getPath();
            }
    
            @Override
            public File getRootDir() {
                return rootDir;
            }
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiLibrary.java

            return platform;
        }
    
        public String getFilename() {
            return filename;
        }
    
        public String getPath() {
            return platform + "/" + filename;
        }
    
        public String getResourcePath() {
            return "/META-INF/native/" + getPath();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top