Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 361 for setPath (0.45 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultData.java

        void setId(IDTYPE id);
    
        String getTransformerName();
    
        void setTransformerName(String transformerName);
    
        byte[] getData();
    
        String getDataAsString();
    
        void setData(byte[] data);
    
        String getEncoding();
    
        void setEncoding(String encoding);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. pkg/volume/git_repo/git_repo.go

    type gitRepoVolume struct {
    	volName string
    	podUID  types.UID
    	plugin  *gitRepoPlugin
    	volume.MetricsNil
    }
    
    var _ volume.Volume = &gitRepoVolume{}
    
    func (gr *gitRepoVolume) GetPath() string {
    	name := gitRepoPluginName
    	return gr.plugin.host.GetPodVolumeDir(gr.podUID, utilstrings.EscapeQualifiedName(name), gr.volName)
    }
    
    // gitRepoVolumeMounter builds git repo volumes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProcessor.java

            Path pom = modelParsers.stream()
                    .map(m -> m.locate(projectDirectory)
                            .map(org.apache.maven.api.services.Source::getPath)
                            .orElse(null))
                    .filter(Objects::nonNull)
                    .findFirst()
                    .orElseGet(() -> modelLocator.locatePom(projectDirectory));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

            }
            return asStream(pi.getName()).contentTypeOctetStream().stream(out -> {
                try {
                    downloadObject(getObjectName(pi.getPath(), pi.getName()), out);
                } catch (final StorageException e) {
                    logger.warn("Failed to download {}", id, e);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/BuildOperationFiringBuildWorkPreparer.java

                    .details(new Details() {
                        @Override
                        public String getBuildPath() {
                            return gradle.getIdentityPath().getPath();
                        }
                    });
            }
    
            private PlannedNodeGraph computePlannedNodeGraph(QueryableExecutionPlan.ScheduledNodes scheduledWork) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMethodAndRunAction.java

            this.method = method;
            this.path = path;
            this.action = action;
        }
    
        @Override
        public String getMethod() {
            return method;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        @Override
        public ResourceHandler create(WaitPrecondition precondition) {
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

            public abstract static class Entry {
    
                private final String path;
    
                public Entry(String path) {
                    this.path = path;
                }
    
                public String getPath() {
                    return path;
                }
    
            }
    
            static class FileEntry extends Entry {
    
                private final String hash;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/PluginsMetadataGenerator.java

            if (artifact != null
                    && "jar".equals(artifact.getExtension())
                    && "".equals(artifact.getClassifier())
                    && artifact.getPath() != null) {
                Path artifactPath = artifact.getPath();
                if (Files.isRegularFile(artifactPath)) {
                    try (JarFile artifactJar = new JarFile(artifactPath.toFile(), false)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/TaskExecution.java

        private TaskState state;
    
        public TaskExecution(String taskPath) {
            super(taskPath);
            this.path = taskPath;
        }
    
        /**
         * Gets the string task path.
         */
        public String getPath() {
            return path;
        }
    
        public String getStatus() {
            return state.getSkipped() ? state.getSkipMessage() : state.getDidWork() ? "" : NO_WORK_MESSAGE;
        }
    
        public TaskState getState() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java

            File file = new File(s);
            if (file.isAbsolute()) {
                // path was already absolute, just normalize file separator and we're done
                s = file.getPath();
            } else if (file.getPath().startsWith(File.separator)) {
                // drive-relative Windows path, don't align with project directory but with drive root
                s = file.getAbsolutePath();
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top