Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for fileurl (0.14 sec)

  1. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ManifestUtil.java

        }
    
        private static String constructRelativeClasspathUri(File jarFile, File file) {
            URI jarFileUri = jarFile.getParentFile().toURI();
            URI fileUri = file.toURI();
            URI relativeUri = jarFileUri.relativize(fileUri);
            return relativeUri.getRawPath();
        }
    
        public static List<URI> parseManifestClasspath(File jarFile) {
            List<URI> manifestClasspath = new ArrayList<URI>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.impl.base.test
    
    import com.intellij.openapi.util.io.FileUtil
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.impl.base.test.SymbolByFqName.getSymbolDataFromFile
    import org.jetbrains.kotlin.analysis.api.symbols.KaCallableSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

                if (runtimeArg instanceof Runtime) {
                    Runtime runtime = (Runtime) runtimeArg;
    
                    if (fileArg == null || fileArg instanceof File) {
                        File file = (File) fileArg;
    
                        if (envpArg == null || envpArg instanceof String[]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

                return cachedFile(Convert.urlToFile(original), transformer, seen, typeRegistry).map(
                    result -> result.fold(
                        file -> left(Convert.fileToURL(file)),
                        transform -> right(() -> Convert.fileToURL(transform.call()))
                    )
                );
            }
            return Optional.of(left(original));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/compress/bzip2/bzip2.go

    func (bz2 *reader) readBlock() (err error) {
    	br := &bz2.br
    	bz2.wantBlockCRC = uint32(br.ReadBits64(32)) // skip checksum. TODO: check it if we can figure out what it is.
    	bz2.blockCRC = 0
    	bz2.fileCRC = (bz2.fileCRC<<1 | bz2.fileCRC>>31) ^ bz2.wantBlockCRC
    	randomized := br.ReadBits(1)
    	if randomized != 0 {
    		return StructuralError("deprecated randomized files")
    	}
    	origPtr := uint(br.ReadBits(24))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

    import java.util.Properties;
    import java.util.Set;
    
    import javax.annotation.Resource;
    
    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.core.io.CloseableUtil;
    import org.codelibs.core.io.FileUtil;
    import org.codelibs.core.io.InputStreamUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.timer.TimeoutManager;
    import org.codelibs.core.timer.TimeoutTask;
    import org.codelibs.fess.crawler.Constants;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

    import com.intellij.openapi.extensions.PluginDescriptor
    import com.intellij.openapi.module.Module
    import com.intellij.openapi.project.Project
    import com.intellij.openapi.roots.PackageIndex
    import com.intellij.openapi.util.io.FileUtil
    import com.intellij.openapi.vfs.VirtualFile
    import com.intellij.openapi.vfs.VirtualFileManager
    import com.intellij.openapi.vfs.impl.jar.CoreJarFileSystem
    import com.intellij.psi.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. src/net/http/client_test.go

    func testClientRedirect308NoGetBody(t *testing.T, mode testMode) {
    	const fakeURL = "https://localhost:1234/" // won't be hit
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		w.Header().Set("Location", fakeURL)
    		w.WriteHeader(308)
    	})).ts
    	req, err := NewRequest("POST", ts.URL, strings.NewReader("some body"))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    	return envProxyFunc()(req.URL)
    }
    
    // ProxyURL returns a proxy function (for use in a [Transport])
    // that always returns the same URL.
    func ProxyURL(fixedURL *url.URL) func(*Request) (*url.URL, error) {
    	return func(*Request) (*url.URL, error) {
    		return fixedURL, nil
    	}
    }
    
    // transportRequest is a wrapper around a *Request that adds
    // optional extra headers to write and stores any error to return
    // from roundTrip.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

                log.debug("getDiskFreeSpace", ex);
                switch ( ex.getNtStatus() ) {
                case NtStatus.NT_STATUS_INVALID_INFO_CLASS:
                case NtStatus.NT_STATUS_UNSUCCESSFUL: // NetApp Filer
                    if ( !th.isSMB2() ) {
                        // SMB_FS_FULL_SIZE_INFORMATION not supported by the server.
                        ai = queryFSInformation(th, AllocInfo.class, FileSystemInformation.SMB_INFO_ALLOCATION);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top