Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 693 for setPath (0.21 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Output.java

        }
    
        public Output(String path) {
            Preconditions.checkNotNull(path);
            this.path = PathUtil.normalizePath(path);
        }
    
        public String getPath() {
            return path;
        }
    
        public void setPath(String path) {
            this.path = path;
        }
    
        @Override
        public String getKind() {
            return "output";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                final File file = File.createTempFile("crawler-", "");
                file.delete();
                file.mkdirs();
                file.deleteOnExit();
                fileTransformer.setPath(file.getAbsolutePath());
                crawler.addUrl(url);
                crawler.getCrawlerContext().setMaxAccessCount(maxCount);
                crawler.getCrawlerContext().setNumOfThread(numOfThread);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/EarModule.java

     */
    public interface EarModule {
    
        /**
         * The connector element specifies the URI of an archive file, relative to the top level of the application package.
         */
        String getPath();
    
        void setPath(String path);
    
        /**
         * The alt-dd element specifies an optional URI to the post-assembly version of the deployment descriptor file for a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultEarModule.java

        public DefaultEarModule() {
        }
    
        public DefaultEarModule(String path) {
            this.path = path;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        @Override
        public void setPath(String path) {
            this.path = path;
        }
    
        @Override
        public String getAltDeployDescriptor() {
            return altDeployDescriptor;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/LaunchableGradleTaskSelector.java

            this.projectIdentifier = projectIdentifier;
            return this;
        }
    
        public String getPath() {
            return path;
        }
    
        public LaunchableGradleTaskSelector setPath(String path) {
            this.path = path;
            return this;
        }
    
        @Override
        public String toString() {
            return "LaunchableGradleTaskSelector{"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/LaunchableGradleTask.java

        private String group;
        private boolean isPublic;
        private DefaultProjectIdentifier projectIdentifier;
        private String buildTreePath;
    
        public String getPath() {
            return path;
        }
    
        public LaunchableGradleTask setPath(String path) {
            this.path = path;
            return this;
        }
    
        public String getBuildTreePath() {
            return buildTreePath;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 02 15:51:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractLibrary.java

                && Objects.equal(getNativeLibraryLocation(), that.getNativeLibraryLocation())
                && Objects.equal(getPath(), that.getPath())
                && Objects.equal(getSourcePath(), that.getSourcePath());
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(getPath(), getNativeLibraryLocation(), isExported(), getAccessRules(), getSourcePath(), getJavadocPath());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactResolver.java

                    for (ArtifactResult result : results) {
                        Artifact artifact = session.getArtifact(result.getArtifact());
                        Path path = result.getArtifact().getPath();
                        artifactManager.setPath(artifact, path);
                        paths.put(artifact, path);
                    }
                }
                return () -> paths;
            } catch (ArtifactResolutionException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/BsThumbnailQueue.java

        public void setGenerator(String value) {
            registerModifiedProperty("generator");
            this.generator = value;
        }
    
        public String getPath() {
            checkSpecifiedProperty("path");
            return convertEmptyToNull(path);
        }
    
        public void setPath(String value) {
            registerModifiedProperty("path");
            this.path = value;
        }
    
        public String getTarget() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXReference.java

        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Nullable
        public String getPath() {
            return path;
        }
    
        public void setPath(String v) {
            path = v;
        }
    
        public SourceTree getSourceTree() {
            return sourceTree;
        }
    
        public void setSourceTree(SourceTree v) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top