Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 766 for setPath (0.11 sec)

  1. src/net/url/url.go

    		return "", err
    	}
    	return host, nil
    }
    
    // setPath sets the Path and RawPath fields of the URL based on the provided
    // escaped path p. It maintains the invariant that RawPath is only specified
    // when it differs from the default encoding of the path.
    // For example:
    // - setPath("/foo/bar")   will set Path="/foo/bar" and RawPath=""
    // - setPath("/foo%2fbar") will set Path="/foo/bar" and RawPath="/foo%2fbar"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

            result.tool == file
        }
    
        def "finds executable in provided path"() {
            def file = tmpDir.createFile("cc.bin")
    
            given:
            os.getExecutableName("cc") >> "cc.bin"
            registry.setPath([file.parentFile])
    
            when:
            def result = registry.locate(ToolType.C_COMPILER, "cc")
    
            then:
            result.available
            result.tool == file
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            this.fullName = fullName;
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * Strips a leading \
         *
         * @see jcifs.internal.RequestWithPath#setPath(java.lang.String)
         */
        @Override
        public void setPath ( String path ) {
            if ( path.length() > 0 && path.charAt(0) == '\\' ) {
                path = path.substring(1);
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 09:52:11 UTC 2019
    - 14.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top