/external/gptfdisk/ |
current.spec | 7 URL: http://www.rodsbooks.com/gdisk 9 Source: http://www.rodsbooks.com/gdisk/gptfdisk-0.8.10.tar.gz
|
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/ |
RouteGuideUtil.cs | 7 // http://www.apache.org/licenses/LICENSE-2.0 55 /// The formula is based on http://mathforum.org/library/drmath/view/51879.html
|
/external/grpc-grpc/src/core/lib/security/credentials/jwt/ |
jwt_verifier.cc | 9 * http://www.apache.org/licenses/LICENSE-2.0 38 #include "src/core/lib/http/httpcli.h" 119 /* --- JOSE header. see http://tools.ietf.org/html/rfc7515#section-4 --- */ 173 /* --- JWT claims. see http://tools.ietf.org/html/rfc7519#section-4.1 */ 407 gpr_log(GPR_ERROR, "HTTP response is NULL."); 411 gpr_log(GPR_ERROR, "Call to http server failed with error %d.", 698 req.http.path = const_cast<char*>(strchr(jwks_uri, '/')); 699 if (req.http.path == nullptr) { 700 req.http.path = (char*)""; 702 *(req.host + (req.http.path - jwks_uri)) = '\0' [all...] |
/external/guice/extensions/servlet/test/com/google/inject/servlet/ |
FilterPipelineTest.java | 22 import javax.servlet.http.HttpServletRequest;
|
MultiModuleDispatchIntegrationTest.java | 19 import javax.servlet.http.HttpServletRequest;
|
/external/icu/icu4c/source/i18n/ |
format.cpp | 2 // License & terms of use: http://www.unicode.org/copyright.html 29 #error U_I18N_IMPLEMENTATION not set - must be set for all ICU source files in i18n/ - see http://userguide.icu-project.org/howtouseicu
|
/external/libcap-ng/libcap-ng-0.7/ |
libcap-ng.spec | 9 URL: http://people.redhat.com/sgrubb/libcap-ng 10 Source0: http://people.redhat.com/sgrubb/libcap-ng/%{name}-%{version}.tar.gz
|
/external/libevent/sample/ |
http-connect.c | 4 #include <event2/http.h>
|
/external/libjpeg-turbo/simd/x86_64/ |
jdmerge-avx2.asm | 15 ; NASM is available from http://nasm.sourceforge.net/ or 16 ; http://sourceforge.net/project/showfiles.php?group_id=6208
|
/external/libogg/ |
libogg.spec | 8 URL: http://www.xiph.org/ 10 Source: http://www.vorbis.com/files/1.0.1/unix/%{name}-%{version}.tar.gz
|
/external/libxml2/ |
HTMLtree.c | 102 int http; local 106 http = 0; 112 if ((!xmlStrcasecmp(attr->name, BAD_CAST"http-equiv")) 114 http = 1; 118 if ((http != 0) && (content != NULL)) 235 int http; local 239 http = 0; 245 if ((!xmlStrcasecmp(attr->name, BAD_CAST"http-equiv")) 247 http = 1; 254 if ((http != 0) && (content != NULL) [all...] |
/external/libyuv/files/tools_libyuv/valgrind/ |
libyuv_tests.bat | 50 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/dr-memory"
66 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/threadsanitizer/threadsanitizer-on-windows"
|
/external/llvm/utils/ |
clang-parse-diagnostics-file | 56 "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
/external/okhttp/android/src/main/java/com/android/okhttp/internalandroidapi/ |
AndroidResponseCacheAdapter.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 89 com.squareup.okhttp.internal.http.CacheRequest okCacheRequest = 127 * Returns the number of HTTP requests that required the network to either 136 * Returns the number of HTTP requests whose response was provided by the 146 * Returns the total number of HTTP requests that were made. This includes
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/ |
RealConnection.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 34 import com.squareup.okhttp.internal.http.Http1xStream; 35 import com.squareup.okhttp.internal.http.OkHeaders; 36 import com.squareup.okhttp.internal.http.RouteException; 37 import com.squareup.okhttp.internal.http.StreamAllocation; 109 rawSocket = proxy.type() == Proxy.Type.DIRECT || proxy.type() == Proxy.Type.HTTP 136 /** Does all the work necessary to build a full HTTP or HTTPS connection on a raw socket. */ 255 * To make an HTTPS connection over an HTTP proxy, send an unencrypted 263 String requestLine = "CONNECT " + Util.hostHeader(url, true) + " HTTP/1.1"; 306 * Returns a request that creates a TLS tunnel via an HTTP proxy, or null i [all...] |
/external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/ |
AndroidShimResponseCache.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 74 com.squareup.okhttp.internal.http.CacheRequest okCacheRequest = 109 * Returns the number of HTTP requests that required the network to either 117 * Returns the number of HTTP requests whose response was provided by the 126 * Returns the total number of HTTP requests that were made. This includes
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
DisconnectTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package com.squareup.okhttp.internal.http;
|
StatusLineTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package com.squareup.okhttp.internal.http; 31 StatusLine statusLine = StatusLine.parse("HTTP/1." + version + " " + code + " " + message); 40 StatusLine statusLine = StatusLine.parse("HTTP/1." + version + " " + code + " "); 49 * http://www.w3.org/Protocols/rfc2616/rfc2616-sec6.html#sec6.1 54 StatusLine statusLine = StatusLine.parse("HTTP/1." + version + " " + code); 76 assertInvalid("HTTP/2.0 200 OK"); 77 assertInvalid("HTTP/2.1 200 OK"); 78 assertInvalid("HTTP/-.1 200 OK"); 79 assertInvalid("HTTP/1.- 200 OK") [all...] |
ThreadInterruptTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package com.squareup.okhttp.internal.http;
|
/external/okhttp/repackaged/android/src/main/java/com/android/okhttp/internalandroidapi/ |
AndroidResponseCacheAdapter.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 91 com.android.okhttp.internal.http.CacheRequest okCacheRequest = 129 * Returns the number of HTTP requests that required the network to either 138 * Returns the number of HTTP requests whose response was provided by the 148 * Returns the total number of HTTP requests that were made. This includes
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/ |
Internal.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 27 import com.android.okhttp.internal.http.StreamAllocation;
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/io/ |
RealConnection.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 35 import com.android.okhttp.internal.http.Http1xStream; 36 import com.android.okhttp.internal.http.OkHeaders; 37 import com.android.okhttp.internal.http.RouteException; 38 import com.android.okhttp.internal.http.StreamAllocation; 113 rawSocket = proxy.type() == Proxy.Type.DIRECT || proxy.type() == Proxy.Type.HTTP 140 /** Does all the work necessary to build a full HTTP or HTTPS connection on a raw socket. */ 259 * To make an HTTPS connection over an HTTP proxy, send an unencrypted 267 String requestLine = "CONNECT " + Util.hostHeader(url, true) + " HTTP/1.1"; 310 * Returns a request that creates a TLS tunnel via an HTTP proxy, or null i [all...] |
/external/okhttp/repackaged/okhttp-android-support/src/main/java/com/android/okhttp/ |
AndroidShimResponseCache.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 76 com.android.okhttp.internal.http.CacheRequest okCacheRequest = 111 * Returns the number of HTTP requests that required the network to either 119 * Returns the number of HTTP requests whose response was provided by the 128 * Returns the total number of HTTP requests that were made. This includes
|
/external/python/cpython3/Lib/test/ |
test_http_cookies.py | 1 # Simple test suite for http/cookies.py 6 from http import cookies
|
/external/python/google-api-python-client/samples/maps_engine/ |
maps_engine.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 51 from googleapiclient.http import MediaFileUpload
|