HomeSort by relevance Sort by last modified time
    Searched refs:HEAD (Results 76 - 100 of 209) sorted by null

1 2 34 5 6 7 8 9

  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 56 * The <em>head</em> of the queue is that element that has been on the
61 * operations obtain elements at the head of the queue.
128 * head as well.
130 * Nodes that are reachable from head. CASing the item
132 * queue. Reachability of all elements from head must remain
134 * head to advance. A dequeued Node may remain in use
148 * self-link implicitly means to advance to head.
150 * Both head and tail are permitted to lag. In fact, failing to
154 * that is, we update head/tail when the current pointer appears
157 * Since head and tail are updated concurrently and independently
220 transient volatile Node<E> head; field in class:ConcurrentLinkedQueue
    [all...]
ConcurrentLinkedDeque.java 148 * The deque object has two node references, "head" and "tail".
149 * The head and tail are only approximations to the first and last
151 * following prev pointers from head; likewise for tail. However,
152 * it is permissible for head and tail to be referring to deleted
184 * head or tail.
203 * the nodes pointed at by head/tail never get gc-unlinked, since
204 * head/tail are needed to get "back on track" by other nodes that
219 * pointers from head), and p.next == null && p.prev == p means
254 * - the first node is always O(1) reachable from head via prev links
256 * - head != nul
263 private transient volatile Node<E> head; field in class:ConcurrentLinkedDeque
    [all...]
LinkedTransferQueue.java 56 * to any given producer. The <em>head</em> of the queue is that
112 * It maintains two pointer fields, "head", pointing to a
119 * head tail
125 * overhead limitations when maintaining (via CAS) these head and
162 * updates on head/tail fields.
165 * never versus always updating queue (head and tail) pointers.
172 * head tail
178 * between the value of "head" and the first unmatched node, and
186 * virtue of only sometimes updating head or tail pointers when
208 * be further reduced without increasing contention of head
560 transient volatile Node head; field in class:LinkedTransferQueue
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 183 new ElemDesc(0 | ElemDesc.HEAD | ElemDesc.BLOCK));
186 new ElemDesc(0 | ElemDesc.HEAD | ElemDesc.BLOCK));
189 new ElemDesc(0 | ElemDesc.HEAD | ElemDesc.BLOCK));
192 new ElemDesc(0 | ElemDesc.HEAD | ElemDesc.BLOCK));
195 new ElemDesc(0 | ElemDesc.HEAD | ElemDesc.BLOCK));
198 new ElemDesc(0 | ElemDesc.HEAD | ElemDesc.BLOCK));
270 "HEAD",
401 elemDesc = (ElemDesc) m_elementFlags.get("head");
    [all...]
  /build/kati/testcase/
parse_benchcmp.go 84 curBranch := output("git", "symbolic-ref", "--short", "HEAD")
  /external/ImageMagick/scripts/
format_c_api_docs 246 s|<HEAD>|<HEAD>
  /external/libyuv/files/tools_libyuv/autoroller/
roll_deps.py 226 - If it's a Chromium sub-directory, roll it to the HEAD revision (notice
229 - If it's another DEPS entry (not shared with Chromium), roll it to HEAD
249 # Use the HEAD of the deps repo.
251 'HEAD'])
361 ['git', 'rev-parse', '--abbrev-ref', 'HEAD'])[0].splitlines()[0]
417 'Chromium HEAD revision if omitted.'))
453 stdout, _ = _RunCommand(['git', 'ls-remote', CHROMIUM_SRC_URL, 'HEAD'])
455 logging.info('No revision specified. Using HEAD: %s', head_rev)
  /external/webrtc/tools/autoroller/
roll_chromium_revision.py 314 ['git', 'rev-parse', '--abbrev-ref', 'HEAD'])[0].splitlines()[0]
376 'Chromium HEAD revision if omitted.'))
412 stdout, _ = _RunCommand(['git', 'ls-remote', CHROMIUM_SRC_URL, 'HEAD'])
414 logging.info('No revision specified. Using HEAD: %s', head_rev)
  /prebuilts/go/darwin-x86/doc/codewalk/
urlpoll.go 66 // Poll executes an HTTP HEAD request for url
69 resp, err := http.Head(r.url)
  /prebuilts/go/linux-x86/doc/codewalk/
urlpoll.go 66 // Poll executes an HTTP HEAD request for url
69 resp, err := http.Head(r.url)
  /system/core/fastboot/
Android.mk 17 fastboot_version := $(shell git -C $(LOCAL_PATH) rev-parse --short=12 HEAD 2>/dev/null)-android
  /external/libvpx/libvpx/test/
