Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fileurl (0.13 sec)

  1. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        server.enqueue(
          MockResponse.Builder()
            .code(301)
            .setHeader("Location", "http://www.fakeurl:" + server.port)
            .build(),
        )
        server.enqueue(MockResponse())
        val dns = FakeDns()
        dns["fakeurl"] = client.dns.lookup(server.hostName)
        dns["www.fakeurl"] = client.dns.lookup(server.hostName)
        client =
          client.newBuilder()
            .dns(dns)
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.beans.util.BeanUtil;
    import org.codelibs.core.exception.ResourceNotFoundRuntimeException;
    import org.codelibs.core.io.FileUtil;
    import org.codelibs.core.io.ResourceUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.lang.ThreadUtil;
    import org.codelibs.curl.CurlResponse;
    import org.codelibs.fesen.client.EngineInfo;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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