Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for volumes (0.21 sec)

  1. src/main/java/org/codelibs/curl/CurlResponse.java

            }
            return list.toArray(new String[list.size()]);
        }
    
        public String getHeaderValue(final String name) {
            final String[] values = getHeaderValues(name);
            if (values.length == 0) {
                return null;
            }
            return values[0];
        }
    Java
    - Registered: Thu May 09 15:34:10 GMT 2024
    - Last Modified: Mon Nov 14 21:05:19 GMT 2022
    - 4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/curl/CurlRequest.java

                    connection.setRequestMethod(method.toString());
                    if (headerList != null) {
                        for (final String[] values : headerList) {
                            logger.fine(() -> ">>> " + values[0] + "=" + values[1]);
                            connection.addRequestProperty(values[0], values[1]);
                        }
                    }
                    if (compression != null) {
    Java
    - Registered: Thu May 09 15:34:10 GMT 2024
    - Last Modified: Sun Feb 12 12:21:25 GMT 2023
    - 12.3K bytes
    - Viewed (0)
Back to top