tools_common.sh 90 git rev-parse --short HEAD)
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpHeadRequestTest.java 56 invokeServer("HEAD " + HttpServerTest.URI + "?foo&bar= HTTP/1.1");
66 invokeServer("HEAD " + HttpServerTest.URI + "?foo=bar&foo=baz&zot&zim= HTTP/1.1");
80 invokeServer("HEAD " + HttpServerTest.URI + "?foo=bar&foo=baz&zot&zim= HTTP/1.1");
89 invokeServer("HEAD " + HttpServerTest.URI + "?foo=bar&baz=zot HTTP/1.1");
101 invokeServer("HEAD " + HttpServerTest.URI + "?foo&baz=zot HTTP/1.1");
112 invokeServer("HEAD " + HttpServerTest.URI + "?foo=bar&foo=baz HTTP/1.1");
121 invokeServer("HEAD " + HttpServerTest.URI + " HTTP/1.1");
130 ByteArrayOutputStream outputStream = invokeServer("HEAD " + HttpServerTest.URI + " HTTP/1.1");
146 invokeServer("HEAD " + HttpServerTest.URI + "?foo=bar&baz=zot HTTP/1.1");
153 invokeServer("HEAD " + HttpServerTest.URI + "?foo=&baz=zot HTTP/1.1")
    [all...]
  /external/volley/src/main/java/com/android/volley/
Request.java 53 int HEAD = 4;
63 * Request method of this request. Currently supports GET, POST, PUT, DELETE, HEAD, OPTIONS,
  /external/volley/src/main/java/com/android/volley/toolbox/
HttpClientStack.java 129 case Method.HEAD:
  /external/volley/src/test/java/com/android/volley/toolbox/
HttpClientStackTest.java 106 TestRequest.Head request = new TestRequest.Head();
107 assertEquals(request.getMethod(), Method.HEAD);
HurlStackTest.java 112 TestRequest.Head request = new TestRequest.Head();
113 assertEquals(request.getMethod(), Method.HEAD);
116 assertEquals("HEAD", mMockConnection.getRequestMethod());
  /prebuilts/go/darwin-x86/src/net/http/
client_test.go 98 r, err := cst.c.Head(cst.ts.URL)
232 // HEAD request should also have the ability to follow redirects.
233 _, err = c.Head(ts.URL)
234 if e, g := "Head /?n=10: stopped after 10 redirects", fmt.Sprintf("%v", err); e != g {
235 t.Errorf("with default client Head, expected error %q, got %q", e, g)
280 creq, _ := NewRequest("HEAD", ts.URL, nil)
630 client.Head(us) // Note: doesn't hit network
1077 req, _ := NewRequest("HEAD", cst.ts.URL+tt.suffix, nil)
    [all...]
client.go 92 // running after Get, Head, Post, or Do return and will
109 // DefaultClient is the default Client and is used by Get, Head, and Post.
424 // HEAD requests. RFC 7231 lifts this restriction, but we still
427 if reqMethod != "GET" && reqMethod != "HEAD" {
485 // (or HEAD if the original request was HEAD), with no body.
755 // Head issues a HEAD to the specified URL. If the response is one of
756 // the following redirect codes, Head follows the redirect, up to a
765 // Head is a wrapper around DefaultClient.Hea
    [all...]
http.go 107 // If set, it must be "GET" or "HEAD". Empty means "GET".
  /prebuilts/go/linux-x86/src/net/http/
client_test.go 98 r, err := cst.c.Head(cst.ts.URL)
232 // HEAD request should also have the ability to follow redirects.
233 _, err = c.Head(ts.URL)
234 if e, g := "Head /?n=10: stopped after 10 redirects", fmt.Sprintf("%v", err); e != g {
235 t.Errorf("with default client Head, expected error %q, got %q", e, g)
280 creq, _ := NewRequest("HEAD", ts.URL, nil)
630 client.Head(us) // Note: doesn't hit network
1077 req, _ := NewRequest("HEAD", cst.ts.URL+tt.suffix, nil)
    [all...]
client.go 92 // running after Get, Head, Post, or Do return and will
109 // DefaultClient is the default Client and is used by Get, Head, and Post.
424 // HEAD requests. RFC 7231 lifts this restriction, but we still
427 if reqMethod != "GET" && reqMethod != "HEAD" {
485 // (or HEAD if the original request was HEAD), with no body.
755 // Head issues a HEAD to the specified URL. If the response is one of
756 // the following redirect codes, Head follows the redirect, up to a
765 // Head is a wrapper around DefaultClient.Hea
    [all...]
http.go 107 // If set, it must be "GET" or "HEAD". Empty means "GET".
  /external/caliper/lib/
jsr311-api-1.1.1.jar 
  /external/dtc/
Makefile 200 git archive --format=tar --prefix=dtc-$(dtc_version)/ HEAD \

Completed in 604 milliseconds

1 2 34 5 6 7 8 9