SYMBOL INDEX (4511 symbols across 318 files) FILE: comsat-actors-api/src/main/java/co/paralleluniverse/comsat/webactors/Cookie.java class Cookie (line 19) | public class Cookie { method cookie (line 39) | public static Builder cookie(String name, String value) { class Builder (line 43) | public static class Builder { method Builder (line 54) | private Builder(String name, String value) { method setPath (line 75) | public Builder setPath(String uri) { method setDomain (line 96) | public Builder setDomain(String domain) { method setMaxAge (line 119) | public Builder setMaxAge(int maxAge) { method setComment (line 134) | public Builder setComment(String comment) { method setVersion (line 153) | public Builder setVersion(int version) { method setHttpOnly (line 172) | public Builder setHttpOnly(boolean httpOnly) { method setSecure (line 189) | public Builder setSecure(boolean flag) { method build (line 199) | public Cookie build() { method Cookie (line 213) | private Cookie(Builder builder) { method getName (line 230) | public String getName() { method getValue (line 239) | public String getValue() { method getPath (line 251) | public String getPath() { method getDomain (line 262) | public String getDomain() { method getMaxAge (line 276) | public int getMaxAge() { method getComment (line 285) | public String getComment() { method getVersion (line 300) | public int getVersion() { method isHttpOnly (line 309) | public boolean isHttpOnly() { method isSecure (line 321) | public boolean isSecure() { method toString (line 325) | @Override FILE: comsat-actors-api/src/main/java/co/paralleluniverse/comsat/webactors/HttpMessage.java class HttpMessage (line 24) | public abstract class HttpMessage extends WebMessage { method getHeaders (line 32) | public abstract ListMultimap getHeaders(); method getCookies (line 38) | public abstract Collection getCookies(); method getContentLength (line 44) | public abstract int getContentLength(); method getCharacterEncoding (line 50) | public abstract Charset getCharacterEncoding(); method getContentType (line 56) | public abstract String getContentType(); method getHeaderValues (line 64) | public Collection getHeaderValues(String name) { method getHeader (line 78) | public String getHeader(String name) { method first (line 82) | static V first(Collection c) { FILE: comsat-actors-api/src/main/java/co/paralleluniverse/comsat/webactors/HttpRequest.java class HttpRequest (line 37) | public abstract class HttpRequest extends HttpMessage { method getSourceHost (line 41) | public abstract String getSourceHost(); method getSourcePort (line 46) | public abstract int getSourcePort(); method getParameters (line 52) | public abstract Multimap getParameters(); method getAttributes (line 67) | public abstract Map getAttributes(); method getParametersValues (line 75) | public Collection getParametersValues(String name) { method getParameter (line 87) | public String getParameter(String name) { method getAttribute (line 98) | public Object getAttribute(String name) { method getScheme (line 106) | public abstract String getScheme(); method getMethod (line 114) | public abstract String getMethod(); method getDateHeader (line 135) | public long getDateHeader(String name) { method getPathInfo (line 159) | public abstract String getPathInfo(); method getContextPath (line 175) | public abstract String getContextPath(); method getQueryString (line 181) | public abstract String getQueryString(); method getRequestURI (line 198) | public abstract String getRequestURI(); method getRequestURL (line 212) | public String getRequestURL() { method getServerName (line 237) | public abstract String getServerName(); method getServerPort (line 246) | public abstract int getServerPort(); method getFrom (line 256) | @Override method contentString (line 259) | @Override class Builder (line 275) | public static class Builder { method Builder (line 292) | public Builder(ActorRef from, String body) { method Builder (line 298) | public Builder(ActorRef from, ByteBuffer body) { method Builder (line 304) | public Builder(ActorRef from) { method setSourceHost (line 308) | public Builder setSourceHost(String sourceAddress) { method setSourcePort (line 313) | public Builder setSourcePort(int sourcePort) { method setContentType (line 330) | public Builder setContentType(String contentType) { method setCharacterEncoding (line 351) | public Builder setCharacterEncoding(Charset charset) { method addHeader (line 364) | public Builder addHeader(final String name, final String value) { method addCookie (line 379) | public Builder addCookie(Cookie cookie) { method setMethod (line 386) | public Builder setMethod(String method) { method setScheme (line 391) | public Builder setScheme(String scheme) { method setServer (line 396) | public Builder setServer(String server) { method setPort (line 401) | public Builder setPort(int port) { method setPath (line 406) | public Builder setPath(String path) { method addParam (line 418) | public Builder addParam(final String name, final String value) { method build (line 430) | public HttpRequest build() { class SimpleHttpRequest (line 435) | private static class SimpleHttpRequest extends HttpRequest { method SimpleHttpRequest (line 458) | public SimpleHttpRequest(ActorRef from, HttpRequ... method SimpleHttpRequest (line 476) | public SimpleHttpRequest(ActorRef from, HttpRequ... method getSourceHost (line 494) | @Override method getSourcePort (line 499) | @Override method getFrom (line 504) | @Override method getContentType (line 509) | @Override method getCharacterEncoding (line 514) | @Override method getContentLength (line 519) | @Override method getStringBody (line 527) | @Override method getByteBufferBody (line 532) | @Override method getCookies (line 537) | @Override method getHeaders (line 542) | @Override method getAttributes (line 547) | @Override method getScheme (line 552) | @Override method getMethod (line 557) | @Override method getServerName (line 562) | @Override method getServerPort (line 567) | @Override method getParameters (line 572) | @Override method getRequestURI (line 577) | @Override method getQueryString (line 582) | @Override method getPathInfo (line 593) | @Override method getContextPath (line 598) | @Override method parseDate (line 631) | private static long parseDate(String value) { FILE: comsat-actors-api/src/main/java/co/paralleluniverse/comsat/webactors/HttpResponse.java class HttpResponse (line 33) | public abstract class HttpResponse extends HttpMessage { method getFrom (line 34) | @Override method getRequest (line 40) | public abstract HttpRequest getRequest(); method getStatus (line 45) | public abstract int getStatus(); method getError (line 50) | public abstract Throwable getError(); method getRedirectPath (line 55) | public abstract String getRedirectPath(); method shouldStartActor (line 57) | public abstract boolean shouldStartActor(); method contentString (line 59) | @Override method ok (line 84) | public static Builder ok(ActorRef from, HttpReques... method ok (line 95) | public static Builder ok(ActorRef from, HttpReques... method error (line 108) | public static Builder error(ActorRef from, HttpReq... method error (line 120) | public static Builder error(ActorRef from, HttpReq... method redirect (line 139) | public static Builder redirect(HttpRequest request, String redirectPat... class Builder (line 143) | public static class Builder { method Builder (line 157) | public Builder(ActorRef from, HttpRequest reques... method Builder (line 165) | public Builder(ActorRef from, HttpRequest reques... method Builder (line 173) | public Builder(ActorRef from, HttpRequest reques... method Builder (line 177) | Builder(HttpRequest request, String body) { method Builder (line 181) | Builder(HttpRequest request, ByteBuffer body) { method Builder (line 185) | Builder(HttpRequest request) { method setContentType (line 201) | public Builder setContentType(String contentType) { method setCharacterEncoding (line 222) | public Builder setCharacterEncoding(Charset charset) { method addHeader (line 235) | public Builder addHeader(final String name, final String value) { method addCookie (line 249) | public Builder addCookie(Cookie cookie) { method status (line 271) | public Builder status(int sc) { method error (line 283) | public Builder error(Throwable error) { method startActor (line 294) | public Builder startActor() { method redirect (line 299) | Builder redirect(String redirectPath) { method build (line 310) | public HttpResponse build() { class SimpleHttpResponse (line 315) | private static class SimpleHttpResponse extends HttpResponse { method SimpleHttpResponse (line 336) | public SimpleHttpResponse(ActorRef from, HttpRes... method SimpleHttpResponse (line 351) | public SimpleHttpResponse(ActorRef from, Builder... method getFrom (line 366) | @Override method getContentType (line 371) | @Override method getCharacterEncoding (line 376) | @Override method getContentLength (line 381) | @Override method getStringBody (line 389) | @Override method getByteBufferBody (line 394) | @Override method getCookies (line 399) | @Override method getHeaders (line 404) | @Override method getRequest (line 412) | @Override method getStatus (line 420) | @Override method getError (line 428) | @Override method getRedirectPath (line 436) | @Override method shouldStartActor (line 441) | @Override FILE: comsat-actors-api/src/main/java/co/paralleluniverse/comsat/webactors/HttpStreamOpened.java class HttpStreamOpened (line 28) | public class HttpStreamOpened extends WebStreamOpened implements IdMessa... method HttpStreamOpened (line 31) | public HttpStreamOpened(ActorRef actor, HttpResponse r... method getId (line 41) | @Override FILE: comsat-actors-api/src/main/java/co/paralleluniverse/comsat/webactors/SSE.java class SSE (line 45) | public final class SSE { method startSSE (line 58) | public static HttpResponse.Builder startSSE(ActorRef wrapAsSSE(SendPort from, String bo... method WebDataMessage (line 43) | public WebDataMessage(ActorRef from, ByteBuffe... method getFrom (line 49) | @Override method isBinary (line 58) | public boolean isBinary() { method getStringBody (line 62) | @Override method getByteBufferBody (line 67) | @Override method contentString (line 72) | @Override FILE: comsat-actors-api/src/main/java/co/paralleluniverse/comsat/webactors/WebMessage.java class WebMessage (line 25) | public abstract class WebMessage extends ActorMessage implements FromMes... method getFrom (line 29) | @Override method getStringBody (line 35) | public abstract String getStringBody(); method getByteBufferBody (line 40) | public abstract ByteBuffer getByteBufferBody(); method contentString (line 42) | @Override FILE: comsat-actors-api/src/main/java/co/paralleluniverse/comsat/webactors/WebSocketOpened.java class WebSocketOpened (line 21) | public class WebSocketOpened extends WebStreamOpened { method WebSocketOpened (line 22) | public WebSocketOpened(ActorRef actor) { FILE: comsat-actors-api/src/main/java/co/paralleluniverse/comsat/webactors/WebStreamOpened.java class WebStreamOpened (line 23) | public class WebStreamOpened extends WebMessage { method WebStreamOpened (line 26) | public WebStreamOpened(ActorRef actor) { method getFrom (line 30) | @Override method getStringBody (line 41) | @Override method getByteBufferBody (line 52) | @Override FILE: comsat-actors-netty/src/main/java/co/paralleluniverse/comsat/webactors/netty/AutoWebActorHandler.java class AutoWebActorHandler (line 39) | public class AutoWebActorHandler extends WebActorHandler { method AutoWebActorHandler (line 44) | public AutoWebActorHandler() { method AutoWebActorHandler (line 48) | public AutoWebActorHandler(List packagePrefixes) { method AutoWebActorHandler (line 52) | public AutoWebActorHandler(String httpResponseEncoderName, List... method AutoContextProvider (line 99) | public AutoContextProvider(ClassLoader userClassLoader, List... method get (line 106) | @Override method newActorContext (line 121) | protected AutoContext newActorContext(FullHttpRequest req) { method getSessionId (line 128) | private String getSessionId(FullHttpRequest req) { class AutoContext (line 140) | private static class AutoContext extends DefaultContextImpl { method AutoContext (line 149) | public AutoContext(FullHttpRequest req, List packagePrefixes... method fillActor (line 156) | private void fillActor(FullHttpRequest req) { method getId (line 164) | @Override method restart (line 169) | @Override method getWebActor (line 175) | @Override method handlesWithHttp (line 180) | @Override method handlesWithWebSocket (line 185) | @Override method watch (line 190) | @Override method autoCreateActor (line 195) | @SuppressWarnings("unchecked") method registerActorClasses (line 211) | private synchronized void registerActorClasses() { FILE: comsat-actors-netty/src/main/java/co/paralleluniverse/comsat/webactors/netty/NettyHttpRequest.java class NettyHttpRequest (line 46) | public final class NettyHttpRequest extends HttpRequest { method NettyHttpRequest (line 68) | public NettyHttpRequest(ActorRef actorRef, Chann... method getSourceHost (line 77) | @Override method getSourcePort (line 83) | @Override method fillSourceAddress (line 89) | private void fillSourceAddress() { method getParameters (line 96) | @Override method getAttributes (line 110) | @Override method getScheme (line 115) | @Override method initUri (line 121) | private void initUri() { method getMethod (line 131) | @Override method getPathInfo (line 136) | @Override method getContextPath (line 142) | @Override method getQueryString (line 147) | @Override method getRequestURI (line 153) | @Override method getServerName (line 158) | @Override method getServerPort (line 164) | @Override method getFrom (line 170) | @SuppressWarnings("unchecked") method getHeaders (line 176) | @Override method getCookies (line 184) | @Override method getNettyCookies (line 204) | static Set getNettyCookies(... method getContentLength (line 213) | @Override method getCharacterEncoding (line 224) | @Override method getContentType (line 231) | @Override method getStringBody (line 244) | @Override method getByteBufferBody (line 254) | @Override method getSessionId (line 265) | public final String getSessionId() { method getContext (line 269) | public ChannelHandlerContext getContext() { method getRequest (line 273) | public FullHttpRequest getRequest() { method decodeStringBody (line 277) | private String decodeStringBody() { method getCharacterEncodingOrDefault (line 293) | Charset getCharacterEncodingOrDefault() { method extractCharacterEncodingOrDefault (line 297) | static Charset extractCharacterEncodingOrDefault(HttpHeaders headers) { method extractCharacterEncoding (line 301) | static Charset extractCharacterEncoding(ListMultimap h... method extractHeaders (line 317) | static ImmutableListMultimap extractHeaders(HttpHeader... method getCharacterEncodingOrDefault (line 328) | private static Charset getCharacterEncodingOrDefault(Charset character... FILE: comsat-actors-netty/src/main/java/co/paralleluniverse/comsat/webactors/netty/WebActorHandler.java class WebActorHandler (line 53) | public class WebActorHandler extends SimpleChannelInboundHandler { type WebActorContextProvider (line 57) | public interface WebActorContextProvider { method get (line 58) | Context get(FullHttpRequest req); type Context (line 61) | public interface Context { method getId (line 62) | String getId(); method getLock (line 63) | ReentrantLock getLock(); method isValid (line 65) | boolean isValid() throws SuspendExecution, InterruptedException; method invalidate (line 66) | void invalidate() throws SuspendExecution, InterruptedException; method renew (line 68) | boolean renew(); method restart (line 69) | void restart(FullHttpRequest r); method getWebActor (line 71) | ActorRef getWebActor(); method handlesWithHttp (line 72) | boolean handlesWithHttp(String uri); method handlesWithWebSocket (line 73) | boolean handlesWithWebSocket(String uri); type WatchPolicy (line 75) | enum WatchPolicy { DONT_WATCH, DIE, DIE_IF_EXCEPTION_ELSE_RESTART, R... method watch (line 76) | WatchPolicy watch(); method getAttachments (line 78) | Map getAttachments(); class DefaultContextImpl (line 81) | public static abstract class DefaultContextImpl implements Context { method DefaultContextImpl (line 94) | public DefaultContextImpl() { method invalidate (line 98) | @Override method isValid (line 107) | @Override method renew (line 115) | @Override method getAttachments (line 124) | @Override method getLock (line 129) | @Override method setValidityMS (line 134) | public void setValidityMS(long validityMS) { method getValidityMS (line 138) | public long getValidityMS() { method WebActorHandler (line 143) | public WebActorHandler(WebActorContextProvider contextProvider) { method WebActorHandler (line 147) | public WebActorHandler(WebActorContextProvider contextProvider, String... method channelReadComplete (line 152) | @Override method exceptionCaught (line 157) | @Override method channelRead0 (line 164) | @Override method sessionsEnabled (line 175) | protected static boolean sessionsEnabled() { method handleWebSocketFrame (line 200) | private void handleWebSocketFrame(ChannelHandlerContext ctx, WebSocket... method handleHttpRequest (line 221) | private void handleHttpRequest(ChannelHandlerContext ctx, FullHttpRequ... method addActorToContextAndUnlock (line 286) | static void addActorToContextAndUnlock(Context actorContext, ActorImpl... class WebSocketActorAdapter (line 295) | private static final class WebSocketActorAdapter extends FakeActor userActor, Context ac... method toString (line 442) | @Override method handleLifecycleMessage (line 447) | @Override method die (line 454) | @Override method throwIn (line 460) | @Override method interrupt (line 466) | @Override method handleLifecycle (line 472) | final boolean handleLifecycle(LifecycleMessage l) { method handleRequest (line 492) | final void handleRequest(NettyHttpRequest s) throws SuspendExecution... method handleReply (line 506) | @Suspendable method handleDie (line 604) | @Suspendable method possiblyReplyDeadAndUnblock (line 628) | private void possiblyReplyDeadAndUnblock(Throwable cause) { method blockSessionRequests (line 642) | @Suspendable method unblockSessionRequests (line 663) | @Suspendable method isRequestInProgress (line 672) | private boolean isRequestInProgress() { class HttpChannelAdapter (line 677) | private static final class HttpChannelAdapter implements SendPort actorCla... method handlesWithWebSocket (line 738) | protected static boolean handlesWithWebSocket(String uri, Class act... class HttpStreamActorAdapter (line 742) | private static final class HttpStreamActorAdapter extends FakeActor actorClass) { method lookupOrInsert (line 916) | private static List> lookupOrInsert(Class acto... method insert (line 926) | private static List> insert(Class actorClass) { method addPattern (line 940) | private static void addPattern(List> ret, String ... method servletMatch (line 950) | private static boolean servletMatch(String pattern, String uri) { FILE: comsat-actors-netty/src/test/java/co/paralleluniverse/comsat/webactors/netty/HttpRequestWrapperTest.java class HttpRequestWrapperTest (line 15) | public class HttpRequestWrapperTest { method httpHeaderCaseInsensitivity (line 17) | @Test FILE: comsat-actors-netty/src/test/java/co/paralleluniverse/comsat/webactors/netty/NettyWebActor.java class NettyWebActor (line 22) | @WebActor(httpUrlPatterns = {"/*"}, webSocketUrlPatterns = {"/ws"}) FILE: comsat-actors-netty/src/test/java/co/paralleluniverse/comsat/webactors/netty/WebActorTest.java class WebActorTest (line 46) | @RunWith(Parameterized.class) method getId (line 57) | @Override method getWebActor (line 62) | @SuppressWarnings("unchecked") method restart (line 68) | @Override method handlesWithWebSocket (line 73) | @Override method watch (line 78) | @Override method handlesWithHttp (line 83) | @Override method call (line 90) | @Override method call (line 102) | @Override method data (line 108) | @Parameterized.Parameters(name = "{index}") method WebActorTest (line 120) | public WebActorTest(Callable webActorHandlerCreator) { method setUp (line 124) | @Before method testDie (line 156) | @Override method tearDown (line 164) | @After method getSessionIdCookieName (line 172) | @Override FILE: comsat-actors-servlet/src/main/java/co/paralleluniverse/comsat/webactors/servlet/EmbedHttpSessionWsConfigurator.java class EmbedHttpSessionWsConfigurator (line 22) | class EmbedHttpSessionWsConfigurator extends Configurator { method modifyHandshake (line 23) | @Override FILE: comsat-actors-servlet/src/main/java/co/paralleluniverse/comsat/webactors/servlet/ServletHttpRequest.java class ServletHttpRequest (line 45) | public final class ServletHttpRequest extends HttpRequest { method ServletHttpRequest (line 64) | public ServletHttpRequest(ActorRef sender, HttpS... method getServletRequest (line 70) | public HttpServletRequest getServletRequest() { method getServletResponse (line 74) | public HttpServletResponse getServletResponse() { method getSourceHost (line 78) | @Override method getSourcePort (line 83) | @Override method getStringBody (line 92) | @Override method getByteBufferBody (line 108) | @Override method readBody (line 118) | private byte[] readBody() { method getHeaders (line 135) | @Override method getParameters (line 150) | @Override method getAttributes (line 167) | @Override method getCookies (line 181) | @Override method getDateHeader (line 204) | @Override method getMethod (line 209) | @Override method getScheme (line 214) | @Override method getQueryString (line 220) | @Override method getServerName (line 225) | @Override method getServerPort (line 230) | @Override method getContextPath (line 235) | @Override method getRequestURI (line 240) | @Override method getContentLength (line 245) | @Override method getContentType (line 250) | @Override method getPathInfo (line 255) | @Override method getCharacterEncoding (line 260) | @Override method getFrom (line 265) | @Override FILE: comsat-actors-servlet/src/main/java/co/paralleluniverse/comsat/webactors/servlet/ServletWebActors.java class ServletWebActors (line 34) | public final class ServletWebActors { method attachWebActor (line 42) | public static ActorRef attachWebActor(final HttpSession session... method isWebActorAttached (line 60) | public static boolean isWebActorAttached(HttpSession session) { method getWebActor (line 70) | public static ActorRef getWebActor(HttpSession se... method attachWebActor (line 82) | public static ActorRef attachWebActor(Session session, HttpSess... method attachWebActor (line 95) | public static ActorRef attachWebActor(Session session, Endpoint... method attachWebActor (line 109) | public static ActorRef attachWebActor(ServletContext sc, String... method attachWebActor (line 122) | public static ActorRef attachWebActor(ServletContext sc, Collec... method ServletWebActors (line 134) | private ServletWebActors() { FILE: comsat-actors-servlet/src/main/java/co/paralleluniverse/comsat/webactors/servlet/WebActorEndpoint.java class WebActorEndpoint (line 42) | public final class WebActorEndpoint extends Endpoint { method onOpen (line 46) | @Override method getUserWebActor (line 69) | private ActorRef getUserWebActor(EndpointConfig config) { method attachWebActor (line 75) | static WebSocketActor attachWebActor(Session session, EndpointConfig c... method attachWebActor (line 79) | static WebSocketActor attachWebActor(Session session, HttpSession http... method onError (line 87) | @Override method onClose (line 92) | @Override method getSessionActor (line 97) | private static WebSocketActor getSessionActor(Session session) { method getHttpSession (line 101) | private static HttpSession getHttpSession(EndpointConfig config) { class WebSocketActor (line 105) | static final class WebSocketActor extends FakeActor { method WebSocketActor (line 110) | public WebSocketActor(Session session, HttpSession httpSession, Acto... method onOpen (line 142) | final void onOpen() { method onClose (line 157) | final void onClose(CloseReason closeReason) { method onError (line 162) | final void onError(Throwable t) { method handleLifecycleMessage (line 166) | @Override method throwIn (line 176) | @Override method interrupt (line 181) | @Override method die (line 186) | @Override method log (line 196) | private void log(String message, Throwable t) { method toString (line 200) | @Override class WebSocketChannel (line 206) | private static final class WebSocketChannel implements SendPort setUserClassLoader(... method contextInitialized (line 51) | @Override method registerWebActor (line 85) | public static void registerWebActor(ServletContext sc, Class webAct... method contextDestroyed (line 111) | @Override FILE: comsat-actors-servlet/src/main/java/co/paralleluniverse/comsat/webactors/servlet/WebActorServlet.java class WebActorServlet (line 38) | @WebListener method init (line 75) | @Override method setRedirectNoSessionPath (line 102) | public final WebActorServlet setRedirectNoSessionPath(String path) { method setActorClassName (line 107) | public final WebActorServlet setActorClassName(String className) { method getOrAttachSessionActor (line 112) | static HttpActorAdapter getOrAttachSessionActor(final HttpSession sess... method sessionCreated (line 126) | @Override method sessionDestroyed (line 131) | @Override method isWebActorAttached (line 136) | static boolean isWebActorAttached(final HttpSession session) { method getWebActor (line 140) | static ActorRef getWebActor(final HttpSession session) { method service (line 146) | @Override method redirect (line 200) | static void redirect(AsyncContext ac, HttpServletResponse res, String ... method internalError (line 206) | static void internalError(HttpServletRequest req, AsyncContext ac, Htt... method error (line 217) | static void error(HttpServletRequest req, AsyncContext ac, HttpServlet... class HttpActorAdapter (line 229) | static final class HttpActorAdapter extends FakeActor { method HttpActorAdapter (line 251) | public HttpActorAdapter(Callable userWebActorRefBuilder, H... method handleRequest (line 267) | final void handleRequest(final AsyncContext asyncCtx, final HttpServ... method blockSessionRequests (line 292) | @Suspendable method unblockSessionRequests (line 315) | @Suspendable method isRequestInProgress (line 324) | private boolean isRequestInProgress() { method throwIn (line 328) | @Override method interrupt (line 333) | @Override method handleLifecycleMessage (line 338) | @Override method handleLifecycle (line 344) | private boolean handleLifecycle(LifecycleMessage m) { method die (line 361) | @Override method handleDie (line 366) | private void handleDie(Throwable cause) { method possiblyReplyDeadAndUnblock (line 400) | private void possiblyReplyDeadAndUnblock(final Throwable cause) thro... method handleReply (line 415) | final void handleReply(final HttpResponse msg) throws SuspendExecuti... method writeResponse (line 475) | private void writeResponse(AsyncContext ctx, HttpResponse msg, HttpS... class HttpRequestChannel (line 492) | private static final class HttpRequestChannel implements SendPort cls) { method setUp (line 47) | @Before method tearDown (line 60) | @After method getSessionIdCookieName (line 65) | @Override method getClientEndPointConfig (line 70) | @Override method getByName (line 80) | private static String getByName(final CookieStore cookieStore, String ... FILE: comsat-actors-undertow/src/main/java/co/paralleluniverse/comsat/webactors/undertow/AutoWebActorHandler.java class AutoWebActorHandler (line 37) | public final class AutoWebActorHandler extends WebActorHandler { method AutoWebActorHandler (line 41) | public AutoWebActorHandler() { method AutoWebActorHandler (line 45) | public AutoWebActorHandler(List packagePrefixes) { method AutoWebActorHandler (line 49) | public AutoWebActorHandler(ClassLoader userClassLoader, List p... method AutoWebActorHandler (line 53) | public AutoWebActorHandler(List packagePrefixes, Map,... method AutoWebActorHandler (line 57) | public AutoWebActorHandler(ClassLoader userClassLoader, List p... method AutoWebActorHandler (line 62) | public AutoWebActorHandler(AutoContextProvider prov) { method newContextProvider (line 66) | protected AutoContextProvider newContextProvider(ClassLoader userClass... class AutoContextProvider (line 70) | private static class AutoContextProvider implements ContextProvider { method AutoContextProvider (line 76) | public AutoContextProvider(ClassLoader userClassLoader, List... method AutoContextProvider (line 80) | public AutoContextProvider(ClassLoader userClassLoader, List... method get (line 87) | @Override method newContext (line 109) | private Context newContext(final HttpServerExchange xch) { class AutoActorContext (line 121) | private static final class AutoActorContext extends DefaultContextImpl { method AutoActorContext (line 130) | public AutoActorContext(List packagePrefixes, Map, ... method fillActor (line 141) | private boolean fillActor(HttpServerExchange xch) { method getId (line 151) | @Override method restart (line 156) | @Override method getWebActor (line 162) | @Override method handlesWithWebSocket (line 167) | @Override method handlesWithHttp (line 172) | @Override method watch (line 177) | @Override method autoCreateActor (line 182) | @SuppressWarnings("unchecked") method registerActorClasses (line 199) | private synchronized void registerActorClasses() { FILE: comsat-actors-undertow/src/main/java/co/paralleluniverse/comsat/webactors/undertow/ByteArrayReadChannelListener.java class ByteArrayReadChannelListener (line 36) | public abstract class ByteArrayReadChannelListener implements ChannelLis... method ByteArrayReadChannelListener (line 40) | public ByteArrayReadChannelListener(final ByteBufferPool bufferPool) { method setup (line 44) | public final void setup(final StreamSourceChannel c) { method handleEvent (line 48) | @Override method byteArrayDone (line 53) | protected abstract void byteArrayDone(byte[] bs); method error (line 55) | protected abstract void error(IOException e); method partialRead (line 57) | private void partialRead(StreamSourceChannel c, boolean setup) { method cleanup (line 98) | private void cleanup(StreamSourceChannel c) { FILE: comsat-actors-undertow/src/main/java/co/paralleluniverse/comsat/webactors/undertow/StringWriteChannelListener.java class StringWriteChannelListener (line 35) | public final class StringWriteChannelListener implements ChannelListener... method StringWriteChannelListener (line 38) | public StringWriteChannelListener(String string) { method StringWriteChannelListener (line 42) | public StringWriteChannelListener(final String string, Charset charset) { method StringWriteChannelListener (line 46) | public StringWriteChannelListener(final ByteBuffer buffer) { method setup (line 50) | public final void setup(final StreamSinkChannel channel) { method handleEvent (line 54) | @Override method partialWrite (line 59) | private void partialWrite(StreamSinkChannel c, boolean setup) { method writeDone (line 82) | private void writeDone(final StreamSinkChannel c) { method handleError (line 108) | private void handleError(StreamSinkChannel c, String m, Throwable t) { method cleanup (line 118) | private void cleanup() { FILE: comsat-actors-undertow/src/main/java/co/paralleluniverse/comsat/webactors/undertow/UndertowHttpRequest.java class UndertowHttpRequest (line 40) | public final class UndertowHttpRequest extends HttpRequest { method UndertowHttpRequest (line 54) | public UndertowHttpRequest(ActorRef actorRef, Ht... method getServerExchange (line 60) | public HttpServerExchange getServerExchange() { method extractHeaders (line 64) | static ImmutableListMultimap extractHeaders(HeaderMap ... method getSourceHost (line 75) | @Override method getSourcePort (line 81) | @Override method fillSourceAddress (line 87) | private void fillSourceAddress() { method getParameters (line 92) | @Override method getAttributes (line 104) | @Override method getScheme (line 109) | @Override method initUri (line 115) | private void initUri() { method getMethod (line 125) | @Override method getPathInfo (line 130) | @Override method getContextPath (line 136) | @Override method getQueryString (line 141) | @Override method getRequestURI (line 147) | @Override method getServerName (line 152) | @Override method getServerPort (line 157) | @Override method getFrom (line 162) | @SuppressWarnings("unchecked") method getHeaders (line 168) | @Override method getCookies (line 176) | @Override method getContentLength (line 198) | @Override method getCharacterEncoding (line 203) | @Override method getContentType (line 219) | @Override method getStringBody (line 232) | @Override method getByteBufferBody (line 242) | @Override method decodeStringBody (line 253) | private String decodeStringBody() { FILE: comsat-actors-undertow/src/main/java/co/paralleluniverse/comsat/webactors/undertow/WebActorHandler.java class WebActorHandler (line 51) | public class WebActorHandler implements HttpHandler { type ContextProvider (line 59) | public interface ContextProvider { method get (line 60) | Context get(HttpServerExchange xch); type Context (line 63) | public interface Context { method getId (line 64) | String getId(); method getLock (line 65) | ReentrantLock getLock(); method isValid (line 67) | boolean isValid() throws SuspendExecution, InterruptedException; method invalidate (line 68) | void invalidate() throws SuspendExecution, InterruptedException; method renew (line 70) | boolean renew(); method restart (line 71) | void restart(HttpServerExchange xch); method getWebActor (line 73) | ActorRef getWebActor(); method handlesWithHttp (line 74) | boolean handlesWithHttp(String uri); method handlesWithWebSocket (line 75) | boolean handlesWithWebSocket(String uri); type WatchPolicy (line 77) | enum WatchPolicy { DONT_WATCH, DIE, DIE_IF_EXCEPTION_ELSE_RESTART, R... method watch (line 78) | WatchPolicy watch(); method getAttachments (line 80) | Map getAttachments(); class DefaultContextImpl (line 83) | public static abstract class DefaultContextImpl implements Context { method DefaultContextImpl (line 96) | public DefaultContextImpl() { method invalidate (line 100) | @Override method isValid (line 110) | @Override method renew (line 118) | @Override method getAttachments (line 127) | @Override method getLock (line 132) | @Override method setValidityMS (line 137) | public void setValidityMS(long validityMS) { method getValidityMS (line 141) | public final long getValidityMS() { method WebActorHandler (line 151) | public WebActorHandler(ContextProvider contextProvider) { method setFallbackHttpHandler (line 155) | public final void setFallbackHttpHandler(HttpHandler httpHandler) { method handleRequest (line 159) | @Override method handlingComplete (line 285) | private void handlingComplete(HttpServerExchange xch) throws Exception { method addActorToContextAndUnlock (line 292) | static void addActorToContextAndUnlock(Context context, ActorImpl acto... class WebSocketActorAdapter (line 297) | private static final class WebSocketActorAdapter extends FakeActor userActor) { method setChannel (line 312) | final void setChannel(WebSocketChannel channel) { method onMessage (line 317) | final void onMessage(BufferedBinaryMessage message) { method onMessage (line 325) | final void onMessage(BufferedTextMessage message) { method handleLifecycleMessage (line 333) | @Override method throwIn (line 343) | @Override method interrupt (line 348) | @Override method die (line 353) | @Override method toString (line 370) | @Override class WebSocketChannelAdapter (line 376) | private static final class WebSocketChannelAdapter implements SendPort... method send (line 381) | @Override method send (line 386) | @Override method send (line 391) | @Override method trySend (line 396) | @Override method close (line 405) | @Override method close (line 418) | @Override class HttpActorAdapter (line 426) | private static final class HttpActorAdapter extends FakeActor userActor, Context ac... method toString (line 456) | @Override method handleLifecycleMessage (line 462) | @Override method die (line 469) | @Override method throwIn (line 475) | @Override method interrupt (line 481) | @Override method handleRequest (line 487) | @Suspendable method handleReply (line 500) | final void handleReply(final HttpResponse message) throws Interrupte... method handleLifecycle (line 599) | final boolean handleLifecycle(LifecycleMessage l) { method handleDie (line 617) | @Suspendable method possiblyReplyDeadAndUnblock (line 646) | private void possiblyReplyDeadAndUnblock(final Throwable cause) { method notifySSEStarted (line 671) | private void notifySSEStarted(HttpStreamActorAdapter httpStreamActor... method blockSessionRequests (line 676) | @Suspendable method unblockSessionRequests (line 692) | @Suspendable method isRequestInProgress (line 701) | private boolean isRequestInProgress() { method newUndertowCookie (line 705) | private io.undertow.server.handlers.Cookie newUndertowCookie(Cookie ... class HttpChannelAdapter (line 718) | private static final class HttpChannelAdapter implements SendPort actorClass) { method handlesWithWebSocket (line 907) | static boolean handlesWithWebSocket(String uri, Class actorClass) { method match (line 911) | private static String match(String uri, Class actorClass) { method lookupOrInsert (line 921) | private static List> lookupOrInsert(Class acto... method insert (line 931) | private static List> insert(Class actorClass) { method addPattern (line 945) | private static void addPattern(List> ret, String ... method servletMatch (line 955) | private static boolean servletMatch(String pattern, String uri) { method toBuffer (line 969) | private static ByteBuffer toBuffer(ByteBuffer... payload) { FILE: comsat-actors-undertow/src/test/java/co/paralleluniverse/comsat/webactors/undertow/HttpRequestWrapperTest.java class HttpRequestWrapperTest (line 12) | public class HttpRequestWrapperTest { method httpHeaderCaseInsensitivity (line 14) | @Test FILE: comsat-actors-undertow/src/test/java/co/paralleluniverse/comsat/webactors/undertow/UndertowWebActor.java class UndertowWebActor (line 22) | @WebActor(httpUrlPatterns = {"/*"}, webSocketUrlPatterns = {"/ws"}) FILE: comsat-actors-undertow/src/test/java/co/paralleluniverse/comsat/webactors/undertow/WebActorTest.java class WebActorTest (line 44) | @RunWith(Parameterized.class) method call (line 51) | @Override method testDie (line 93) | @Override method call (line 102) | @Override method data (line 108) | @Parameterized.Parameters(name = "{0}") method WebActorTest (line 122) | public WebActorTest(Callable webActorHandlerCreator) { method setUp (line 126) | @Before method tearDown (line 143) | @After method getSessionIdCookieName (line 150) | @Override FILE: comsat-dropwizard/src/main/java/co/paralleluniverse/fibers/dropwizard/FiberApplication.java class FiberApplication (line 25) | public abstract class FiberApplication extends ... method initialize (line 26) | @Override method run (line 30) | @Override method fiberRun (line 41) | public abstract void fiberRun(T configuration, Environment environment... FILE: comsat-dropwizard/src/main/java/co/paralleluniverse/fibers/dropwizard/FiberDBIFactory.java class FiberDBIFactory (line 26) | public class FiberDBIFactory { method FiberDBIFactory (line 30) | public FiberDBIFactory(final ExecutorService es) { method FiberDBIFactory (line 35) | public FiberDBIFactory(final int threadsNum) { method FiberDBIFactory (line 39) | public FiberDBIFactory() { method build (line 43) | public IDBI build(Environment environment, DataSourceFactory dsFactory... method build (line 49) | public IDBI build(Environment environment, DataSourceFactory dsFactory... FILE: comsat-dropwizard/src/main/java/co/paralleluniverse/fibers/dropwizard/FiberDataSourceFactory.java class FiberDataSourceFactory (line 23) | public class FiberDataSourceFactory extends DataSourceFactory { method FiberDataSourceFactory (line 26) | public FiberDataSourceFactory(DataSourceFactory dsf) { method build (line 30) | @Override method isAutoCommentsEnabled (line 38) | @Override method setAutoCommentsEnabled (line 43) | @Override method getDriverClass (line 48) | @Override method setDriverClass (line 53) | @Override method getUser (line 58) | @Override method setUser (line 63) | @Override method getPassword (line 68) | @Override method setPassword (line 73) | @Override method getUrl (line 78) | @Override method setUrl (line 83) | @Override method getProperties (line 88) | @Override method setProperties (line 93) | @Override method getMaxWaitForConnection (line 98) | @Override method setMaxWaitForConnection (line 103) | @Override method getValidationQuery (line 108) | @Override method setValidationQuery (line 113) | @Override method getMinSize (line 118) | @Override method setMinSize (line 123) | @Override method getMaxSize (line 128) | @Override method setMaxSize (line 133) | @Override method getCheckConnectionWhileIdle (line 138) | @Override method setCheckConnectionWhileIdle (line 143) | @Override method isDefaultReadOnly (line 148) | @Override method setDefaultReadOnly (line 153) | @Override method isMinSizeLessThanMaxSize (line 158) | @Override method isInitialSizeLessThanMaxSize (line 163) | @Override method isInitialSizeGreaterThanMinSize (line 168) | @Override method getAbandonWhenPercentageFull (line 173) | @Override method setAbandonWhenPercentageFull (line 178) | @Override method isAlternateUsernamesAllowed (line 183) | @Override method setAlternateUsernamesAllowed (line 188) | @Override method getCommitOnReturn (line 193) | @Override method setCommitOnReturn (line 198) | @Override method getAutoCommitByDefault (line 203) | @Override method setAutoCommitByDefault (line 208) | @Override method getDefaultCatalog (line 213) | @Override method setDefaultCatalog (line 218) | @Override method getReadOnlyByDefault (line 223) | @Override method setReadOnlyByDefault (line 228) | @Override method getDefaultTransactionIsolation (line 233) | @Override method setDefaultTransactionIsolation (line 238) | @Override method getUseFairQueue (line 243) | @Override method setUseFairQueue (line 248) | @Override method getInitialSize (line 253) | @Override method setInitialSize (line 258) | @Override method getInitializationQuery (line 263) | @Override method setInitializationQuery (line 268) | @Override method getLogAbandonedConnections (line 273) | @Override method setLogAbandonedConnections (line 278) | @Override method getLogValidationErrors (line 283) | @Override method setLogValidationErrors (line 288) | @Override method getMaxConnectionAge (line 293) | @Override method setMaxConnectionAge (line 298) | @Override method getMinIdleTime (line 303) | @Override method setMinIdleTime (line 308) | @Override method getCheckConnectionOnBorrow (line 313) | @Override method setCheckConnectionOnBorrow (line 318) | @Override method getCheckConnectionOnConnect (line 323) | @Override method setCheckConnectionOnConnect (line 328) | @Override method getCheckConnectionOnReturn (line 333) | @Override method setCheckConnectionOnReturn (line 338) | @Override method getEvictionInterval (line 343) | @Override method setEvictionInterval (line 348) | @Override method getValidationInterval (line 353) | @Override method setValidationInterval (line 358) | @Override FILE: comsat-dropwizard/src/main/java/co/paralleluniverse/fibers/dropwizard/FiberHttpClientBuilder.java class FiberHttpClientBuilder (line 62) | public class FiberHttpClientBuilder { method FiberHttpClientBuilder (line 70) | public FiberHttpClientBuilder(MetricRegistry metricRegistry) { method FiberHttpClientBuilder (line 74) | public FiberHttpClientBuilder(Environment environment) { method using (line 84) | public FiberHttpClientBuilder using(HttpClientConfiguration configurat... method using (line 95) | public FiberHttpClientBuilder using(DnsResolver resolver) { method using (line 106) | public FiberHttpClientBuilder using(HttpRequestRetryHandler httpReques... method using (line 117) | public FiberHttpClientBuilder using(SchemeRegistry registry) { method build (line 127) | public HttpClient build(String name) { method setStrategiesForClient (line 145) | protected void setStrategiesForClient(HttpAsyncClientBuilder client) { method getRetryHandler (line 165) | private HttpRequestRetryHandler getRetryHandler() { method createHttpParams (line 176) | protected RequestConfig createHttpParams() { method createConnectionManager (line 195) | protected NHttpClientConnectionManager createConnectionManager(SchemeR... method createDefaultIOReactor (line 216) | private static ConnectingIOReactor createDefaultIOReactor(final IOReac... method convertRegistry (line 224) | private static Registry convertRegistry(final... FILE: comsat-dropwizard/src/main/java/co/paralleluniverse/fibers/dropwizard/FiberManagedDataSource.java class FiberManagedDataSource (line 24) | public class FiberManagedDataSource extends FiberDataSource implements M... method wrap (line 27) | public static ManagedDataSource wrap(ManagedDataSource ds, int numThre... method wrap (line 31) | public static ManagedDataSource wrap(ManagedDataSource ds, ExecutorSer... method FiberManagedDataSource (line 35) | protected FiberManagedDataSource(ManagedDataSource ds, ListeningExecut... method start (line 40) | @Override method stop (line 45) | @Override FILE: comsat-dropwizard/src/main/java/co/paralleluniverse/fibers/dropwizard/FiberServletContainer.java class FiberServletContainer (line 39) | public class FiberServletContainer extends FiberHttpServlet implements F... method FiberServletContainer (line 46) | public FiberServletContainer() { method FiberServletContainer (line 55) | public FiberServletContainer(ResourceConfig resourceConfig) { method FiberServletContainer (line 64) | public FiberServletContainer(ServletContainer sc) { method init (line 68) | @Override method getServletContext (line 81) | @Override method service (line 86) | @Override method destroy (line 93) | @Override method init (line 98) | @Override method init (line 103) | @Override method doFilter (line 108) | @Override method doFilter (line 113) | public void doFilter(HttpServletRequest request, HttpServletResponse r... method getInitParameter (line 117) | @Override method getInitParameterNames (line 122) | @Override method getServletInfo (line 127) | @Override method log (line 132) | @Override method log (line 137) | @Override method getServletName (line 142) | @Override method hashCode (line 147) | @Override method equals (line 152) | @Override method toString (line 157) | @Override FILE: comsat-dropwizard/src/main/java/co/paralleluniverse/fibers/dropwizard/InstrumentedNClientConnManager.java class InstrumentedNClientConnManager (line 30) | public class InstrumentedNClientConnManager extends PoolingNHttpClientCo... method InstrumentedNClientConnManager (line 32) | public InstrumentedNClientConnManager(final ConnectingIOReactor ioreac... FILE: comsat-dropwizard/src/main/java/co/paralleluniverse/fibers/dropwizard/InstrumentedNHttpClientBuilder.java class InstrumentedNHttpClientBuilder (line 31) | public class InstrumentedNHttpClientBuilder extends HttpAsyncClientBuild... method InstrumentedNHttpClientBuilder (line 36) | public InstrumentedNHttpClientBuilder(MetricRegistry metricRegistry, H... method InstrumentedNHttpClientBuilder (line 43) | public InstrumentedNHttpClientBuilder(MetricRegistry metricRegistry, S... method timer (line 47) | private Timer timer(HttpRequest request) { method build (line 51) | @Override FILE: comsat-dropwizard/src/test/java/co/paralleluniverse/fibers/dropwizard/FiberDropwizardTest.java class FiberDropwizardTest (line 30) | public class FiberDropwizardTest { method setUpClass (line 34) | @BeforeClass method setUp (line 51) | @Before method tearDown (line 58) | @After method testGet (line 63) | @Test method testHttp (line 69) | @Test method testFluentAPI (line 75) | @Test method testDao (line 81) | @Test method waitUrlAvailable (line 88) | public static void waitUrlAvailable(final String url) throws Interrupt... FILE: comsat-dropwizard/src/test/java/co/paralleluniverse/fibers/dropwizard/MyDropwizardApp.java class MyDropwizardApp (line 48) | @Singleton method fiberRun (line 57) | @Override class MyConfig (line 67) | public static class MyConfig extends Configuration { method getHttpClientConfiguration (line 73) | @JsonProperty method getDB (line 83) | public DataSourceFactory getDB() { class Saying (line 88) | public static class Saying { method Saying (line 94) | public Saying() { method Saying (line 97) | public Saying(long id, String content) { method getId (line 102) | @JsonProperty method getContent (line 107) | @JsonProperty type MyDAO (line 113) | @Suspendable method createSomethingTable (line 115) | @SqlUpdate("create table if not exists something (id int primary key... method dropSomethingTable (line 118) | @SqlUpdate("drop table something") method insert (line 121) | @SqlUpdate("insert into something (id, name) values (:id, :name)") method findNameById (line 124) | @SqlQuery("select name from something where id = :id") method get (line 130) | @GET method http (line 138) | @GET method fluentAPI (line 145) | @GET method dao (line 160) | @GET FILE: comsat-httpclient/src/main/java/co/paralleluniverse/fibers/httpasyncclient/FiberCloseableHttpAsyncClient.java class FiberCloseableHttpAsyncClient (line 29) | public class FiberCloseableHttpAsyncClient extends CloseableHttpAsyncCli... method FiberCloseableHttpAsyncClient (line 32) | private FiberCloseableHttpAsyncClient(CloseableHttpAsyncClient client) { method wrap (line 36) | public static CloseableHttpAsyncClient wrap(CloseableHttpAsyncClient c... method isRunning (line 40) | @Override method start (line 45) | @Override method execute (line 50) | @Override method execute (line 57) | @Override method execute (line 64) | @Override method execute (line 71) | @Override method execute (line 78) | @Override method close (line 85) | @Override method execute (line 90) | @Override method wrapCallbackWithFuture (line 97) | private static FutureCallback wrapCallbackWithFuture(final Sett... FILE: comsat-httpclient/src/main/java/co/paralleluniverse/fibers/httpclient/AsyncHttpReq.java class AsyncHttpReq (line 22) | abstract class AsyncHttpReq extends FiberAsync cls) { method setUp (line 62) | @Before method tearDown (line 69) | @After method testAsync (line 74) | @Test class TestServlet (line 104) | public static class TestServlet extends HttpServlet { method doGet (line 105) | @Override FILE: comsat-httpclient/src/test/java/co/paralleluniverse/fibers/httpclient/FiberHttpClientBuilderTest.java class FiberHttpClientBuilderTest (line 41) | @RunWith(Parameterized.class) method data (line 44) | @Parameterized.Parameters(name = "{0}") method FiberHttpClientBuilderTest (line 52) | public FiberHttpClientBuilderTest(Class cls) { method setUp (line 56) | @Before method tearDown (line 63) | @After method testConcurrency (line 68) | @Test class TestServlet (line 99) | public static class TestServlet extends HttpServlet { method doGet (line 100) | @Override FILE: comsat-jax-rs-client/src/main/java/co/paralleluniverse/fibers/ws/rs/client/AsyncClientBuilder.java class AsyncClientBuilder (line 34) | public class AsyncClientBuilder extends ClientBuilder { method AsyncClientBuilder (line 37) | protected AsyncClientBuilder(ClientBuilder clientBuilder) { method newBuilder (line 47) | public static ClientBuilder newBuilder() { method newClient (line 57) | public static Client newClient() { method newClient (line 68) | public static Client newClient(Configuration configuration) { method addDefaultConfigurations (line 72) | private static ClientConfig addDefaultConfigurations(Configuration con... method build (line 98) | @Override method withConfig (line 103) | @Override method sslContext (line 109) | @Override method keyStore (line 115) | @Override method keyStore (line 121) | @Override method trustStore (line 127) | @Override method hostnameVerifier (line 133) | @Override method property (line 139) | @Override method register (line 145) | @Override method register (line 151) | @Override method register (line 157) | @Override method register (line 163) | @Override method register (line 169) | @Override method register (line 175) | @Override method register (line 181) | @Override method register (line 187) | @Override method getConfiguration (line 193) | @Override method hashCode (line 198) | @Override method equals (line 203) | @Override method toString (line 208) | @Override FILE: comsat-jax-rs-client/src/main/java/co/paralleluniverse/fibers/ws/rs/client/AsyncRs.java class AsyncRs (line 20) | abstract class AsyncRs extends FiberAsync cls) { method setUp (line 56) | @Before method tearDown (line 63) | @After method testConcurrency (line 68) | @Test class TestServlet (line 93) | public static class TestServlet extends HttpServlet { method doGet (line 94) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberArray.java class FiberArray (line 27) | public class FiberArray implements Array { method FiberArray (line 31) | public FiberArray(final Array array, final ExecutorService executor) { method getBaseTypeName (line 36) | @Override method getBaseType (line 47) | @Override method getArray (line 58) | @Override method getArray (line 69) | @Override method getArray (line 80) | @Override method getArray (line 91) | @Override method getResultSet (line 102) | @Override method getResultSet (line 114) | @Override method getResultSet (line 127) | @Override method getResultSet (line 139) | @Override method free (line 151) | @Override method hashCode (line 163) | @Override method equals (line 168) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 174) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberBlob.java class FiberBlob (line 27) | public class FiberBlob implements Blob { method FiberBlob (line 31) | public FiberBlob(final Blob blob, final ExecutorService executor) { method getBytes (line 36) | @Override method getBinaryStream (line 47) | @Override method position (line 58) | @Override method position (line 69) | @Override method setBytes (line 80) | @Override method setBytes (line 91) | @Override method setBinaryStream (line 102) | @Override method getBinaryStream (line 113) | @Override method length (line 124) | @Override method truncate (line 135) | @Override method free (line 147) | @Override method hashCode (line 159) | @Override method equals (line 164) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 170) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberCallableStatement.java class FiberCallableStatement (line 41) | public class FiberCallableStatement extends FiberPreparedStatement imple... method FiberCallableStatement (line 42) | public FiberCallableStatement(final CallableStatement cs, final Execut... method stmt (line 46) | @Override method registerOutParameter (line 52) | @Override method registerOutParameter (line 64) | @Override method wasNull (line 76) | @Override method getString (line 87) | @Override method getBoolean (line 98) | @Override method getByte (line 109) | @Override method getShort (line 120) | @Override method getInt (line 131) | @Override method getLong (line 142) | @Override method getFloat (line 153) | @Override method getDouble (line 164) | @Override method getBigDecimal (line 175) | @Override method getBytes (line 186) | @Override method getDate (line 197) | @Override method getTime (line 208) | @Override method getTimestamp (line 219) | @Override method getObject (line 230) | @Override method getBigDecimal (line 241) | @Override method getObject (line 252) | @Override method getRef (line 263) | @Override method getBlob (line 275) | @Override method getClob (line 287) | @Override method getArray (line 299) | @Override method getDate (line 311) | @Override method getTime (line 322) | @Override method getTimestamp (line 333) | @Override method registerOutParameter (line 344) | @Override method registerOutParameter (line 356) | @Override method registerOutParameter (line 368) | @Override method registerOutParameter (line 380) | @Override method getURL (line 392) | @Override method setURL (line 403) | @Override method setNull (line 415) | @Override method setBoolean (line 427) | @Override method setByte (line 439) | @Override method setShort (line 451) | @Override method setInt (line 463) | @Override method setLong (line 475) | @Override method setFloat (line 487) | @Override method setDouble (line 499) | @Override method setBigDecimal (line 511) | @Override method setString (line 523) | @Override method setBytes (line 535) | @Override method setDate (line 547) | @Override method setTime (line 559) | @Override method setTimestamp (line 571) | @Override method setAsciiStream (line 583) | @Override method setBinaryStream (line 595) | @Override method setObject (line 607) | @Override method setObject (line 619) | @Override method setObject (line 631) | @Override method setCharacterStream (line 643) | @Override method setDate (line 655) | @Override method setTime (line 667) | @Override method setTimestamp (line 679) | @Override method setNull (line 691) | @Override method getString (line 703) | @Override method getBoolean (line 714) | @Override method getByte (line 725) | @Override method getShort (line 736) | @Override method getInt (line 747) | @Override method getLong (line 758) | @Override method getFloat (line 769) | @Override method getDouble (line 780) | @Override method getBytes (line 791) | @Override method getDate (line 802) | @Override method getTime (line 813) | @Override method getTimestamp (line 824) | @Override method getObject (line 835) | @Override method getBigDecimal (line 846) | @Override method getObject (line 857) | @Override method getRef (line 868) | @Override method getBlob (line 880) | @Override method getClob (line 892) | @Override method getArray (line 904) | @Override method getDate (line 916) | @Override method getTime (line 927) | @Override method getTimestamp (line 938) | @Override method getURL (line 949) | @Override method getRowId (line 960) | @Override method getRowId (line 971) | @Override method getNClob (line 982) | @Override method getNClob (line 994) | @Override method getSQLXML (line 1006) | @Override method getSQLXML (line 1018) | @Override method getNString (line 1030) | @Override method getNString (line 1041) | @Override method getNCharacterStream (line 1052) | @Override method getNCharacterStream (line 1063) | @Override method getCharacterStream (line 1074) | @Override method getCharacterStream (line 1085) | @Override method getObject (line 1096) | @Override method getObject (line 1107) | @Override method setRowId (line 1118) | @Override method setNString (line 1130) | @Override method setNCharacterStream (line 1142) | @Override method setNClob (line 1154) | @Override method setClob (line 1166) | @Override method setBlob (line 1178) | @Override method setNClob (line 1190) | @Override method setSQLXML (line 1202) | @Override method setBlob (line 1214) | @Override method setClob (line 1226) | @Override method setAsciiStream (line 1238) | @Override method setBinaryStream (line 1250) | @Override method setAsciiStream (line 1262) | @Override method setBinaryStream (line 1274) | @Override method setCharacterStream (line 1286) | @Override method setNCharacterStream (line 1298) | @Override method setClob (line 1310) | @Override method setBlob (line 1322) | @Override method setNClob (line 1334) | @Override method setURL (line 1346) | @Override method setNull (line 1358) | @Override method setBoolean (line 1370) | @Override method setByte (line 1382) | @Override method setShort (line 1394) | @Override method setInt (line 1406) | @Override method setLong (line 1418) | @Override method setFloat (line 1430) | @Override method setDouble (line 1442) | @Override method setBigDecimal (line 1454) | @Override method setString (line 1466) | @Override method setBytes (line 1478) | @Override method setDate (line 1490) | @Override method setTime (line 1502) | @Override method setTimestamp (line 1514) | @Override method setAsciiStream (line 1526) | @Override method setBinaryStream (line 1538) | @Override method setObject (line 1550) | @Override method setObject (line 1562) | @Override method setObject (line 1574) | @Override method setCharacterStream (line 1586) | @Override method setDate (line 1598) | @Override method setTime (line 1610) | @Override method setTimestamp (line 1622) | @Override method setNull (line 1634) | @Override method setRowId (line 1646) | @Override method setNString (line 1658) | @Override method setNCharacterStream (line 1670) | @Override method setNClob (line 1682) | @Override method setClob (line 1694) | @Override method setBlob (line 1706) | @Override method setNClob (line 1718) | @Override method setSQLXML (line 1730) | @Override method setBlob (line 1742) | @Override method setClob (line 1754) | @Override method setAsciiStream (line 1766) | @Override method setBinaryStream (line 1778) | @Override method setCharacterStream (line 1790) | @Override method setAsciiStream (line 1802) | @Override method setBinaryStream (line 1814) | @Override method setCharacterStream (line 1826) | @Override method setNCharacterStream (line 1838) | @Override method setClob (line 1850) | @Override method setBlob (line 1862) | @Override method setNClob (line 1874) | @Override method hashCode (line 1886) | @Override method equals (line 1891) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 1897) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberClob.java class FiberClob (line 29) | public class FiberClob implements Clob { method FiberClob (line 33) | public FiberClob(final Clob clob, final ExecutorService executor) { method length (line 38) | @Override method getSubString (line 49) | @Override method getCharacterStream (line 60) | @Override method getAsciiStream (line 71) | @Override method position (line 82) | @Override method position (line 93) | @Override method setString (line 104) | @Override method setString (line 115) | @Override method setAsciiStream (line 126) | @Override method setCharacterStream (line 137) | @Override method truncate (line 148) | @Override method free (line 160) | @Override method getCharacterStream (line 172) | @Override method hashCode (line 183) | @Override method equals (line 188) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 194) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberConnection.java class FiberConnection (line 41) | public class FiberConnection implements Connection { method FiberConnection (line 45) | FiberConnection(final Connection conn, final ExecutorService exec) { method createStatement (line 50) | @Override method prepareStatement (line 62) | @Override method prepareStatement (line 74) | @Override method prepareStatement (line 86) | @Override method prepareStatement (line 98) | @Override method prepareStatement (line 110) | @Override method prepareCall (line 122) | @Override method prepareCall (line 134) | @Override method prepareCall (line 146) | @Override method nativeSQL (line 158) | @Override method setAutoCommit (line 169) | @Override method getAutoCommit (line 181) | @Override method commit (line 192) | @Override method rollback (line 204) | @Override method close (line 216) | @Override method isClosed (line 228) | @Override method getMetaData (line 239) | @Override method setReadOnly (line 251) | @Override method isReadOnly (line 263) | @Override method setCatalog (line 274) | @Override method getCatalog (line 286) | @Override method setTransactionIsolation (line 297) | @Override method getTransactionIsolation (line 309) | @Override method getWarnings (line 320) | @Override method clearWarnings (line 331) | @Override method createStatement (line 343) | @Override method prepareStatement (line 355) | @Override method getTypeMap (line 367) | @Override method setTypeMap (line 378) | @Override method setHoldability (line 390) | @Override method getHoldability (line 402) | @Override method setSavepoint (line 413) | @Override method setSavepoint (line 425) | @Override method rollback (line 437) | @Override method releaseSavepoint (line 449) | @Override method createStatement (line 461) | @Override method createClob (line 473) | @Override method createBlob (line 485) | @Override method createNClob (line 497) | @Override method createSQLXML (line 509) | @Override method isValid (line 521) | @Override method setClientInfo (line 532) | @Override method setClientInfo (line 544) | @Override method getClientInfo (line 556) | @Override method getClientInfo (line 567) | @Override method createArrayOf (line 578) | @Override method createStruct (line 590) | @Override method setSchema (line 602) | @Override method getSchema (line 614) | @Override method abort (line 625) | @Override method setNetworkTimeout (line 637) | @Override method getNetworkTimeout (line 649) | @Override method unwrap (line 660) | @Override method isWrapperFor (line 665) | @Override method hashCode (line 670) | @Override method equals (line 675) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 681) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberDataSource.java class FiberDataSource (line 35) | public class FiberDataSource implements DataSource { method wrap (line 45) | public static DataSource wrap(final DataSource ds, final ExecutorServi... method wrap (line 55) | public static DataSource wrap(final DataSource ds, final int numThread... method wrap (line 64) | public static DataSource wrap(final DataSource ds) { method FiberDataSource (line 68) | protected FiberDataSource(final DataSource ds, final ExecutorService e... method getConnection (line 73) | @Override method getConnection (line 84) | @Override method getLogWriter (line 95) | @Override method setLogWriter (line 106) | @Override method setLoginTimeout (line 118) | @Override method getLoginTimeout (line 130) | @Override method getParentLogger (line 141) | @Override method unwrap (line 146) | @Override method isWrapperFor (line 151) | @Override method hashCode (line 156) | @Override method equals (line 161) | @Override method toString (line 167) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberDataSourceFactory.java class FiberDataSourceFactory (line 29) | public class FiberDataSourceFactory implements ObjectFactory { method getObjectInstance (line 30) | @Override method create (line 49) | public static DataSource create(final String rawDS, final int tc) thro... FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberDatabaseMetaData.java class FiberDatabaseMetaData (line 28) | public class FiberDatabaseMetaData implements DatabaseMetaData { method FiberDatabaseMetaData (line 32) | public FiberDatabaseMetaData(final DatabaseMetaData dbMeta, final Exec... method allProceduresAreCallable (line 37) | @Override method allTablesAreSelectable (line 48) | @Override method getURL (line 59) | @Override method getUserName (line 70) | @Override method isReadOnly (line 81) | @Override method nullsAreSortedHigh (line 92) | @Override method nullsAreSortedLow (line 103) | @Override method nullsAreSortedAtStart (line 114) | @Override method nullsAreSortedAtEnd (line 125) | @Override method getDatabaseProductName (line 136) | @Override method getDatabaseProductVersion (line 147) | @Override method getDriverName (line 158) | @Override method getDriverVersion (line 169) | @Override method getDriverMajorVersion (line 180) | @Override method getDriverMinorVersion (line 185) | @Override method usesLocalFiles (line 190) | @Override method usesLocalFilePerTable (line 201) | @Override method supportsMixedCaseIdentifiers (line 212) | @Override method storesUpperCaseIdentifiers (line 223) | @Override method storesLowerCaseIdentifiers (line 234) | @Override method storesMixedCaseIdentifiers (line 245) | @Override method supportsMixedCaseQuotedIdentifiers (line 256) | @Override method storesUpperCaseQuotedIdentifiers (line 267) | @Override method storesLowerCaseQuotedIdentifiers (line 278) | @Override method storesMixedCaseQuotedIdentifiers (line 289) | @Override method getIdentifierQuoteString (line 300) | @Override method getSQLKeywords (line 311) | @Override method getNumericFunctions (line 322) | @Override method getStringFunctions (line 333) | @Override method getSystemFunctions (line 344) | @Override method getTimeDateFunctions (line 355) | @Override method getSearchStringEscape (line 366) | @Override method getExtraNameCharacters (line 377) | @Override method supportsAlterTableWithAddColumn (line 388) | @Override method supportsAlterTableWithDropColumn (line 399) | @Override method supportsColumnAliasing (line 410) | @Override method nullPlusNonNullIsNull (line 421) | @Override method supportsConvert (line 432) | @Override method supportsConvert (line 443) | @Override method supportsTableCorrelationNames (line 454) | @Override method supportsDifferentTableCorrelationNames (line 465) | @Override method supportsExpressionsInOrderBy (line 476) | @Override method supportsOrderByUnrelated (line 487) | @Override method supportsGroupBy (line 498) | @Override method supportsGroupByUnrelated (line 509) | @Override method supportsGroupByBeyondSelect (line 520) | @Override method supportsLikeEscapeClause (line 531) | @Override method supportsMultipleResultSets (line 542) | @Override method supportsMultipleTransactions (line 553) | @Override method supportsNonNullableColumns (line 564) | @Override method supportsMinimumSQLGrammar (line 575) | @Override method supportsCoreSQLGrammar (line 586) | @Override method supportsExtendedSQLGrammar (line 597) | @Override method supportsANSI92EntryLevelSQL (line 608) | @Override method supportsANSI92IntermediateSQL (line 619) | @Override method supportsANSI92FullSQL (line 630) | @Override method supportsIntegrityEnhancementFacility (line 641) | @Override method supportsOuterJoins (line 652) | @Override method supportsFullOuterJoins (line 663) | @Override method supportsLimitedOuterJoins (line 674) | @Override method getSchemaTerm (line 685) | @Override method getProcedureTerm (line 696) | @Override method getCatalogTerm (line 707) | @Override method isCatalogAtStart (line 718) | @Override method getCatalogSeparator (line 729) | @Override method supportsSchemasInDataManipulation (line 740) | @Override method supportsSchemasInProcedureCalls (line 751) | @Override method supportsSchemasInTableDefinitions (line 762) | @Override method supportsSchemasInIndexDefinitions (line 773) | @Override method supportsSchemasInPrivilegeDefinitions (line 784) | @Override method supportsCatalogsInDataManipulation (line 795) | @Override method supportsCatalogsInProcedureCalls (line 806) | @Override method supportsCatalogsInTableDefinitions (line 817) | @Override method supportsCatalogsInIndexDefinitions (line 828) | @Override method supportsCatalogsInPrivilegeDefinitions (line 839) | @Override method supportsPositionedDelete (line 850) | @Override method supportsPositionedUpdate (line 861) | @Override method supportsSelectForUpdate (line 872) | @Override method supportsStoredProcedures (line 883) | @Override method supportsSubqueriesInComparisons (line 894) | @Override method supportsSubqueriesInExists (line 905) | @Override method supportsSubqueriesInIns (line 916) | @Override method supportsSubqueriesInQuantifieds (line 927) | @Override method supportsCorrelatedSubqueries (line 938) | @Override method supportsUnion (line 949) | @Override method supportsUnionAll (line 960) | @Override method supportsOpenCursorsAcrossCommit (line 971) | @Override method supportsOpenCursorsAcrossRollback (line 982) | @Override method supportsOpenStatementsAcrossCommit (line 993) | @Override method supportsOpenStatementsAcrossRollback (line 1004) | @Override method getMaxBinaryLiteralLength (line 1015) | @Override method getMaxCharLiteralLength (line 1026) | @Override method getMaxColumnNameLength (line 1037) | @Override method getMaxColumnsInGroupBy (line 1048) | @Override method getMaxColumnsInIndex (line 1059) | @Override method getMaxColumnsInOrderBy (line 1070) | @Override method getMaxColumnsInSelect (line 1081) | @Override method getMaxColumnsInTable (line 1092) | @Override method getMaxConnections (line 1103) | @Override method getMaxCursorNameLength (line 1114) | @Override method getMaxIndexLength (line 1125) | @Override method getMaxSchemaNameLength (line 1136) | @Override method getMaxProcedureNameLength (line 1147) | @Override method getMaxCatalogNameLength (line 1158) | @Override method getMaxRowSize (line 1169) | @Override method doesMaxRowSizeIncludeBlobs (line 1180) | @Override method getMaxStatementLength (line 1191) | @Override method getMaxStatements (line 1202) | @Override method getMaxTableNameLength (line 1213) | @Override method getMaxTablesInSelect (line 1224) | @Override method getMaxUserNameLength (line 1235) | @Override method getDefaultTransactionIsolation (line 1246) | @Override method supportsTransactions (line 1257) | @Override method supportsTransactionIsolationLevel (line 1268) | @Override method supportsDataDefinitionAndDataManipulationTransactions (line 1279) | @Override method supportsDataManipulationTransactionsOnly (line 1290) | @Override method dataDefinitionCausesTransactionCommit (line 1301) | @Override method dataDefinitionIgnoredInTransactions (line 1312) | @Override method getProcedures (line 1323) | @Override method getProcedureColumns (line 1335) | @Override method getTables (line 1347) | @Override method getSchemas (line 1359) | @Override method getCatalogs (line 1371) | @Override method getTableTypes (line 1383) | @Override method getColumns (line 1395) | @Override method getColumnPrivileges (line 1407) | @Override method getTablePrivileges (line 1419) | @Override method getBestRowIdentifier (line 1431) | @Override method getVersionColumns (line 1443) | @Override method getPrimaryKeys (line 1455) | @Override method getImportedKeys (line 1467) | @Override method getExportedKeys (line 1479) | @Override method getCrossReference (line 1491) | @Override method getTypeInfo (line 1503) | @Override method getIndexInfo (line 1515) | @Override method supportsResultSetType (line 1527) | @Override method supportsResultSetConcurrency (line 1538) | @Override method ownUpdatesAreVisible (line 1549) | @Override method ownDeletesAreVisible (line 1560) | @Override method ownInsertsAreVisible (line 1571) | @Override method othersUpdatesAreVisible (line 1582) | @Override method othersDeletesAreVisible (line 1593) | @Override method othersInsertsAreVisible (line 1604) | @Override method updatesAreDetected (line 1615) | @Override method deletesAreDetected (line 1626) | @Override method insertsAreDetected (line 1637) | @Override method supportsBatchUpdates (line 1648) | @Override method getUDTs (line 1659) | @Override method getConnection (line 1671) | @Override method supportsSavepoints (line 1683) | @Override method supportsNamedParameters (line 1694) | @Override method supportsMultipleOpenResults (line 1705) | @Override method supportsGetGeneratedKeys (line 1716) | @Override method getSuperTypes (line 1727) | @Override method getSuperTables (line 1739) | @Override method getAttributes (line 1751) | @Override method supportsResultSetHoldability (line 1763) | @Override method getResultSetHoldability (line 1774) | @Override method getDatabaseMajorVersion (line 1785) | @Override method getDatabaseMinorVersion (line 1796) | @Override method getJDBCMajorVersion (line 1807) | @Override method getJDBCMinorVersion (line 1818) | @Override method getSQLStateType (line 1829) | @Override method locatorsUpdateCopy (line 1840) | @Override method supportsStatementPooling (line 1851) | @Override method getRowIdLifetime (line 1862) | @Override method getSchemas (line 1873) | @Override method supportsStoredFunctionsUsingCallSyntax (line 1885) | @Override method autoCommitFailureClosesAllResultSets (line 1896) | @Override method getClientInfoProperties (line 1907) | @Override method getFunctions (line 1919) | @Override method getFunctionColumns (line 1931) | @Override method getPseudoColumns (line 1943) | @Override method generatedKeyAlwaysReturned (line 1955) | @Override method unwrap (line 1966) | @Override method isWrapperFor (line 1971) | @Override method hashCode (line 1976) | @Override method equals (line 1981) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 1987) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberDriver.java class FiberDriver (line 34) | public class FiberDriver implements Driver { method connect (line 35) | @Suspendable method acceptsURL (line 53) | @Override method getPropertyInfo (line 58) | @Override method getMajorVersion (line 67) | @Override method getMinorVersion (line 72) | @Override method jdbcCompliant (line 77) | @Override method getParentLogger (line 82) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberNClob.java class FiberNClob (line 30) | public class FiberNClob implements NClob { method FiberNClob (line 34) | public FiberNClob(final NClob nclob, final ExecutorService executor) { method length (line 39) | @Override method getSubString (line 50) | @Override method getCharacterStream (line 61) | @Override method getAsciiStream (line 72) | @Override method position (line 83) | @Override method position (line 94) | @Override method setString (line 105) | @Override method setString (line 116) | @Override method setAsciiStream (line 127) | @Override method setCharacterStream (line 138) | @Override method truncate (line 149) | @Override method free (line 161) | @Override method getCharacterStream (line 173) | @Override method hashCode (line 184) | @Override method equals (line 189) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 195) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberParameterMetadata.java class FiberParameterMetadata (line 25) | public class FiberParameterMetadata implements ParameterMetaData { method FiberParameterMetadata (line 29) | public FiberParameterMetadata(ParameterMetaData pmeta, ExecutorService... method getParameterCount (line 34) | @Override method isNullable (line 45) | @Override method isSigned (line 56) | @Override method getPrecision (line 67) | @Override method getScale (line 78) | @Override method getParameterType (line 89) | @Override method getParameterTypeName (line 100) | @Override method getParameterClassName (line 111) | @Override method getParameterMode (line 122) | @Override method unwrap (line 133) | @Override method isWrapperFor (line 138) | @Override method hashCode (line 143) | @Override method equals (line 148) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 154) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberPreparedStatement.java class FiberPreparedStatement (line 43) | public class FiberPreparedStatement extends FiberStatement implements Pr... method FiberPreparedStatement (line 44) | FiberPreparedStatement(final java.sql.PreparedStatement ps, final Exec... method stmt (line 48) | protected PreparedStatement stmt() { method executeQuery (line 52) | @Override method executeUpdate (line 64) | @Override method execute (line 75) | @Override method setNull (line 86) | @Override method setBoolean (line 98) | @Override method setByte (line 110) | @Override method setShort (line 122) | @Override method setInt (line 134) | @Override method setLong (line 146) | @Override method setFloat (line 158) | @Override method setDouble (line 170) | @Override method setBigDecimal (line 182) | @Override method setString (line 194) | @Override method setBytes (line 206) | @Override method setDate (line 218) | @Override method setTime (line 230) | @Override method setTimestamp (line 242) | @Override method setAsciiStream (line 254) | @Override method setUnicodeStream (line 266) | @Override method setBinaryStream (line 278) | @Override method clearParameters (line 290) | @Override method setObject (line 302) | @Override method setObject (line 314) | @Override method addBatch (line 326) | @Override method setCharacterStream (line 338) | @Override method setRef (line 350) | @Override method setBlob (line 362) | @Override method setClob (line 374) | @Override method setArray (line 386) | @Override method getMetaData (line 398) | @Override method setDate (line 410) | @Override method setTime (line 422) | @Override method setTimestamp (line 434) | @Override method setNull (line 446) | @Override method setURL (line 458) | @Override method getParameterMetaData (line 470) | @Override method setRowId (line 482) | @Override method setNString (line 494) | @Override method setNCharacterStream (line 506) | @Override method setNClob (line 518) | @Override method setClob (line 530) | @Override method setBlob (line 542) | @Override method setNClob (line 554) | @Override method setSQLXML (line 566) | @Override method setObject (line 578) | @Override method setAsciiStream (line 590) | @Override method setBinaryStream (line 602) | @Override method setCharacterStream (line 614) | @Override method setAsciiStream (line 626) | @Override method setBinaryStream (line 638) | @Override method setCharacterStream (line 650) | @Override method setNCharacterStream (line 662) | @Override method setClob (line 674) | @Override method setBlob (line 686) | @Override method setNClob (line 698) | @Override method hashCode (line 710) | @Override method equals (line 715) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 721) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberRef.java class FiberRef (line 26) | public class FiberRef implements Ref { method FiberRef (line 30) | public FiberRef(final Ref ref, final ExecutorService executor) { method getBaseTypeName (line 35) | @Override method getObject (line 46) | @Override method getObject (line 57) | @Override method setObject (line 68) | @Override method hashCode (line 80) | @Override method equals (line 85) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 91) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberResultSet.java class FiberResultSet (line 47) | public class FiberResultSet implements ResultSet { method FiberResultSet (line 51) | public FiberResultSet(final ResultSet result, final ExecutorService ex... method next (line 56) | @Override method close (line 67) | @Override method wasNull (line 79) | @Override method getString (line 90) | @Override method getBoolean (line 101) | @Override method getByte (line 112) | @Override method getShort (line 123) | @Override method getInt (line 134) | @Override method getLong (line 145) | @Override method getFloat (line 156) | @Override method getDouble (line 167) | @Override method getBigDecimal (line 178) | @Override method getBytes (line 190) | @Override method getDate (line 201) | @Override method getTime (line 212) | @Override method getTimestamp (line 223) | @Override method getAsciiStream (line 234) | @Override method getUnicodeStream (line 245) | @Override method getBinaryStream (line 257) | @Override method getString (line 268) | @Override method getBoolean (line 279) | @Override method getByte (line 290) | @Override method getShort (line 301) | @Override method getInt (line 312) | @Override method getLong (line 323) | @Override method getFloat (line 334) | @Override method getDouble (line 345) | @Override method getBigDecimal (line 356) | @Override method getBytes (line 368) | @Override method getDate (line 379) | @Override method getTime (line 390) | @Override method getTimestamp (line 401) | @Override method getAsciiStream (line 412) | @Override method getUnicodeStream (line 423) | @Override method getBinaryStream (line 435) | @Override method getWarnings (line 446) | @Override method clearWarnings (line 457) | @Override method getCursorName (line 469) | @Override method getMetaData (line 480) | @Override method getObject (line 492) | @Override method getObject (line 503) | @Override method findColumn (line 514) | @Override method getCharacterStream (line 525) | @Override method getCharacterStream (line 536) | @Override method getBigDecimal (line 547) | @Override method getBigDecimal (line 558) | @Override method isBeforeFirst (line 569) | @Override method isAfterLast (line 580) | @Override method isFirst (line 591) | @Override method isLast (line 602) | @Override method beforeFirst (line 613) | @Override method afterLast (line 625) | @Override method first (line 637) | @Override method last (line 648) | @Override method getRow (line 659) | @Override method absolute (line 670) | @Override method relative (line 681) | @Override method previous (line 692) | @Override method setFetchDirection (line 703) | @Override method getFetchDirection (line 715) | @Override method setFetchSize (line 726) | @Override method getFetchSize (line 738) | @Override method getType (line 749) | @Override method getConcurrency (line 760) | @Override method rowUpdated (line 771) | @Override method rowInserted (line 782) | @Override method rowDeleted (line 793) | @Override method updateNull (line 804) | @Override method updateBoolean (line 816) | @Override method updateByte (line 828) | @Override method updateShort (line 840) | @Override method updateInt (line 852) | @Override method updateLong (line 864) | @Override method updateFloat (line 876) | @Override method updateDouble (line 888) | @Override method updateBigDecimal (line 900) | @Override method updateString (line 912) | @Override method updateBytes (line 924) | @Override method updateDate (line 936) | @Override method updateTime (line 948) | @Override method updateTimestamp (line 960) | @Override method updateAsciiStream (line 972) | @Override method updateBinaryStream (line 984) | @Override method updateCharacterStream (line 996) | @Override method updateObject (line 1008) | @Override method updateObject (line 1020) | @Override method updateNull (line 1032) | @Override method updateBoolean (line 1044) | @Override method updateByte (line 1056) | @Override method updateShort (line 1068) | @Override method updateInt (line 1080) | @Override method updateLong (line 1092) | @Override method updateFloat (line 1104) | @Override method updateDouble (line 1116) | @Override method updateBigDecimal (line 1128) | @Override method updateString (line 1140) | @Override method updateBytes (line 1152) | @Override method updateDate (line 1164) | @Override method updateTime (line 1176) | @Override method updateTimestamp (line 1188) | @Override method updateAsciiStream (line 1200) | @Override method updateBinaryStream (line 1212) | @Override method updateCharacterStream (line 1224) | @Override method updateObject (line 1236) | @Override method updateObject (line 1248) | @Override method insertRow (line 1260) | @Override method updateRow (line 1272) | @Override method deleteRow (line 1284) | @Override method refreshRow (line 1296) | @Override method cancelRowUpdates (line 1308) | @Override method moveToInsertRow (line 1320) | @Override method moveToCurrentRow (line 1332) | @Override method getStatement (line 1344) | @Override method getObject (line 1356) | @Override method getRef (line 1367) | @Override method getBlob (line 1379) | @Override method getClob (line 1391) | @Override method getArray (line 1403) | @Override method getObject (line 1415) | @Override method getRef (line 1426) | @Override method getBlob (line 1438) | @Override method getClob (line 1450) | @Override method getArray (line 1462) | @Override method getDate (line 1474) | @Override method getDate (line 1485) | @Override method getTime (line 1496) | @Override method getTime (line 1507) | @Override method getTimestamp (line 1518) | @Override method getTimestamp (line 1529) | @Override method getURL (line 1540) | @Override method getURL (line 1551) | @Override method updateRef (line 1562) | @Override method updateRef (line 1574) | @Override method updateBlob (line 1586) | @Override method updateBlob (line 1598) | @Override method updateClob (line 1610) | @Override method updateClob (line 1622) | @Override method updateArray (line 1634) | @Override method updateArray (line 1646) | @Override method getRowId (line 1658) | @Override method getRowId (line 1669) | @Override method updateRowId (line 1680) | @Override method updateRowId (line 1692) | @Override method getHoldability (line 1704) | @Override method isClosed (line 1715) | @Override method updateNString (line 1726) | @Override method updateNString (line 1738) | @Override method updateNClob (line 1750) | @Override method updateNClob (line 1762) | @Override method getNClob (line 1774) | @Override method getNClob (line 1786) | @Override method getSQLXML (line 1798) | @Override method getSQLXML (line 1810) | @Override method updateSQLXML (line 1822) | @Override method updateSQLXML (line 1834) | @Override method getNString (line 1846) | @Override method getNString (line 1857) | @Override method getNCharacterStream (line 1868) | @Override method getNCharacterStream (line 1879) | @Override method updateNCharacterStream (line 1890) | @Override method updateNCharacterStream (line 1902) | @Override method updateAsciiStream (line 1914) | @Override method updateBinaryStream (line 1926) | @Override method updateCharacterStream (line 1938) | @Override method updateAsciiStream (line 1950) | @Override method updateBinaryStream (line 1962) | @Override method updateCharacterStream (line 1974) | @Override method updateBlob (line 1986) | @Override method updateBlob (line 1998) | @Override method updateClob (line 2010) | @Override method updateClob (line 2022) | @Override method updateNClob (line 2034) | @Override method updateNClob (line 2046) | @Override method updateNCharacterStream (line 2058) | @Override method updateNCharacterStream (line 2070) | @Override method updateAsciiStream (line 2082) | @Override method updateBinaryStream (line 2094) | @Override method updateCharacterStream (line 2106) | @Override method updateAsciiStream (line 2118) | @Override method updateBinaryStream (line 2130) | @Override method updateCharacterStream (line 2142) | @Override method updateBlob (line 2154) | @Override method updateBlob (line 2166) | @Override method updateClob (line 2178) | @Override method updateClob (line 2190) | @Override method updateNClob (line 2202) | @Override method updateNClob (line 2214) | @Override method getObject (line 2226) | @Override method getObject (line 2237) | @Override method unwrap (line 2298) | @Override method isWrapperFor (line 2303) | @Override method hashCode (line 2308) | @Override method equals (line 2313) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 2319) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberResultSetMetaData.java class FiberResultSetMetaData (line 25) | public class FiberResultSetMetaData implements ResultSetMetaData { method FiberResultSetMetaData (line 29) | public FiberResultSetMetaData(final ResultSetMetaData resultMeta, fina... method getColumnCount (line 34) | @Override method isAutoIncrement (line 45) | @Override method isCaseSensitive (line 56) | @Override method isSearchable (line 67) | @Override method isCurrency (line 78) | @Override method isNullable (line 89) | @Override method isSigned (line 100) | @Override method getColumnDisplaySize (line 111) | @Override method getColumnLabel (line 122) | @Override method getColumnName (line 133) | @Override method getSchemaName (line 144) | @Override method getPrecision (line 155) | @Override method getScale (line 166) | @Override method getTableName (line 177) | @Override method getCatalogName (line 188) | @Override method getColumnType (line 199) | @Override method getColumnTypeName (line 210) | @Override method isReadOnly (line 221) | @Override method isWritable (line 232) | @Override method isDefinitelyWritable (line 243) | @Override method getColumnClassName (line 254) | @Override method unwrap (line 265) | @Override method isWrapperFor (line 270) | @Override method hashCode (line 275) | @Override method equals (line 280) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 286) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberSQLXML.java class FiberSQLXML (line 31) | public class FiberSQLXML implements SQLXML { method FiberSQLXML (line 35) | public FiberSQLXML(final SQLXML sqlXML, final ExecutorService executor) { method getBinaryStream (line 40) | @Override method free (line 51) | @Override method setBinaryStream (line 63) | @Override method getCharacterStream (line 74) | @Override method setCharacterStream (line 85) | @Override method getString (line 96) | @Override method setString (line 107) | @Override method getSource (line 119) | @Override method setResult (line 130) | @Override method hashCode (line 141) | @Override method equals (line 146) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 152) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberSavepoint.java class FiberSavepoint (line 25) | class FiberSavepoint implements Savepoint { method FiberSavepoint (line 29) | public FiberSavepoint(final Savepoint savepoint, final ExecutorService... method getSavepointId (line 34) | @Override method getSavepointName (line 45) | @Override method hashCode (line 56) | @Override method equals (line 61) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 67) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberStatement.java class FiberStatement (line 28) | public class FiberStatement implements Statement { method FiberStatement (line 32) | public FiberStatement(final Statement stmt, final ExecutorService exec) { method executeQuery (line 37) | @Override method executeUpdate (line 53) | @Override method close (line 64) | @Override method getMaxFieldSize (line 76) | @Override method setMaxFieldSize (line 87) | @Override method getMaxRows (line 99) | @Override method setMaxRows (line 110) | @Override method setEscapeProcessing (line 122) | @Override method getQueryTimeout (line 134) | @Override method setQueryTimeout (line 145) | @Override method cancel (line 157) | @Override method getWarnings (line 169) | @Override method clearWarnings (line 180) | @Override method setCursorName (line 192) | @Override method getResultSet (line 204) | @Override method getUpdateCount (line 216) | @Override method getMoreResults (line 227) | @Override method setFetchDirection (line 238) | @Override method getFetchDirection (line 250) | @Override method setFetchSize (line 261) | @Override method getFetchSize (line 273) | @Override method getResultSetConcurrency (line 284) | @Override method getResultSetType (line 295) | @Override method addBatch (line 306) | @Override method clearBatch (line 318) | @Override method executeBatch (line 330) | @Override method getConnection (line 341) | @Override method getMoreResults (line 353) | @Override method getGeneratedKeys (line 364) | @Override method executeUpdate (line 376) | @Override method executeUpdate (line 387) | @Override method executeUpdate (line 398) | @Override method execute (line 409) | @Suspendable method execute (line 420) | @Override method execute (line 431) | @Override method execute (line 442) | @Override method getResultSetHoldability (line 453) | @Override method isClosed (line 464) | @Override method setPoolable (line 475) | @Override method isPoolable (line 487) | @Override method closeOnCompletion (line 498) | @Override method isCloseOnCompletion (line 510) | @Override method unwrap (line 521) | @Override method isWrapperFor (line 526) | @Override method hashCode (line 531) | @Override method equals (line 536) | @Override method toString (line 542) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/FiberStruct.java class FiberStruct (line 26) | public class FiberStruct implements Struct { method FiberStruct (line 30) | public FiberStruct(final Struct struct, final ExecutorService executor) { method getSQLTypeName (line 35) | @Override method getAttributes (line 46) | @Override method getAttributes (line 57) | @Override method hashCode (line 68) | @Override method equals (line 73) | @SuppressWarnings("EqualsWhichDoesntCheckParameterClass") method toString (line 79) | @Override FILE: comsat-jdbc/src/main/java/co/paralleluniverse/fibers/jdbc/JDBCFiberAsync.java class JDBCFiberAsync (line 25) | public abstract class JDBCFiberAsync extends Fib... method exec (line 26) | @Suspendable FILE: comsat-jdbc/src/test/java/co/paralleluniverse/fibers/jdbc/FiberConnectionTest.java class FiberConnectionTest (line 36) | @RunWith(Parameterized.class) method data (line 39) | @Parameterized.Parameters(name = "{0}") method FiberConnectionTest (line 47) | public FiberConnectionTest(Class cls) { method setUp (line 51) | @Before method tearDown (line 58) | @After method testCreateStatement (line 63) | @Test method testPrepareStatement (line 77) | @Test method testPrepareCall (line 91) | @Test method testCommit (line 105) | @Test method testRollback (line 128) | @Test FILE: comsat-jdbc/src/test/java/co/paralleluniverse/fibers/jdbc/FiberDataSourceTest.java class FiberDataSourceTest (line 32) | @RunWith(Parameterized.class) method data (line 35) | @Parameterized.Parameters(name = "{0}") method FiberDataSourceTest (line 43) | public FiberDataSourceTest(Class cls) { method setUp (line 47) | @Before method testGetConnection (line 52) | @Test method testGetConnectionUsername (line 72) | @Test FILE: comsat-jdbi/src/main/java/co/paralleluniverse/fibers/jdbi/FiberDBI.java class FiberDBI (line 28) | public class FiberDBI implements IDBI { method FiberDBI (line 35) | public FiberDBI(IDBI jdbi) { method FiberDBI (line 45) | public FiberDBI(DataSource dataSource, ExecutorService es) { method FiberDBI (line 55) | public FiberDBI(DataSource dataSource, int threadCount) { method FiberDBI (line 64) | public FiberDBI(DataSource dataSource) { method open (line 68) | @Override method withHandle (line 74) | @Override method useHandle (line 80) | @Override method open (line 86) | @Override method close (line 92) | @Override method onDemand (line 98) | @Override method inTransaction (line 103) | @Override method useTransaction (line 109) | @Override method inTransaction (line 115) | @Override method useTransaction (line 121) | @Override method define (line 127) | @Override FILE: comsat-jdbi/src/main/java/co/paralleluniverse/fibers/jdbi/JdbiClassifier.java class JdbiClassifier (line 26) | public class JdbiClassifier implements SuspendableClassifier { method isSuspendable (line 55) | @Override method isJDBICGLibProxy (line 92) | private boolean isJDBICGLibProxy(String className, String methodName) { FILE: comsat-jdbi/src/test/java/co/paralleluniverse/fibers/jdbi/FiberFluentAPITest.java class FiberFluentAPITest (line 40) | @RunWith(Parameterized.class) type TestDAO (line 43) | @Suspendable method insert (line 45) | @SqlUpdate("insert into test (id, name) values (:id, :name)") method data (line 49) | @Parameterized.Parameters(name = "{0}") method FiberFluentAPITest (line 57) | public FiberFluentAPITest(Class cls) { method setUp (line 61) | @Before method testOpen (line 69) | @Test method testQueryFirst (line 82) | @Test method testQueryList (line 101) | @Test method testAttach (line 118) | @Test method testOnDemand (line 133) | @Test method testTransactionalOnDemand (line 152) | @Test method testWithHandle (line 173) | @Test method testTransactionalWithHandle (line 189) | @Test method dropTest (line 207) | @Suspendable method createTest (line 212) | @Suspendable FILE: comsat-jdbi/src/test/java/co/paralleluniverse/fibers/jdbi/FiberSqlObjectAPITest.java class FiberSqlObjectAPITest (line 34) | @RunWith(Parameterized.class) method data (line 36) | @Parameterized.Parameters(name = "{0}") method FiberSqlObjectAPITest (line 44) | public FiberSqlObjectAPITest(Class cls) { method setUp (line 48) | @Before method testDao (line 56) | @Test type MyDAO (line 73) | @Suspendable method createSomethingTable (line 75) | @SqlUpdate("create table if not exists something (id int primary key... method dropSomethingTable (line 78) | @SqlUpdate("drop table something") method insert (line 81) | @SqlUpdate("insert into something (id, name) values (:id, :name)") method findNameById (line 84) | @SqlQuery("select name from something where id = :id") FILE: comsat-jersey-server/src/main/java/co/paralleluniverse/fibers/jersey/ServletContainer.java class ServletContainer (line 42) | public class ServletContainer extends FiberHttpServlet implements Filter... method ServletContainer (line 49) | public ServletContainer() { method ServletContainer (line 58) | public ServletContainer(ResourceConfig resourceConfig) { method ServletContainer (line 67) | public ServletContainer(org.glassfish.jersey.servlet.ServletContainer ... method init (line 71) | @Override method getServletContext (line 84) | @Override method service (line 89) | @Override method destroy (line 96) | @Override method init (line 101) | @Override method service (line 117) | public Value service(URI baseUri, URI requestUri, HttpServlet... method init (line 121) | @Override method doFilter (line 126) | @Override method doFilter (line 131) | public void doFilter(HttpServletRequest request, HttpServletResponse r... method getConfiguration (line 135) | @Override method reload (line 140) | @Override method reload (line 145) | @Override method getInitParameter (line 150) | @Override method getInitParameterNames (line 155) | @Override method getServletInfo (line 160) | @Override method log (line 165) | @Override method log (line 170) | @Override method getServletName (line 175) | @Override method hashCode (line 180) | @Override method equals (line 185) | @Override method toString (line 190) | @Override method getApplicationHandler (line 195) | @Override FILE: comsat-jersey-server/src/test/java/co/paralleluniverse/fibers/jersey/AddTestFiltersFeature.java class AddTestFiltersFeature (line 17) | @Provider method configure (line 20) | @Override class TestRequestFilter (line 29) | class TestRequestFilter implements ContainerRequestFilter { method filter (line 31) | @Override class TestResponseFilter (line 44) | class TestResponseFilter implements ContainerResponseFilter { method filter (line 46) | @Override FILE: comsat-jersey-server/src/test/java/co/paralleluniverse/fibers/jersey/FiberServletContainerTest.java class FiberServletContainerTest (line 52) | @RunWith(Parameterized.class) method data (line 55) | @Parameterized.Parameters(name = "{0}") method FiberServletContainerTest (line 67) | public FiberServletContainerTest(Class cls) { method setUp (line 80) | @Before method tearDown (line 94) | @After method testGet (line 100) | @Test method testPost (line 106) | @Test method handleEntity (line 113) | @Override method handleResponse (line 119) | @Override method starting (line 132) | @Override method failed (line 140) | @Override method succeeded (line 150) | @Override FILE: comsat-jersey-server/src/test/java/co/paralleluniverse/fibers/jersey/TestResource.java class TestResource (line 29) | @Singleton method get (line 32) | @GET method post (line 48) | @POST FILE: comsat-jetty-loader/src/main/java/co/paralleluniverse/comsat/jetty/QuasarWebAppClassLoader.java class QuasarWebAppClassLoader (line 27) | public class QuasarWebAppClassLoader extends WebAppClassLoader { method QuasarWebAppClassLoader (line 30) | public QuasarWebAppClassLoader(Context context) throws IOException { method QuasarWebAppClassLoader (line 36) | public QuasarWebAppClassLoader(ClassLoader parent, Context context) th... method findClass (line 42) | @Override method getResourceAsStream (line 47) | @Override FILE: comsat-jetty-loader/src/test/java/co/paralleluniverse/embedded/containers/JettyLoaderTest.java class JettyLoaderTest (line 33) | public class JettyLoaderTest { method setUp (line 37) | @Before method tearDown (line 49) | @After method testGetDeployedWar (line 55) | @Test method createDataSource (line 65) | private static JdbcDataSource createDataSource(final String url) { method scanDirForWebApps (line 71) | private static void scanDirForWebApps(final Server server, final Strin... FILE: comsat-jooq/src/main/java/co/paralleluniverse/fibers/jooq/JooqClassifier.java class JooqClassifier (line 25) | public class JooqClassifier implements SuspendableClassifier { method isSuspendable (line 68) | @Override FILE: comsat-jooq/src/test/java/co/paralleluniverse/fibers/jooq/JooqContextTest.java class JooqContextTest (line 39) | @RunWith(Parameterized.class) method data (line 42) | @Parameterized.Parameters(name = "{0}") method JooqContextTest (line 51) | public JooqContextTest(Class cls) { method setUp (line 55) | @Before method tearDown (line 65) | @After method testInsertSelect (line 71) | @Test class Something (line 89) | public static class Something { method map (line 93) | @Override method Something (line 99) | public Something(int id, String name) { FILE: comsat-kafka/src/main/java/co/paralleluniverse/fibers/kafka/FiberKafkaProducer.java class FiberKafkaProducer (line 27) | public class FiberKafkaProducer implements Producer { method FiberKafkaProducer (line 31) | public FiberKafkaProducer(Producer producer) { method send (line 35) | @Override method send (line 40) | @Override method flush (line 47) | @Override method partitionsFor (line 52) | @Override method metrics (line 57) | @Override method close (line 62) | @Override method close (line 67) | @Override class CallbackWrapper (line 72) | private static class CallbackWrapper implements Callback { method CallbackWrapper (line 77) | public CallbackWrapper(SettableFuture future, Callba... method onCompletion (line 82) | @Override FILE: comsat-kafka/src/test/java/co/paralleluniverse/fibers/kafka/FiberKafkaProducerTest.java class FiberKafkaProducerTest (line 36) | public class FiberKafkaProducerTest { method setUp (line 42) | @Before method testSuccessfulSendWithoutCallback (line 49) | @Test method testSuccessfulSendWithCallback (line 83) | @Test method testErrorSendWithoutCallback (line 145) | @Test method testErrorSendWithCallback (line 170) | @Test FILE: comsat-mongodb-allanbank/src/main/java/co/paralleluniverse/fibers/mongodb/FiberMongoCallback.java class FiberMongoCallback (line 26) | public abstract class FiberMongoCallback extends FiberAsync Callback callbackSettingFuture(final SettableFutu... FILE: comsat-mongodb-allanbank/src/main/java/co/paralleluniverse/fibers/mongodb/SettableListenableFuture.java class SettableListenableFuture (line 26) | public class SettableListenableFuture extends SettableFuture imple... method set (line 29) | @Override method setException (line 36) | @Override method addListener (line 43) | @Override FILE: comsat-mongodb-allanbank/src/test/java/co/paralleluniverse/fibers/mongodb/AbstractTestFiberMongo.java class AbstractTestFiberMongo (line 45) | public abstract class AbstractTestFiberMongo { method addListenerCalledFlagSetter (line 57) | protected ListenableFuture addListenerCalledFlagSetter(Listenab... method setUpTestBase (line 62) | protected void setUpTestBase() throws ExecutionException, InterruptedE... method tearDownTestBase (line 82) | protected void tearDownTestBase() throws ExecutionException, Interrupt... method assertListenerCalled (line 98) | protected void assertListenerCalled() throws SuspendExecution, Interru... method setUpClass (line 102) | @BeforeClass method tearDownClass (line 124) | @AfterClass FILE: comsat-mongodb-allanbank/src/test/java/co/paralleluniverse/fibers/mongodb/FiberMongoCollTest.java class FiberMongoCollTest (line 54) | public class FiberMongoCollTest extends AbstractTestFiberMongo { method insertTestSet (line 73) | private int insertTestSet() throws SuspendExecution, MongoDbException,... method deleteTestSet (line 77) | private long deleteTestSet() throws SuspendExecution, MongoDbException... method setUpTest (line 81) | @Before method tearDownTest (line 94) | @After method getAggregateSizeAsString (line 112) | private static String getAggregateSizeAsString(MongoIterator... method testAggregateQuery (line 121) | @Test method testAggregateBuilder (line 132) | @Test method testAggregateQueryFuture (line 143) | @Test method testAggregateBuilderFuture (line 159) | @Test method testCount (line 175) | @Test method testCountBuilder (line 186) | @Test method testCountQuery (line 197) | @Test method testCountQueryDocument (line 208) | @Test method testCountFuture (line 219) | @Test method testCountBuilderFuture (line 235) | @Test method testCountQueryFuture (line 251) | @Test method testCountQueryDocumentFuture (line 267) | @Test method testDeleteQuery (line 286) | @Test method testDeleteQuerySingle (line 297) | @Test method testDeleteQuerySingleDurable (line 308) | @Test method testDeleteQueryDurable (line 319) | @Test method testDeleteQueryFuture (line 330) | @Test method testDeleteQuerySingleFuture (line 346) | @Test method testDeleteQuerySingleDurableFuture (line 362) | @Test method testDeleteQueryDurableFuture (line 378) | @Test method getDistinctSize (line 394) | private static long getDistinctSize(MongoIterator distinct) t... method testDistinctQuery (line 402) | @Test method testDistinctBuilder (line 413) | @Test method testDistinctQueryFuture (line 424) | @Test method testDistinctBuilderFuture (line 440) | @Test method testExplainAggregateQuery (line 459) | @Test method testExplainAggregateBuilder (line 470) | @Test method testExplainFindQueryDocument (line 483) | @Test method testExplainFindQuery (line 494) | @Test method testExplainFindBuilder (line 505) | @Test method testExplainAggregateQueryFuture (line 516) | @Test method testExplainAggregateBuilderFuture (line 532) | @Test method testExplainFindQueryFuture (line 548) | @Test method testExplainFindBuilderFuture (line 564) | @Test method testFindQueryDocument (line 580) | @Test method testFindQuery (line 591) | @Test method testFindBuilder (line 602) | @Test method testFindQueryFuture (line 613) | @Test method testFindQueryDocumentFuture (line 629) | @Test method testFindBuilderFuture (line 645) | @Test method testFindAndModifyQuery (line 668) | @Test method testFindAndModifyBuilder (line 679) | @Test method testFindAndModifyQueryFuture (line 690) | @Test method testFindAndModifyBuilderFuture (line 706) | @Test method testFindOneQueryDocument (line 722) | @Test method testFindOneQuery (line 733) | @Test method testFindOneBuilder (line 744) | @Test method testFindOneQueryDocumentFuture (line 755) | @Test method testFindOneQueryFuture (line 771) | @Test method testFindOneBuilderFuture (line 787) | @Test method getGroupByResultAsString (line 813) | private static String getGroupByResultAsString(Element groupBy) { method testGroupByQuery (line 817) | @Test method testGroupByBuilder (line 828) | @Test method testGroupByQueryFuture (line 839) | @Test method testGroupByBuilderFuture (line 855) | @Test method testInsert (line 871) | @Test method testInsertContinueOnError (line 883) | @Test method testInsertContinueOnErrorDurable (line 895) | @Test method testInsertDurable (line 907) | @Test method testInsertFuture (line 919) | @Test method testInsertContinueOnErrorFuture (line 936) | @Test method testInsertContinueOnErrorDurableFuture (line 953) | @Test method testInsertDurableFuture (line 970) | @Test method getMapReduceSizeAsString (line 987) | private static String getMapReduceSizeAsString(MongoIterator... method testMapReduceQuery (line 1002) | @Test method testMapReduceBuilder (line 1013) | @Test method testMapReduceQueryFuture (line 1024) | @Test method testMapReduceBuilderFuture (line 1040) | @Test method testParallelScanQuery (line 1059) | @Test method testParallelScanBuilder (line 1070) | @Test method testParallelScanQueryFuture (line 1081) | @Test method testParallelScanBuilderFuture (line 1097) | @Test method updatedDocument (line 1114) | private static Document updatedDocument(Document docLoaded) { method testSaveQuery (line 1119) | @Test method testSaveQueryDurable (line 1132) | @Test method testSaveQueryFuture (line 1145) | @Test method testSaveQueryDurableFuture (line 1163) | @Test method testTextSearchQuery (line 1183) | @Test method testTextSearchBuilder (line 1197) | @Test method testTextSearchQueryFuture (line 1211) | @Test method testTextSearchBuilderFuture (line 1230) | @Test method testUpate (line 1251) | @Test method testUpdateMultiUpsert (line 1262) | @Test method testUpdateMultiUpsertDurability (line 1273) | @Test method testUpdateDurability (line 1284) | @Test method testUpdateFuture (line 1295) | @Test method testUpdateMultiUpsertFuture (line 1311) | @Test method testUpdateMultiUpsertDurabilityFuture (line 1327) | @Test method testUpdateDurabilityFuture (line 1343) | @Test method testWriteQuery (line 1361) | @Test method testWriteBuilder (line 1372) | @Test method testWriteQueryFuture (line 1383) | @Test method testWriteBuilderFuture (line 1399) | @Test FILE: comsat-mongodb-allanbank/src/test/java/co/paralleluniverse/fibers/mongodb/FiberMongoDbTest.java class FiberMongoDbTest (line 35) | public class FiberMongoDbTest extends AbstractTestFiberMongo { method setUpTest (line 36) | @Before method tearDownTest (line 41) | @After method testRunCommandDocument (line 46) | @Test method testRunCommandString (line 60) | @Test method testRunCommandOptions (line 71) | @Test method testRunCommandNameIntValueOptions (line 82) | @Test method testRunCommandNameStringValueOptions (line 93) | @Test method testRunCommandDocumentFuture (line 104) | @Test method testRunCommandStringFuture (line 120) | @Test method testRunCommandOptionsFuture (line 136) | @Test method testRunCommandNameIntValueOptionsFuture (line 152) | @Test method testRunCommandNameStringValueOptionsFuture (line 168) | @Test FILE: comsat-okhttp/src/main/java/co/paralleluniverse/fibers/okhttp/FiberCall.java class FiberCall (line 32) | public class FiberCall extends CallProxy { method FiberCall (line 34) | public FiberCall(final OkHttpClient client, final Request originalRequ... method execute (line 38) | @Override class FiberAsyncCallback (line 48) | private class FiberAsyncCallback extends FiberAsync interceptors) th... method applicationInterceptorsRewriteResponseFromServer (line 286) | @Test public void applicationInterceptorsRewriteResponseFromServer() t... method networkInterceptorsRewriteResponseFromServer (line 290) | @Test public void networkInterceptorsRewriteResponseFromServer() throw... method rewriteResponseFromServer (line 294) | private void rewriteResponseFromServer(List interceptors)... method multipleApplicationInterceptors (line 319) | @Test public void multipleApplicationInterceptors() throws Exception { method multipleNetworkInterceptors (line 323) | @Test public void multipleNetworkInterceptors() throws Exception { method multipleInterceptors (line 327) | private void multipleInterceptors(List interceptors) thro... method asyncApplicationInterceptors (line 366) | @Test public void asyncApplicationInterceptors() throws Exception { method asyncNetworkInterceptors (line 370) | @Test public void asyncNetworkInterceptors() throws Exception { method asyncInterceptors (line 374) | private void asyncInterceptors(List interceptors) throws ... method applicationInterceptorsCanMakeMultipleRequestsToServer (line 396) | @Test public void applicationInterceptorsCanMakeMultipleRequestsToServ... method interceptorMakesAnUnrelatedRequest (line 416) | @Test public void interceptorMakesAnUnrelatedRequest() throws Exception { method interceptorMakesAnUnrelatedAsyncRequest (line 442) | @Test public void interceptorMakesAnUnrelatedAsyncRequest() throws Exc... method applicationkInterceptorThrowsRuntimeExceptionSynchronous (line 474) | @Ignore @Test public void applicationkInterceptorThrowsRuntimeExceptio... method networkInterceptorThrowsRuntimeExceptionSynchronous (line 478) | @Ignore @Test public void networkInterceptorThrowsRuntimeExceptionSync... method interceptorThrowsRuntimeExceptionSynchronous (line 488) | private void interceptorThrowsRuntimeExceptionSynchronous( method networkInterceptorModifiedRequestIsReturned (line 508) | @Test public void networkInterceptorModifiedRequestIsReturned() throws... method applicationInterceptorThrowsRuntimeExceptionAsynchronous (line 532) | @Test public void applicationInterceptorThrowsRuntimeExceptionAsynchro... method networkInterceptorThrowsRuntimeExceptionAsynchronous (line 536) | @Test public void networkInterceptorThrowsRuntimeExceptionAsynchronous... method interceptorThrowsRuntimeExceptionAsynchronous (line 546) | private void interceptorThrowsRuntimeExceptionAsynchronous( method applicationInterceptorReturnsNull (line 565) | @Ignore @Test public void applicationInterceptorReturnsNull() throws E... method networkInterceptorReturnsNull (line 591) | @Ignore @Test public void networkInterceptorReturnsNull() throws Excep... method uppercase (line 616) | private RequestBody uppercase(final RequestBody original) { method uppercase (line 635) | private Sink uppercase(final BufferedSink original) { method uppercase (line 643) | static ResponseBody uppercase(ResponseBody original) throws IOException { method uppercase (line 648) | private static Source uppercase(final Source original) { method gzip (line 659) | private Buffer gzip(String data) throws IOException { class ExceptionCatchingExecutor (line 668) | private static class ExceptionCatchingExecutor extends ThreadPoolExecu... method ExceptionCatchingExecutor (line 671) | public ExceptionCatchingExecutor() { method execute (line 675) | @Override public void execute(final Runnable runnable) { method takeException (line 687) | public Exception takeException() throws InterruptedException { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/apache/OkApacheClientTest.java class OkApacheClientTest (line 36) | public class OkApacheClientTest { method setUp (line 40) | @Before public void setUp() throws IOException { method tearDown (line 46) | @After public void tearDown() throws IOException { method success (line 50) | @Suspendable @Test public void success() throws Exception { method redirect (line 59) | @Suspendable @Test public void redirect() throws Exception { method sessionExpired (line 69) | @Suspendable @Test public void sessionExpired() throws Exception { method headers (line 77) | @Suspendable @Test public void headers() throws Exception { method postByteEntity (line 95) | @Suspendable @Test public void postByteEntity() throws Exception { method postInputStreamEntity (line 108) | @Suspendable @Test public void postInputStreamEntity() throws Exception { method postEmptyEntity (line 120) | @Suspendable @Test public void postEmptyEntity() throws Exception { method putEmptyEntity (line 129) | @Suspendable @Test public void putEmptyEntity() throws Exception { method postOverrideContentType (line 139) | @Suspendable @Test public void postOverrideContentType() throws Except... method contentType (line 152) | @Suspendable @Test public void contentType() throws Exception { method contentTypeIsCaseInsensitive (line 182) | @Suspendable @Test public void contentTypeIsCaseInsensitive() throws U... method contentEncoding (line 191) | @Suspendable @Test public void contentEncoding() throws Exception { method jsonGzipResponse (line 210) | @Suspendable @Test public void jsonGzipResponse() throws Exception { method jsonTransparentGzipResponse (line 237) | @Suspendable @Test public void jsonTransparentGzipResponse() throws Ex... method gzip (line 266) | private static Buffer gzip(String body) throws IOException { method gunzip (line 272) | private static String gunzip(HttpEntity body) throws IOException { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/apache/OkApacheTestWrapper.java class OkApacheTestWrapper (line 10) | public final class OkApacheTestWrapper { method OkApacheTestWrapper (line 13) | public OkApacheTestWrapper(OkApacheClient underlying) { method execute (line 17) | public HttpResponse execute(HttpRequestBase request) throws IOExceptio... FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/FiberCallTestWrapper.java class FiberCallTestWrapper (line 13) | public final class FiberCallTestWrapper extends FiberCall { method FiberCallTestWrapper (line 16) | public FiberCallTestWrapper(FiberOkHttpClient client, Call call, Reque... method execute (line 21) | @Override method enqueue (line 30) | @Override method cancel (line 35) | @Override method isCanceled (line 40) | @Override FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/FiberOkHttpClientTestWrapper.java class FiberOkHttpClientTestWrapper (line 7) | final public class FiberOkHttpClientTestWrapper extends FiberOkHttpClient { method newCall (line 8) | @Override FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/DelegatingSSLSocket.java class DelegatingSSLSocket (line 33) | public abstract class DelegatingSSLSocket extends SSLSocket { method DelegatingSSLSocket (line 36) | public DelegatingSSLSocket(SSLSocket delegate) { method shutdownInput (line 40) | @Override public void shutdownInput() throws IOException { method shutdownOutput (line 44) | @Override public void shutdownOutput() throws IOException { method getSupportedCipherSuites (line 48) | @Override public String[] getSupportedCipherSuites() { method getEnabledCipherSuites (line 52) | @Override public String[] getEnabledCipherSuites() { method setEnabledCipherSuites (line 56) | @Override public void setEnabledCipherSuites(String[] suites) { method getSupportedProtocols (line 60) | @Override public String[] getSupportedProtocols() { method getEnabledProtocols (line 64) | @Override public String[] getEnabledProtocols() { method setEnabledProtocols (line 68) | @Override public void setEnabledProtocols(String[] protocols) { method getSession (line 72) | @Override public SSLSession getSession() { method addHandshakeCompletedListener (line 76) | @Override public void addHandshakeCompletedListener(HandshakeCompleted... method removeHandshakeCompletedListener (line 80) | @Override public void removeHandshakeCompletedListener(HandshakeComple... method startHandshake (line 84) | @Override public void startHandshake() throws IOException { method setUseClientMode (line 88) | @Override public void setUseClientMode(boolean mode) { method getUseClientMode (line 92) | @Override public boolean getUseClientMode() { method setNeedClientAuth (line 96) | @Override public void setNeedClientAuth(boolean need) { method setWantClientAuth (line 100) | @Override public void setWantClientAuth(boolean want) { method getNeedClientAuth (line 104) | @Override public boolean getNeedClientAuth() { method getWantClientAuth (line 108) | @Override public boolean getWantClientAuth() { method setEnableSessionCreation (line 112) | @Override public void setEnableSessionCreation(boolean flag) { method getEnableSessionCreation (line 116) | @Override public boolean getEnableSessionCreation() { method getSSLParameters (line 120) | @Override public SSLParameters getSSLParameters() { method setSSLParameters (line 124) | @Override public void setSSLParameters(SSLParameters p) { method close (line 128) | @Override public void close() throws IOException { method getInetAddress (line 132) | @Override public InetAddress getInetAddress() { method getInputStream (line 136) | @Override public InputStream getInputStream() throws IOException { method getKeepAlive (line 140) | @Override public boolean getKeepAlive() throws SocketException { method getLocalAddress (line 144) | @Override public InetAddress getLocalAddress() { method getLocalPort (line 148) | @Override public int getLocalPort() { method getOutputStream (line 152) | @Override public OutputStream getOutputStream() throws IOException { method getPort (line 156) | @Override public int getPort() { method getSoLinger (line 160) | @Override public int getSoLinger() throws SocketException { method getReceiveBufferSize (line 164) | @Override public int getReceiveBufferSize() throws SocketException { method getSendBufferSize (line 168) | @Override public int getSendBufferSize() throws SocketException { method getSoTimeout (line 172) | @Override public int getSoTimeout() throws SocketException { method getTcpNoDelay (line 176) | @Override public boolean getTcpNoDelay() throws SocketException { method setKeepAlive (line 180) | @Override public void setKeepAlive(boolean keepAlive) throws SocketExc... method setSendBufferSize (line 184) | @Override public void setSendBufferSize(int size) throws SocketExcepti... method setReceiveBufferSize (line 188) | @Override public void setReceiveBufferSize(int size) throws SocketExce... method setSoLinger (line 192) | @Override public void setSoLinger(boolean on, int timeout) throws Sock... method setSoTimeout (line 196) | @Override public void setSoTimeout(int timeout) throws SocketException { method setTcpNoDelay (line 200) | @Override public void setTcpNoDelay(boolean on) throws SocketException { method toString (line 204) | @Override public String toString() { method getLocalSocketAddress (line 208) | @Override public SocketAddress getLocalSocketAddress() { method getRemoteSocketAddress (line 212) | @Override public SocketAddress getRemoteSocketAddress() { method isBound (line 216) | @Override public boolean isBound() { method isConnected (line 220) | @Override public boolean isConnected() { method isClosed (line 224) | @Override public boolean isClosed() { method bind (line 228) | @Override public void bind(SocketAddress localAddr) throws IOException { method connect (line 232) | @Override public void connect(SocketAddress remoteAddr) throws IOExcep... method connect (line 236) | @Override public void connect(SocketAddress remoteAddr, int timeout) t... method isInputShutdown (line 240) | @Override public boolean isInputShutdown() { method isOutputShutdown (line 244) | @Override public boolean isOutputShutdown() { method setReuseAddress (line 248) | @Override public void setReuseAddress(boolean reuse) throws SocketExce... method getReuseAddress (line 252) | @Override public boolean getReuseAddress() throws SocketException { method setOOBInline (line 256) | @Override public void setOOBInline(boolean oobinline) throws SocketExc... method getOOBInline (line 260) | @Override public boolean getOOBInline() throws SocketException { method setTrafficClass (line 264) | @Override public void setTrafficClass(int value) throws SocketException { method getTrafficClass (line 268) | @Override public int getTrafficClass() throws SocketException { method sendUrgentData (line 272) | @Override public void sendUrgentData(int value) throws IOException { method getChannel (line 276) | @Override public SocketChannel getChannel() { method setPerformancePreferences (line 280) | @Override public void setPerformancePreferences(int connectionTime, in... FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/DelegatingSSLSocketFactory.java class DelegatingSSLSocketFactory (line 29) | public class DelegatingSSLSocketFactory extends SSLSocketFactory { method DelegatingSSLSocketFactory (line 33) | public DelegatingSSLSocketFactory(SSLSocketFactory delegate) { method createSocket (line 37) | @Override method createSocket (line 43) | @Override method createSocket (line 49) | @Override method createSocket (line 56) | @Override method createSocket (line 62) | @Override method getDefaultCipherSuites (line 69) | @Override method getSupportedCipherSuites (line 74) | @Override method createSocket (line 79) | @Override method configureSocket (line 86) | protected SSLSocket configureSocket(SSLSocket sslSocket) throws IOExce... FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/DelegatingServerSocketFactory.java class DelegatingServerSocketFactory (line 27) | public class DelegatingServerSocketFactory extends ServerSocketFactory { method DelegatingServerSocketFactory (line 31) | public DelegatingServerSocketFactory(ServerSocketFactory delegate) { method createServerSocket (line 35) | @Override method createServerSocket (line 41) | @Override method createServerSocket (line 47) | @Override method createServerSocket (line 53) | @Override method configureServerSocket (line 60) | protected ServerSocket configureServerSocket(ServerSocket serverSocket... FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/DelegatingSocketFactory.java class DelegatingSocketFactory (line 28) | public class DelegatingSocketFactory extends SocketFactory { method DelegatingSocketFactory (line 32) | public DelegatingSocketFactory(SocketFactory delegate) { method createSocket (line 36) | @Override method createSocket (line 42) | @Override method createSocket (line 48) | @Override method createSocket (line 55) | @Override method createSocket (line 61) | @Override method configureSocket (line 68) | protected Socket configureSocket(Socket socket) throws IOException { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/DoubleInetAddressDns.java class DoubleInetAddressDns (line 28) | public class DoubleInetAddressDns implements Dns { method lookup (line 29) | @Override public List lookup(String hostname) throws Unkn... FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/FallbackTestClientSocketFactory.java class FallbackTestClientSocketFactory (line 35) | public class FallbackTestClientSocketFactory extends DelegatingSSLSocket... method FallbackTestClientSocketFactory (line 42) | public FallbackTestClientSocketFactory(SSLSocketFactory delegate) { method configureSocket (line 46) | @Override protected SSLSocket configureSocket(SSLSocket sslSocket) thr... class TlsFallbackScsvDisabledSSLSocket (line 50) | private static class TlsFallbackScsvDisabledSSLSocket extends Delegati... method TlsFallbackScsvDisabledSSLSocket (line 52) | public TlsFallbackScsvDisabledSSLSocket(SSLSocket socket) { method setEnabledCipherSuites (line 56) | @Override public void setEnabledCipherSuites(String[] suites) { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/RecordedResponse.java class RecordedResponse (line 35) | public final class RecordedResponse { method RecordedResponse (line 42) | public RecordedResponse(Request request, Response response, WebSocket ... method assertRequestUrl (line 51) | public RecordedResponse assertRequestUrl(URL url) { method assertRequestMethod (line 56) | public RecordedResponse assertRequestMethod(String method) { method assertRequestHeader (line 61) | public RecordedResponse assertRequestHeader(String name, String... val... method assertCode (line 66) | public RecordedResponse assertCode(int expectedCode) { method assertSuccessful (line 71) | public RecordedResponse assertSuccessful() { method assertNotSuccessful (line 76) | public RecordedResponse assertNotSuccessful() { method assertHeader (line 81) | public RecordedResponse assertHeader(String name, String... values) { method assertBody (line 86) | public RecordedResponse assertBody(String expectedBody) { method assertHandshake (line 91) | public RecordedResponse assertHandshake() { method priorResponse (line 105) | public RecordedResponse priorResponse() { method networkResponse (line 116) | public RecordedResponse networkResponse() { method assertNoNetworkResponse (line 124) | public RecordedResponse assertNoNetworkResponse() { method assertNoCacheResponse (line 130) | public RecordedResponse assertNoCacheResponse() { method cacheResponse (line 139) | public RecordedResponse cacheResponse() { method assertFailure (line 146) | public void assertFailure(String... messages) { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/RecordingAuthenticator.java class RecordingAuthenticator (line 23) | public final class RecordingAuthenticator extends Authenticator { method RecordingAuthenticator (line 30) | public RecordingAuthenticator(PasswordAuthentication authentication) { method RecordingAuthenticator (line 34) | public RecordingAuthenticator() { method getPasswordAuthentication (line 38) | @Override protected PasswordAuthentication getPasswordAuthentication() { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/RecordingCallback.java class RecordingCallback (line 32) | public class RecordingCallback implements Callback { method onFailure (line 37) | @Override public synchronized void onFailure(Request request, IOExcept... method onResponse (line 42) | @Override public synchronized void onResponse(Response response) throw... method await (line 52) | public synchronized RecordedResponse await(HttpUrl url) throws Excepti... method assertNoResponse (line 71) | public synchronized void assertNoResponse(HttpUrl url) throws Exception { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/RecordingOkAuthenticator.java class RecordingOkAuthenticator (line 25) | public final class RecordingOkAuthenticator implements Authenticator { method RecordingOkAuthenticator (line 30) | public RecordingOkAuthenticator(String credential) { method onlyResponse (line 34) | public Response onlyResponse() { method onlyProxy (line 39) | public Proxy onlyProxy() { method authenticate (line 44) | @Override public Request authenticate(Proxy proxy, Response response) { method authenticateProxy (line 52) | @Override public Request authenticateProxy(Proxy proxy, Response respo... FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/SingleInetAddressDns.java class SingleInetAddressDns (line 29) | public class SingleInetAddressDns implements Dns { method lookup (line 30) | @Override public List lookup(String hostname) throws Unkn... FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/SocksProxy.java class SocksProxy (line 43) | public final class SocksProxy { method play (line 60) | public void play() throws IOException { method proxy (line 79) | public Proxy proxy() { method connectionCount (line 84) | public int connectionCount() { method shutdown (line 88) | public void shutdown() throws Exception { method service (line 96) | private void service(final Socket from) { method hello (line 112) | private void hello(BufferedSource fromSource, BufferedSink fromSink) t... method acceptCommand (line 140) | private void acceptCommand(InetAddress fromAddress, BufferedSource fro... method transfer (line 199) | private void transfer(final InetAddress fromAddress, final InetAddress... FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/SocksProxyTest.java class SocksProxyTest (line 36) | public final class SocksProxyTest { method setUp (line 40) | @Before public void setUp() throws Exception { method tearDown (line 45) | @After public void tearDown() throws Exception { method proxy (line 50) | @Test public void proxy() throws Exception { method proxySelector (line 69) | @Test public void proxySelector() throws Exception { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/TestLogHandler.java class TestLogHandler (line 27) | public final class TestLogHandler extends Handler { method publish (line 30) | @Override public synchronized void publish(LogRecord logRecord) { method flush (line 35) | @Override public void flush() { method close (line 38) | @Override public void close() throws SecurityException { method take (line 41) | public synchronized String take() throws InterruptedException { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/http/FakeDns.java class FakeDns (line 28) | public final class FakeDns implements Dns { method addresses (line 33) | public FakeDns addresses(List addresses) { method unknownHost (line 39) | public FakeDns unknownHost() { method address (line 44) | public InetAddress address(int index) { method lookup (line 48) | @Override public List lookup(String hostname) throws Unkn... method assertRequests (line 54) | public void assertRequests(String... expectedHosts) { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/io/InMemoryFileSystem.java class InMemoryFileSystem (line 39) | public final class InMemoryFileSystem implements FileSystem, TestRule { method apply (line 44) | @Override public Statement apply(final Statement base, Description des... method ensureResourcesClosed (line 53) | public void ensureResourcesClosed() { method source (line 70) | @Override public Source source(File file) throws FileNotFoundException { method sink (line 85) | @Override public Sink sink(File file) throws FileNotFoundException { method appendingSink (line 89) | @Override public Sink appendingSink(File file) throws FileNotFoundExce... method sink (line 93) | private Sink sink(File file, boolean appending) { method delete (line 114) | @Override public void delete(File file) throws IOException { method exists (line 118) | @Override public boolean exists(File file) throws IOException { method size (line 122) | @Override public long size(File file) { method rename (line 127) | @Override public void rename(File from, File to) throws IOException { method deleteContents (line 133) | @Override public void deleteContents(File directory) throws IOException { FILE: comsat-okhttp/src/test/java/co/paralleluniverse/fibers/okhttp/test/utils/original/testing/RecordingHostnameVerifier.java class RecordingHostnameVerifier (line 23) | public final class RecordingHostnameVerifier implements HostnameVerifier { method verify (line 26) | public boolean verify(String hostname, SSLSession session) { FILE: comsat-okhttp/src/test/java/com/squareup/okhttp/CacheTest.java class CacheTest (line 70) | public final class CacheTest { method verify (line 72) | @Override public boolean verify(String s, SSLSession sslSession) { method setUp (line 86) | @Before public void setUp() throws Exception { method tearDown (line 93) | @After public void tearDown() throws Exception { method responseCachingByResponseCode (line 103) | @Test public void responseCachingByResponseCode() throws Exception { method assertCached (line 157) | private void assertCached(boolean shouldPut, int responseCode) throws ... method responseCachingAndInputStreamSkipWithFixedLength (line 195) | @Test public void responseCachingAndInputStreamSkipWithFixedLength() t... method responseCachingAndInputStreamSkipWithChunkedEncoding (line 199) | @Test public void responseCachingAndInputStreamSkipWithChunkedEncoding... method responseCachingAndInputStreamSkipWithNoLengthHeaders (line 203) | @Test public void responseCachingAndInputStreamSkipWithNoLengthHeaders... method testResponseCaching (line 211) | private void testResponseCaching(TransferKind transferKind) throws IOE... method secureResponseCaching (line 247) | @Test public void secureResponseCaching() throws IOException { method responseCachingAndRedirects (line 283) | @Test public void responseCachingAndRedirects() throws Exception { method redirectToCachedResult (line 308) | @Test public void redirectToCachedResult() throws Exception { method secureResponseCachingAndRedirects (line 341) | @Test public void secureResponseCachingAndRedirects() throws IOExcepti... method secureResponseCachingAndProtocolRedirects (line 380) | @Test public void secureResponseCachingAndProtocolRedirects() throws I... method foundCachedWithExpiresHeader (line 409) | @Test public void foundCachedWithExpiresHeader() throws Exception { method foundCachedWithCacheControlHeader (line 413) | @Test public void foundCachedWithCacheControlHeader() throws Exception { method temporaryRedirectCachedWithExpiresHeader (line 417) | @Test public void temporaryRedirectCachedWithExpiresHeader() throws Ex... method temporaryRedirectCachedWithCacheControlHeader (line 421) | @Test public void temporaryRedirectCachedWithCacheControlHeader() thro... method foundNotCachedWithoutCacheHeader (line 425) | @Test public void foundNotCachedWithoutCacheHeader() throws Exception { method temporaryRedirectNotCachedWithoutCacheHeader (line 429) | @Test public void temporaryRedirectNotCachedWithoutCacheHeader() throw... method temporaryRedirectCachedWithCachingHeader (line 433) | private void temporaryRedirectCachedWithCachingHeader( method temporaryRedirectNotCachedWithoutCachingHeader (line 452) | private void temporaryRedirectNotCachedWithoutCachingHeader(int respon... method serverDisconnectsPrematurelyWithContentLengthHeader (line 466) | @Test public void serverDisconnectsPrematurelyWithContentLengthHeader(... method serverDisconnectsPrematurelyWithChunkedEncoding (line 470) | @Test public void serverDisconnectsPrematurelyWithChunkedEncoding() th... method serverDisconnectsPrematurelyWithNoLengthHeaders (line 474) | @Test public void serverDisconnectsPrematurelyWithNoLengthHeaders() th... method testServerPrematureDisconnect (line 480) | private void testServerPrematureDisconnect(TransferKind transferKind) ... method clientPrematureDisconnectWithContentLengthHeader (line 505) | @Test public void clientPrematureDisconnectWithContentLengthHeader() t... method clientPrematureDisconnectWithChunkedEncoding (line 509) | @Test public void clientPrematureDisconnectWithChunkedEncoding() throw... method clientPrematureDisconnectWithNoLengthHeaders (line 513) | @Test public void clientPrematureDisconnectWithNoLengthHeaders() throw... method testClientPrematureDisconnect (line 517) | private void testClientPrematureDisconnect(TransferKind transferKind) ... method defaultExpirationDateFullyCachedForLessThan24Hours (line 544) | @Test public void defaultExpirationDateFullyCachedForLessThan24Hours()... method defaultExpirationDateConditionallyCached (line 563) | @Test public void defaultExpirationDateConditionallyCached() throws Ex... method defaultExpirationDateFullyCachedForMoreThan24Hours (line 575) | @Test public void defaultExpirationDateFullyCachedForMoreThan24Hours()... method noDefaultExpirationForUrlsWithQueryString (line 591) | @Test public void noDefaultExpirationForUrlsWithQueryString() throws E... method expirationDateInThePastWithLastModifiedHeader (line 604) | @Test public void expirationDateInThePastWithLastModifiedHeader() thro... method expirationDateInThePastWithNoLastModifiedHeader (line 612) | @Test public void expirationDateInThePastWithNoLastModifiedHeader() th... method expirationDateInTheFuture (line 617) | @Test public void expirationDateInTheFuture() throws Exception { method maxAgePreferredWithMaxAgeAndExpires (line 622) | @Test public void maxAgePreferredWithMaxAgeAndExpires() throws Excepti... method maxAgeInThePastWithDateAndLastModifiedHeaders (line 629) | @Test public void maxAgeInThePastWithDateAndLastModifiedHeaders() thro... method maxAgeInThePastWithDateHeaderButNoLastModifiedHeader (line 638) | @Test public void maxAgeInThePastWithDateHeaderButNoLastModifiedHeader... method maxAgeInTheFutureWithDateHeader (line 646) | @Test public void maxAgeInTheFutureWithDateHeader() throws Exception { method maxAgeInTheFutureWithNoDateHeader (line 652) | @Test public void maxAgeInTheFutureWithNoDateHeader() throws Exception { method maxAgeWithLastModifiedButNoServedDate (line 657) | @Test public void maxAgeWithLastModifiedButNoServedDate() throws Excep... method maxAgeInTheFutureWithDateAndLastModifiedHeaders (line 663) | @Test public void maxAgeInTheFutureWithDateAndLastModifiedHeaders() th... method maxAgePreferredOverLowerSharedMaxAge (line 670) | @Test public void maxAgePreferredOverLowerSharedMaxAge() throws Except... method maxAgePreferredOverHigherMaxAge (line 677) | @Test public void maxAgePreferredOverHigherMaxAge() throws Exception { method requestMethodOptionsIsNotCached (line 684) | @Test public void requestMethodOptionsIsNotCached() throws Exception { method requestMethodGetIsCached (line 688) | @Test public void requestMethodGetIsCached() throws Exception { method requestMethodHeadIsNotCached (line 692) | @Test public void requestMethodHeadIsNotCached() throws Exception { method requestMethodPostIsNotCached (line 697) | @Test public void requestMethodPostIsNotCached() throws Exception { method requestMethodPutIsNotCached (line 702) | @Test public void requestMethodPutIsNotCached() throws Exception { method requestMethodDeleteIsNotCached (line 706) | @Test public void requestMethodDeleteIsNotCached() throws Exception { method requestMethodTraceIsNotCached (line 710) | @Test public void requestMethodTraceIsNotCached() throws Exception { method testRequestMethod (line 714) | private void testRequestMethod(String requestMethod, boolean expectCac... method requestBodyOrNull (line 742) | private RequestBody requestBodyOrNull(String requestMethod) { method postInvalidatesCache (line 748) | @Test public void postInvalidatesCache() throws Exception { method putInvalidatesCache (line 752) | @Test public void putInvalidatesCache() throws Exception { method deleteMethodInvalidatesCache (line 756) | @Test public void deleteMethodInvalidatesCache() throws Exception { method testMethodInvalidates (line 760) | private void testMethodInvalidates(String requestMethod) throws Except... method postInvalidatesCacheWithUncacheableResponse (line 786) | @Test public void postInvalidatesCacheWithUncacheableResponse() throws... method etag (line 813) | @Test public void etag() throws Exception { method etagAndExpirationDateInThePast (line 820) | @Test public void etagAndExpirationDateInThePast() throws Exception { method etagAndExpirationDateInTheFuture (line 830) | @Test public void etagAndExpirationDateInTheFuture() throws Exception { method cacheControlNoCache (line 837) | @Test public void cacheControlNoCache() throws Exception { method cacheControlNoCacheAndExpirationDateInTheFuture (line 842) | @Test public void cacheControlNoCacheAndExpirationDateInTheFuture() th... method pragmaNoCache (line 851) | @Test public void pragmaNoCache() throws Exception { method pragmaNoCacheAndExpirationDateInTheFuture (line 856) | @Test public void pragmaNoCacheAndExpirationDateInTheFuture() throws E... method cacheControlNoStore (line 865) | @Test public void cacheControlNoStore() throws Exception { method cacheControlNoStoreAndExpirationDateInTheFuture (line 870) | @Test public void cacheControlNoStoreAndExpirationDateInTheFuture() th... method partialRangeResponsesDoNotCorruptCache (line 877) | @Test public void partialRangeResponsesDoNotCorruptCache() throws Exce... method serverReturnsDocumentOlderThanCache (line 900) | @Test public void serverReturnsDocumentOlderThanCache() throws Excepti... method clientSideNoStore (line 915) | @Test public void clientSideNoStore() throws Exception { method nonIdentityEncodingAndConditionalCache (line 937) | @Test public void nonIdentityEncodingAndConditionalCache() throws Exce... method nonIdentityEncodingAndFullCache (line 943) | @Test public void nonIdentityEncodingAndFullCache() throws Exception { method assertNonIdentityEncodingCached (line 949) | private void assertNonIdentityEncodingCached(MockResponse response) th... method notModifiedSpecifiesEncoding (line 966) | @Test public void notModifiedSpecifiesEncoding() throws Exception { method gzipAndVaryOnAcceptEncoding (line 984) | @Test public void gzipAndVaryOnAcceptEncoding() throws Exception { method conditionalCacheHitIsNotDoublePooled (line 997) | @Test public void conditionalCacheHitIsNotDoublePooled() throws Except... method expiresDateBeforeModifiedDate (line 1014) | @Test public void expiresDateBeforeModifiedDate() throws Exception { method requestMaxAge (line 1020) | @Test public void requestMaxAge() throws IOException { method requestMinFresh (line 1039) | @Test public void requestMinFresh() throws IOException { method requestMaxStale (line 1057) | @Test public void requestMaxStale() throws IOException { method requestMaxStaleDirectiveWithNoValue (line 1076) | @Test public void requestMaxStaleDirectiveWithNoValue() throws IOExcep... method requestMaxStaleNotHonoredWithMustRevalidate (line 1097) | @Test public void requestMaxStaleNotHonoredWithMustRevalidate() throws... method requestOnlyIfCachedWithNoResponseCached (line 1115) | @Test public void requestOnlyIfCachedWithNoResponseCached() throws IOE... method requestOnlyIfCachedWithFullResponseCached (line 1130) | @Test public void requestOnlyIfCachedWithFullResponseCached() throws I... method requestOnlyIfCachedWithConditionalResponseCached (line 1148) | @Test public void requestOnlyIfCachedWithConditionalResponseCached() t... method requestOnlyIfCachedWithUnhelpfulResponseCached (line 1167) | @Test public void requestOnlyIfCachedWithUnhelpfulResponseCached() thr... method requestCacheControlNoCache (line 1184) | @Test public void requestCacheControlNoCache() throws Exception { method requestPragmaNoCache (line 1203) | @Test public void requestPragmaNoCache() throws Exception { method clientSuppliedIfModifiedSinceWithCachedResult (line 1222) | @Test public void clientSuppliedIfModifiedSinceWithCachedResult() thro... method clientSuppliedIfNoneMatchSinceWithCachedResult (line 1233) | @Test public void clientSuppliedIfNoneMatchSinceWithCachedResult() thr... method assertClientSuppliedCondition (line 1244) | private RecordedRequest assertClientSuppliedCondition(MockResponse see... method retainServedDateFormat (line 1269) | @Test public void retainServedDateFormat() throws Exception { method clientSuppliedConditionWithoutCachedResult (line 1298) | @Test public void clientSuppliedConditionWithoutCachedResult() throws ... method authorizationRequestFullyCached (line 1311) | @Test public void authorizationRequestFullyCached() throws Exception { method contentLocationDoesNotPopulateCache (line 1328) | @Test public void contentLocationDoesNotPopulateCache() throws Excepti... method connectionIsReturnedToPoolAfterConditionalSuccess (line 1340) | @Test public void connectionIsReturnedToPoolAfterConditionalSuccess() ... method statisticsConditionalCacheMiss (line 1359) | @Test public void statisticsConditionalCacheMiss() throws Exception { method statisticsConditionalCacheHit (line 1380) | @Test public void statisticsConditionalCacheHit() throws Exception { method statisticsFullCacheHit (line 1401) | @Test public void statisticsFullCacheHit() throws Exception { method varyMatchesChangedRequestHeaderField (line 1417) | @Test public void varyMatchesChangedRequestHeaderField() throws Except... method varyMatchesUnchangedRequestHeaderField (line 1441) | @Test public void varyMatchesUnchangedRequestHeaderField() throws Exce... method varyMatchesAbsentRequestHeaderField (line 1464) | @Test public void varyMatchesAbsentRequestHeaderField() throws Excepti... method varyMatchesAddedRequestHeaderField (line 1476) | @Test public void varyMatchesAddedRequestHeaderField() throws Exception { method varyMatchesRemovedRequestHeaderField (line 1492) | @Test public void varyMatchesRemovedRequestHeaderField() throws Except... method varyFieldsAreCaseInsensitive (line 1508) | @Test public void varyFieldsAreCaseInsensitive() throws Exception { method varyMultipleFieldsWithMatch (line 1531) | @Test public void varyMultipleFieldsWithMatch() throws Exception { method varyMultipleFieldsWithNoMatch (line 1559) | @Test public void varyMultipleFieldsWithNoMatch() throws Exception { method varyMultipleFieldValuesWithMatch (line 1587) | @Test public void varyMultipleFieldValuesWithMatch() throws Exception { method varyMultipleFieldValuesWithNoMatch (line 1613) | @Test public void varyMultipleFieldValuesWithNoMatch() throws Exception { method varyAsterisk (line 1639) | @Test public void varyAsterisk() throws Exception { method varyAndHttps (line 1651) | @Test public void varyAndHttps() throws Exception { method cachePlusCookies (line 1679) | @Test public void cachePlusCookies() throws Exception { method getHeadersReturnsNetworkEndToEndHeaders (line 1696) | @Test public void getHeadersReturnsNetworkEndToEndHeaders() throws Exc... method getHeadersReturnsCachedHopByHopHeaders (line 1715) | @Test public void getHeadersReturnsCachedHopByHopHeaders() throws Exce... method getHeadersDeletesCached100LevelWarnings (line 1734) | @Test public void getHeadersDeletesCached100LevelWarnings() throws Exc... method getHeadersRetainsCached200LevelWarnings (line 1752) | @Test public void getHeadersRetainsCached200LevelWarnings() throws Exc... method assertCookies (line 1770) | public void assertCookies(HttpUrl url, String... expectedCookies) thro... method doNotCachePartialResponse (line 1778) | @Test public void doNotCachePartialResponse() throws Exception { method conditionalHitUpdatesCache (line 1786) | @Test public void conditionalHitUpdatesCache() throws Exception { method responseSourceHeaderCached (line 1817) | @Test public void responseSourceHeaderCached() throws IOException { method responseSourceHeaderConditionalCacheFetched (line 1831) | @Test public void responseSourceHeaderConditionalCacheFetched() throws... method responseSourceHeaderConditionalCacheNotFetched (line 1846) | @Test public void responseSourceHeaderConditionalCacheNotFetched() thr... method responseSourceHeaderFetched (line 1859) | @Test public void responseSourceHeaderFetched() throws IOException { method emptyResponseHeaderNameFromCacheIsLenient (line 1867) | @Test public void emptyResponseHeaderNameFromCacheIsLenient() throws E... method testGoldenCacheResponse (line 1888) | @Test public void testGoldenCacheResponse() throws Exception { method evictAll (line 1940) | @Test public void evictAll() throws Exception { method networkInterceptorInvokedForConditionalGet (line 1954) | @Test public void networkInterceptorInvokedForConditionalGet() throws ... method networkInterceptorNotInvokedForFullyCached (line 1978) | @Test public void networkInterceptorNotInvokedForFullyCached() throws ... method iterateCache (line 1996) | @Test public void iterateCache() throws Exception { method iteratorRemoveFromCache (line 2031) | @Test public void iteratorRemoveFromCache() throws Exception { method iteratorRemoveWithoutNextThrows (line 2050) | @Test public void iteratorRemoveWithoutNextThrows() throws Exception { method iteratorRemoveOncePerCallToNext (line 2066) | @Test public void iteratorRemoveOncePerCallToNext() throws Exception { method elementEvictedBetweenHasNextAndNext (line 2085) | @Test public void elementEvictedBetweenHasNextAndNext() throws Excepti... method elementEvictedBeforeHasNextIsOmitted (line 2104) | @Test public void elementEvictedBeforeHasNextIsOmitted() throws Except... method conditionalMissUpdatesCache (line 2124) | @Test public void conditionalMissUpdatesCache() throws Exception { method get (line 2148) | private Response get(HttpUrl url) throws IOException { method writeFile (line 2156) | private void writeFile(File directory, String file, String content) th... method formatDate (line 2167) | private String formatDate(long delta, TimeUnit timeUnit) { method formatDate (line 2171) | private String formatDate(Date date) { method assertNotCached (line 2177) | private void assertNotCached(MockResponse response) throws Exception { method assertConditionallyCached (line 2188) | private RecordedRequest assertConditionallyCached(MockResponse respons... method assertFullyCached (line 2225) | private void assertFullyCached(MockResponse response) throws Exception { method truncateViolently (line 2239) | private MockResponse truncateViolently(MockResponse response, int numB... type TransferKind (line 2249) | enum TransferKind { method setBody (line 2251) | @Override void setBody(MockResponse response, Buffer content, int ch... method setBody (line 2257) | @Override void setBody(MockResponse response, Buffer content, int ch... method setBody (line 2262) | @Override void setBody(MockResponse response, Buffer content, int ch... method setBody (line 2269) | abstract void setBody(MockResponse response, Buffer content, int chu... method setBody (line 2271) | void setBody(MockResponse response, String content, int chunkSize) t... method gzip (line 2277) | public Buffer gzip(String data) throws IOException { FILE: comsat-okhttp/src/test/java/com/squareup/okhttp/CallTest.java class CallTest (line 87) | public final class CallTest { method setUp (line 100) | @Before public void setUp() throws Exception { method tearDown (line 104) | @After public void tearDown() throws Exception { method get (line 110) | @Test public void get() throws Exception { method buildRequestUsingHttpUrl (line 131) | @Test public void buildRequestUsingHttpUrl() throws Exception { method invalidScheme (line 143) | @Test public void invalidScheme() throws Exception { method invalidPort (line 153) | @Test public void invalidPort() throws Exception { method getReturns500 (line 163) | @Test public void getReturns500() throws Exception { method get_SPDY_3 (line 175) | @Test public void get_SPDY_3() throws Exception { method get_HTTP_2 (line 180) | @Test public void get_HTTP_2() throws Exception { method repeatedHeaderNames (line 185) | @Test public void repeatedHeaderNames() throws Exception { method repeatedHeaderNames_SPDY_3 (line 204) | @Test public void repeatedHeaderNames_SPDY_3() throws Exception { method repeatedHeaderNames_HTTP_2 (line 209) | @Test public void repeatedHeaderNames_HTTP_2() throws Exception { method getWithRequestBody (line 214) | @Test public void getWithRequestBody() throws Exception { method head (line 224) | @Test public void head() throws Exception { method head_SPDY_3 (line 244) | @Test public void head_SPDY_3() throws Exception { method head_HTTP_2 (line 249) | @Test public void head_HTTP_2() throws Exception { method post (line 254) | @Test public void post() throws Exception { method post_SPDY_3 (line 273) | @Test public void post_SPDY_3() throws Exception { method post_HTTP_2 (line 278) | @Test public void post_HTTP_2() throws Exception { method postZeroLength (line 283) | @Test public void postZeroLength() throws Exception { method postZeroLength_SPDY_3 (line 302) | @Test public void postZeroLength_SPDY_3() throws Exception { method postZerolength_HTTP_2 (line 307) | @Test public void postZerolength_HTTP_2() throws Exception { method postBodyRetransmittedAfterAuthorizationFail (line 312) | @Test public void postBodyRetransmittedAfterAuthorizationFail() throws... method postBodyRetransmittedAfterAuthorizationFail_SPDY_3 (line 316) | @Test public void postBodyRetransmittedAfterAuthorizationFail_SPDY_3()... method postBodyRetransmittedAfterAuthorizationFail_HTTP_2 (line 321) | @Test public void postBodyRetransmittedAfterAuthorizationFail_HTTP_2()... method postEmptyBodyRetransmittedAfterAuthorizationFail (line 327) | @Test public void postEmptyBodyRetransmittedAfterAuthorizationFail() t... method postEmptyBodyRetransmittedAfterAuthorizationFail_SPDY_3 (line 331) | @Test public void postEmptyBodyRetransmittedAfterAuthorizationFail_SPD... method postEmptyBodyRetransmittedAfterAuthorizationFail_HTTP_2 (line 336) | @Test public void postEmptyBodyRetransmittedAfterAuthorizationFail_HTT... method postBodyRetransmittedAfterAuthorizationFail (line 341) | private void postBodyRetransmittedAfterAuthorizationFail(String body) ... method attemptAuthorization20Times (line 367) | @Test public void attemptAuthorization20Times() throws Exception { method doesNotAttemptAuthorization21Times (line 382) | @Test public void doesNotAttemptAuthorization21Times() throws Exception { method delete (line 398) | @Test public void delete() throws Exception { method delete_SPDY_3 (line 417) | @Test public void delete_SPDY_3() throws Exception { method delete_HTTP_2 (line 422) | @Test public void delete_HTTP_2() throws Exception { method deleteWithRequestBody (line 427) | @Test public void deleteWithRequestBody() throws Exception { method put (line 444) | @Test public void put() throws Exception { method put_SPDY_3 (line 463) | @Test public void put_SPDY_3() throws Exception { method put_HTTP_2 (line 468) | @Test public void put_HTTP_2() throws Exception { method patch (line 473) | @Test public void patch() throws Exception { method patch_SPDY_3 (line 492) | @Test public void patch_SPDY_3() throws Exception { method patch_HTTP_2 (line 497) | @Test public void patch_HTTP_2() throws Exception { method unspecifiedRequestBodyContentTypeDoesNotGetDefault (line 502) | @Test public void unspecifiedRequestBodyContentTypeDoesNotGetDefault()... method illegalToExecuteTwice (line 518) | @Test public void illegalToExecuteTwice() throws Exception { method illegalToExecuteTwice_Async (line 548) | @Test public void illegalToExecuteTwice_Async() throws Exception { method get_Async (line 578) | @Test public void get_Async() throws Exception { method exceptionThrownByOnResponseIsRedactedAndLogged (line 597) | @Test public void exceptionThrownByOnResponseIsRedactedAndLogged() thr... method connectionPooling (line 618) | @Test public void connectionPooling() throws Exception { method connectionPooling_Async (line 637) | @Test public void connectionPooling_Async() throws Exception { method connectionReuseWhenResponseBodyConsumed_Async (line 656) | @Test public void connectionReuseWhenResponseBodyConsumed_Async() thro... method timeoutsUpdatedOnReusedConnections (line 682) | @Test public void timeoutsUpdatedOnReusedConnections() throws Exception { method timeoutsNotRetried (line 711) | @Test public void timeoutsNotRetried() throws Exception { method asyncCallEngineInitialized (line 730) | @Test public void asyncCallEngineInitialized() throws Exception { method reusedSinksGetIndependentTimeoutInstances (line 743) | @Test public void reusedSinksGetIndependentTimeoutInstances() throws E... method reusedSourcesGetIndependentTimeoutInstances (line 786) | @Test public void reusedSourcesGetIndependentTimeoutInstances() throws... method tls (line 809) | @Test public void tls() throws Exception { method tls_Async (line 822) | @Test public void tls_Async() throws Exception { method recoverWhenRetryOnConnectionFailureIsTrue (line 839) | @Test public void recoverWhenRetryOnConnectionFailureIsTrue() throws E... method noRecoverWhenRetryOnConnectionFailureIsFalse (line 851) | @Test public void noRecoverWhenRetryOnConnectionFailureIsFalse() throw... method recoverFromTlsHandshakeFailure (line 867) | @Test public void recoverFromTlsHandshakeFailure() throws Exception { method recoverFromTlsHandshakeFailure_tlsFallbackScsvEnabled (line 880) | @Test public void recoverFromTlsHandshakeFailure_tlsFallbackScsvEnable... method recoverFromTlsHandshakeFailure_Async (line 912) | @Test public void recoverFromTlsHandshakeFailure_Async() throws Except... method noRecoveryFromTlsHandshakeFailureWhenTlsFallbackIsDisabled (line 928) | @Test public void noRecoveryFromTlsHandshakeFailureWhenTlsFallbackIsDi... method cleartextCallsFailWhenCleartextIsDisabled (line 949) | @Test public void cleartextCallsFailWhenCleartextIsDisabled() throws E... method setFollowSslRedirectsFalse (line 965) | @Test public void setFollowSslRedirectsFalse() throws Exception { method matchingPinnedCertificate (line 978) | @Test public void matchingPinnedCertificate() throws Exception { method unmatchingPinnedCertificate (line 1001) | @Test public void unmatchingPinnedCertificate() throws Exception { method post_Async (line 1023) | @Test public void post_Async() throws Exception { method postBodyRetransmittedOnFailureRecovery (line 1042) | @Test public void postBodyRetransmittedOnFailureRecovery() throws Exce... method cacheHit (line 1071) | @Test public void cacheHit() throws Exception { method conditionalCacheHit (line 1120) | @Test public void conditionalCacheHit() throws Exception { method conditionalCacheHit_Async (line 1182) | @Test public void conditionalCacheHit_Async() throws Exception { method conditionalCacheMiss (line 1205) | @Test public void conditionalCacheMiss() throws Exception { method conditionalCacheMiss_Async (line 1256) | @Test public void conditionalCacheMiss_Async() throws Exception { method onlyIfCachedReturns504WhenNotCached (line 1277) | @Test public void onlyIfCachedReturns504WhenNotCached() throws Excepti... method redirect (line 1290) | @Test public void redirect() throws Exception { method postRedirectsToGet (line 1318) | @Test public void postRedirectsToGet() throws Exception { method redirectsDoNotIncludeTooManyCookies (line 1339) | @Test public void redirectsDoNotIncludeTooManyCookies() throws Excepti... method redirectsDoNotIncludeTooManyAuthHeaders (line 1370) | @Test public void redirectsDoNotIncludeTooManyAuthHeaders() throws Exc... method redirect_Async (line 1389) | @Test public void redirect_Async() throws Exception { method follow20Redirects (line 1420) | @Test public void follow20Redirects() throws Exception { method follow20Redirects_Async (line 1434) | @Test public void follow20Redirects_Async() throws Exception { method doesNotFollow21Redirects (line 1450) | @Test public void doesNotFollow21Redirects() throws Exception { method doesNotFollow21Redirects_Async (line 1466) | @Test public void doesNotFollow21Redirects_Async() throws Exception { method http204WithBodyDisallowed (line 1479) | @Test public void http204WithBodyDisallowed() throws IOException { method http205WithBodyDisallowed (line 1492) | @Test public void http205WithBodyDisallowed() throws IOException { method canceledBeforeExecute (line 1505) | @Test public void canceledBeforeExecute() throws Exception { method cancelDuringHttpConnect (line 1517) | @Test public void cancelDuringHttpConnect() throws Exception { method cancelDuringHttpsConnect (line 1521) | @Test public void cancelDuringHttpsConnect() throws Exception { method cancelDuringConnect (line 1526) | private void cancelDuringConnect(String scheme) throws Exception { method startNullServer (line 1549) | private InetSocketAddress startNullServer() throws IOException { method cancelTagImmediatelyAfterEnqueue (line 1556) | @Test public void cancelTagImmediatelyAfterEnqueue() throws Exception { method cancelBeforeBodyIsRead (line 1567) | @Test public void cancelBeforeBodyIsRead() throws Exception { method cancelInFlightBeforeResponseReadThrowsIOE (line 1589) | @Test public void cancelInFlightBeforeResponseReadThrowsIOE() throws E... method cancelInFlightBeforeResponseReadThrowsIOE_HTTP_2 (line 1605) | @Test public void cancelInFlightBeforeResponseReadThrowsIOE_HTTP_2() t... method cancelInFlightBeforeResponseReadThrowsIOE_SPDY_3 (line 1610) | @Test public void cancelInFlightBeforeResponseReadThrowsIOE_SPDY_3() t... method canceledBeforeIOSignalsOnFailure (line 1619) | @Test public void canceledBeforeIOSignalsOnFailure() throws Exception { method canceledBeforeIOSignalsOnFailure_HTTP_2 (line 1642) | @Test public void canceledBeforeIOSignalsOnFailure_HTTP_2() throws Exc... method canceledBeforeIOSignalsOnFailure_SPDY_3 (line 1647) | @Test public void canceledBeforeIOSignalsOnFailure_SPDY_3() throws Exc... method canceledBeforeResponseReadSignalsOnFailure (line 1652) | @Test public void canceledBeforeResponseReadSignalsOnFailure() throws ... method canceledBeforeResponseReadSignalsOnFailure_HTTP_2 (line 1669) | @Test public void canceledBeforeResponseReadSignalsOnFailure_HTTP_2() ... method canceledBeforeResponseReadSignalsOnFailure_SPDY_3 (line 1674) | @Test public void canceledBeforeResponseReadSignalsOnFailure_SPDY_3() ... method canceledAfterResponseIsDeliveredBreaksStreamButSignalsOnce (line 1683) | @Test public void canceledAfterResponseIsDeliveredBreaksStreamButSigna... method canceledAfterResponseIsDeliveredBreaksStreamButSignalsOnce_HTTP_2 (line 1716) | @Test public void canceledAfterResponseIsDeliveredBreaksStreamButSigna... method canceledAfterResponseIsDeliveredBreaksStreamButSignalsOnce_SPDY_3 (line 1722) | @Test public void canceledAfterResponseIsDeliveredBreaksStreamButSigna... method cancelWithInterceptor (line 1728) | @Test public void cancelWithInterceptor() throws Exception { method gzip (line 1747) | @Test public void gzip() throws Exception { method asyncResponseCanBeConsumedLater (line 1775) | @Test public void asyncResponseCanBeConsumedLater() throws Exception { method userAgentIsIncludedByDefault (line 1812) | @Test public void userAgentIsIncludedByDefault() throws Exception { method setFollowRedirectsFalse (line 1822) | @Test public void setFollowRedirectsFalse() throws Exception { method expect100ContinueNonEmptyRequestBody (line 1838) | @Test public void expect100ContinueNonEmptyRequestBody() throws Except... method expect100ContinueEmptyRequestBody (line 1854) | @Test public void expect100ContinueEmptyRequestBody() throws Exception { method responseHeaderParsingIsLenient (line 1869) | @Test public void responseHeaderParsingIsLenient() throws Exception { method customDns (line 1888) | @Test public void customDns() throws Exception { method failingCallsDoNotInterfereWithConnection (line 1904) | @Ignore // TODO(jwilson): fix HttpEngine connection cleanups. method proxyConnectOmitsApplicationHeaders (line 1934) | @Test public void proxyConnectOmitsApplicationHeaders() throws Excepti... method proxyAuthenticateOnConnect (line 1969) | @Test public void proxyAuthenticateOnConnect() throws Exception { method noProactiveProxyAuthorization (line 2009) | @Test public void noProactiveProxyAuthorization() throws Exception { method makeFailingCall (line 2035) | private void makeFailingCall() { method executeSynchronously (line 2061) | private RecordedResponse executeSynchronously(Request request) throws ... method enableProtocol (line 2070) | private void enableProtocol(Protocol protocol) { method gzip (line 2078) | private Buffer gzip(String data) throws IOException { method cancelLater (line 2086) | private void cancelLater(final Call call, final long delay) { class RecordingSSLSocketFactory (line 2099) | private static class RecordingSSLSocketFactory extends DelegatingSSLSo... method RecordingSSLSocketFactory (line 2103) | public RecordingSSLSocketFactory(SSLSocketFactory delegate) { method configureSocket (line 2107) | @Override method getSocketsCreated (line 2113) | public List getSocketsCreated() { method suppressTlsFallbackScsv (line 2123) | private void suppressTlsFallbackScsv(OkHttpClient client) { FILE: comsat-okhttp/src/test/java/com/squareup/okhttp/DispatcherTest.java class DispatcherTest (line 18) | public final class DispatcherTest { method setUp (line 24) | @Before public void setUp() throws Exception { method maxRequestsZero (line 29) | @Test public void maxRequestsZero() throws Exception { method maxPerHostZero (line 37) | @Test public void maxPerHostZero() throws Exception { method enqueuedJobsRunImmediately (line 45) | @Test public void enqueuedJobsRunImmediately() throws Exception { method maxRequestsEnforced (line 50) | @Test public void maxRequestsEnforced() throws Exception { method maxPerHostEnforced (line 59) | @Test public void maxPerHostEnforced() throws Exception { method increasingMaxRequestsPromotesJobsImmediately (line 67) | @Test public void increasingMaxRequestsPromotesJobsImmediately() throw... method increasingMaxPerHostPromotesJobsImmediately (line 78) | @Test public void increasingMaxPerHostPromotesJobsImmediately() throws... method oldJobFinishesNewJobCanRunDifferentHost (line 89) | @Test public void oldJobFinishesNewJobCanRunDifferentHost() throws Exc... method oldJobFinishesNewJobWithSameHostStarts (line 97) | @Test public void oldJobFinishesNewJobWithSameHostStarts() throws Exce... method oldJobFinishesNewJobCantRunDueToHostLimit (line 108) | @Test public void oldJobFinishesNewJobCantRunDueToHostLimit() throws E... method cancelingRunningJobTakesNoEffectUntilJobFinishes (line 117) | @Test public void cancelingRunningJobTakesNoEffectUntilJobFinishes() t... class RecordingExecutor (line 127) | class RecordingExecutor extends AbstractExecutorService { method execute (line 130) | @Override public void execute(Runnable command) { method assertJobs (line 134) | public void assertJobs(String... expectedUrls) { method finishJob (line 142) | public void finishJob(String url) { method shutdown (line 154) | @Override public void shutdown() { method shutdownNow (line 158) | @Override public List shutdownNow() { method isShutdown (line 162) | @Override public boolean isShutdown() { method isTerminated (line 166) | @Override public boolean isTerminated() { method awaitTermination (line 170) | @Override public boolean awaitTermination(long timeout, TimeUnit unit) method newRequest (line 176) | private Request newRequest(String url) { method newRequest (line 180) | private Request newRequest(String url, String tag) { FILE: comsat-okhttp/src/test/java/com/squareup/okhttp/OkUrlFactoryTest.java class OkUrlFactoryTest (line 29) | public class OkUrlFactoryTest { method setUp (line 36) | @Before public void setUp() throws IOException { method tearDown (line 43) | @After public void tearDown() throws IOException { method originServerSends407 (line 51) | @Test public void originServerSends407() throws Exception { method networkResponseSourceHeader (line 62) | @Test public void networkResponseSourceHeader() throws Exception { method networkFailureResponseSourceHeader (line 70) | @Test public void networkFailureResponseSourceHeader() throws Exception { method conditionalCacheHitResponseSourceHeaders (line 78) | @Test public void conditionalCacheHitResponseSourceHeaders() throws Ex... method conditionalCacheMissResponseSourceHeaders (line 94) | @Test public void conditionalCacheMissResponseSourceHeaders() throws E... method cacheResponseSourceHeaders (line 110) | @Test public void cacheResponseSourceHeaders() throws Exception { method noneResponseSourceHeaders (line 124) | @Test public void noneResponseSourceHeaders() throws Exception { method setInstanceFollowRedirectsFalse (line 136) | @Test method assertResponseBody (line 151) | private void assertResponseBody(HttpURLConnection connection, String e... method assertResponseHeader (line 158) | private void assertResponseHeader(HttpURLConnection connection, String... method assertResponseCode (line 163) | private void assertResponseCode(HttpURLConnection connection, int expe... method formatDate (line 167) | private static String formatDate(long delta, TimeUnit timeUnit) { method formatDate (line 171) | private static String formatDate(Date date) { FILE: comsat-okhttp/src/test/java/com/squareup/okhttp/URLConnectionTest.java class URLConnectionTest (line 100) | public final class URLConnectionTest { method setUp (line 110) | @Before public void setUp() throws Exception { method tearDown (line 115) | @After public void tearDown() throws Exception { method requestHeaders (line 129) | @Test public void requestHeaders() throws IOException, InterruptedExce... method getRequestPropertyReturnsLastValue (line 190) | @Test public void getRequestPropertyReturnsLastValue() throws Exception { method responseHeaders (line 197) | @Test public void responseHeaders() throws IOException, InterruptedExc... method serverSendsInvalidResponseHeaders (line 230) | @Test public void serverSendsInvalidResponseHeaders() throws Exception { method serverSendsInvalidCodeTooLarge (line 241) | @Test public void serverSendsInvalidCodeTooLarge() throws Exception { method serverSendsInvalidCodeNotANumber (line 252) | @Test public void serverSendsInvalidCodeNotANumber() throws Exception { method serverSendsUnnecessaryWhitespace (line 263) | @Test public void serverSendsUnnecessaryWhitespace() throws Exception { method connectRetriesUntilConnectedOrFailed (line 274) | @Test public void connectRetriesUntilConnectedOrFailed() throws Except... method requestBodySurvivesRetriesWithFixedLength (line 286) | @Test public void requestBodySurvivesRetriesWithFixedLength() throws E... method requestBodySurvivesRetriesWithChunkedStreaming (line 290) | @Test public void requestBodySurvivesRetriesWithChunkedStreaming() thr... method requestBodySurvivesRetriesWithBufferedBody (line 294) | @Test public void requestBodySurvivesRetriesWithBufferedBody() throws ... method testRequestBodySurvivesRetries (line 298) | private void testRequestBodySurvivesRetries(TransferKind transferKind)... method getErrorStreamOnSuccessfulRequest (line 316) | @Test public void getErrorStreamOnSuccessfulRequest() throws Exception { method getErrorStreamOnUnsuccessfulRequest (line 322) | @Test public void getErrorStreamOnUnsuccessfulRequest() throws Excepti... method bug2939 (line 331) | @Test public void bug2939() throws Exception { method bug10100 (line 343) | @Test public void bug10100() throws Exception { method connectionsArePooled (line 348) | @Test public void connectionsArePooled() throws Exception { method chunkedConnectionsArePooled (line 363) | @Test public void chunkedConnectionsArePooled() throws Exception { method serverClosesSocket (line 378) | @Test public void serverClosesSocket() throws Exception { method serverShutdownInput (line 382) | @Test public void serverShutdownInput() throws Exception { method serverShutdownOutput (line 386) | @Test public void serverShutdownOutput() throws Exception { method invalidHost (line 390) | @Test public void invalidHost() throws Exception { method testServerClosesOutput (line 401) | private void testServerClosesOutput(SocketPolicy socketPolicy) throws ... type WriteKind (line 425) | enum WriteKind {BYTE_BY_BYTE, SMALL_BUFFERS, LARGE_BUFFERS} method chunkedUpload_byteByByte (line 427) | @Test public void chunkedUpload_byteByByte() throws Exception { method chunkedUpload_smallBuffers (line 431) | @Test public void chunkedUpload_smallBuffers() throws Exception { method chunkedUpload_largeBuffers (line 435) | @Test public void chunkedUpload_largeBuffers() throws Exception { method fixedLengthUpload_byteByByte (line 439) | @Test public void fixedLengthUpload_byteByByte() throws Exception { method fixedLengthUpload_smallBuffers (line 443) | @Test public void fixedLengthUpload_smallBuffers() throws Exception { method fixedLengthUpload_largeBuffers (line 447) | @Test public void fixedLengthUpload_largeBuffers() throws Exception { method doUpload (line 451) | private void doUpload(TransferKind uploadKind, WriteKind writeKind) th... method getResponseCodeNoResponseBody (line 487) | @Test public void getResponseCodeNoResponseBody() throws Exception { method connectViaHttps (line 502) | @Test public void connectViaHttps() throws Exception { method inspectHandshakeThroughoutRequestLifecycle (line 516) | @Test public void inspectHandshakeThroughoutRequestLifecycle() throws ... method connectViaHttpsReusingConnections (line 545) | @Test public void connectViaHttpsReusingConnections() throws IOExcepti... method connectViaHttpsReusingConnectionsDifferentFactories (line 566) | @Test public void connectViaHttpsReusingConnectionsDifferentFactories() method connectViaHttpsWithSSLFallback (line 587) | @Test public void connectViaHttpsWithSSLFallback() throws Exception { method connectViaHttpsWithSSLFallbackFailuresRecorded (line 603) | @Test public void connectViaHttpsWithSSLFallbackFailuresRecorded() thr... method sslFallbackNotUsedWhenRecycledConnectionFails (line 628) | @Test public void sslFallbackNotUsedWhenRecycledConnectionFails() thro... method connectViaHttpsToUntrustedServer (line 656) | @Test public void connectViaHttpsToUntrustedServer() throws IOExceptio... method connectViaProxyUsingProxyArg (line 670) | @Test public void connectViaProxyUsingProxyArg() throws Exception { method connectViaProxyUsingProxySystemProperty (line 674) | @Test public void connectViaProxyUsingProxySystemProperty() throws Exc... method connectViaProxyUsingHttpProxySystemProperty (line 678) | @Test public void connectViaProxyUsingHttpProxySystemProperty() throws... method testConnectViaProxy (line 682) | private void testConnectViaProxy(ProxyConfig proxyConfig) throws Excep... method contentDisagreesWithContentLengthHeaderBodyTooLong (line 696) | @Test public void contentDisagreesWithContentLengthHeaderBodyTooLong()... method contentDisagreesWithContentLengthHeaderBodyTooShort (line 703) | @Test public void contentDisagreesWithContentLengthHeaderBodyTooShort(... method testConnectViaSocketFactory (line 714) | public void testConnectViaSocketFactory(boolean useHttps) throws IOExc... method connectHttpViaSocketFactory (line 747) | @Test public void connectHttpViaSocketFactory() throws Exception { method connectHttpsViaSocketFactory (line 751) | @Test public void connectHttpsViaSocketFactory() throws Exception { method contentDisagreesWithChunkedHeaderBodyTooLong (line 755) | @Test public void contentDisagreesWithChunkedHeaderBodyTooLong() throw... method contentDisagreesWithChunkedHeaderBodyTooShort (line 769) | @Test public void contentDisagreesWithChunkedHeaderBodyTooShort() thro... method connectViaHttpProxyToHttpsUsingProxyArgWithNoProxy (line 791) | @Test public void connectViaHttpProxyToHttpsUsingProxyArgWithNoProxy()... method connectViaHttpProxyToHttpsUsingHttpProxySystemProperty (line 795) | @Test public void connectViaHttpProxyToHttpsUsingHttpProxySystemProper... method testConnectViaDirectProxyToHttps (line 800) | private void testConnectViaDirectProxyToHttps(ProxyConfig proxyConfig)... method connectViaHttpProxyToHttpsUsingProxyArg (line 815) | @Test public void connectViaHttpProxyToHttpsUsingProxyArg() throws Exc... method connectViaHttpProxyToHttpsUsingProxySystemProperty (line 823) | @Test public void connectViaHttpProxyToHttpsUsingProxySystemProperty()... method connectViaHttpProxyToHttpsUsingHttpsProxySystemProperty (line 827) | @Test public void connectViaHttpProxyToHttpsUsingHttpsProxySystemPrope... method testConnectViaHttpProxyToHttps (line 835) | private void testConnectViaHttpProxyToHttps(ProxyConfig proxyConfig) t... method connectViaHttpProxyToHttpsUsingBadProxyAndHttpResponseCache (line 862) | @Test public void connectViaHttpProxyToHttpsUsingBadProxyAndHttpRespon... method initResponseCache (line 890) | private void initResponseCache() throws IOException { method proxyConnectIncludesProxyHeadersOnly (line 896) | @Test public void proxyConnectIncludesProxyHeadersOnly() method proxyAuthenticateOnConnect (line 928) | @Test public void proxyAuthenticateOnConnect() throws Exception { method proxyWithConnectionClose (line 961) | @Test public void proxyWithConnectionClose() throws IOException { method proxyWithConnectionReuse (line 978) | @Test public void proxyWithConnectionReuse() throws IOException { method disconnectedConnection (line 997) | @Test public void disconnectedConnection() throws IOException { method disconnectBeforeConnect (line 1017) | @Test public void disconnectBeforeConnect() throws IOException { method defaultRequestProperty (line 1026) | @SuppressWarnings("deprecation") @Test public void defaultRequestPrope... method readAscii (line 1036) | private String readAscii(InputStream in, int count) throws IOException { method markAndResetWithContentLengthHeader (line 1049) | @Test public void markAndResetWithContentLengthHeader() throws IOExcep... method markAndResetWithChunkedEncoding (line 1053) | @Test public void markAndResetWithChunkedEncoding() throws IOException { method markAndResetWithNoLengthHeaders (line 1057) | @Test public void markAndResetWithNoLengthHeaders() throws IOException { method testMarkAndReset (line 1061) | private void testMarkAndReset(TransferKind transferKind) throws IOExce... method unauthorizedResponseHandling (line 1085) | @Test public void unauthorizedResponseHandling() throws IOException { method nonHexChunkSize (line 1102) | @Test public void nonHexChunkSize() throws IOException { method malformedChunkSize (line 1115) | @Test public void malformedChunkSize() throws IOException { method extensionAfterChunkSize (line 1128) | @Test public void extensionAfterChunkSize() throws IOException { method missingChunkBody (line 1137) | @Test public void missingChunkBody() throws IOException { method gzipEncodingEnabledByDefault (line 1156) | @Test public void gzipEncodingEnabledByDefault() throws IOException, I... method clientConfiguredGzipContentEncoding (line 1170) | @Test public void clientConfiguredGzipContentEncoding() throws Excepti... method gzipAndConnectionReuseWithFixedLength (line 1186) | @Test public void gzipAndConnectionReuseWithFixedLength() throws Excep... method gzipAndConnectionReuseWithChunkedEncoding (line 1190) | @Test public void gzipAndConnectionReuseWithChunkedEncoding() throws E... method gzipAndConnectionReuseWithFixedLengthAndTls (line 1194) | @Test public void gzipAndConnectionReuseWithFixedLengthAndTls() throws... method gzipAndConnectionReuseWithChunkedEncodingAndTls (line 1198) | @Test public void gzipAndConnectionReuseWithChunkedEncodingAndTls() th... method clientConfiguredCustomContentEncoding (line 1202) | @Test public void clientConfiguredCustomContentEncoding() throws Excep... method testClientConfiguredGzipContentEncodingAndConnectionReuse (line 1219) | private void testClientConfiguredGzipContentEncodingAndConnectionReuse... method transparentGzipWorksAfterExceptionRecovery (line 1248) | @Test public void transparentGzipWorksAfterExceptionRecovery() throws ... method endOfStreamResponseIsNotPooled (line 1266) | @Test public void endOfStreamResponseIsNotPooled() throws Exception { method earlyDisconnectDoesntHarmPoolingWithChunkedEncoding (line 1281) | @Test public void earlyDisconnectDoesntHarmPoolingWithChunkedEncoding(... method earlyDisconnectDoesntHarmPoolingWithFixedLengthEncoding (line 1285) | @Test public void earlyDisconnectDoesntHarmPoolingWithFixedLengthEncod... method testEarlyDisconnectDoesntHarmPooling (line 1289) | private void testEarlyDisconnectDoesntHarmPooling(TransferKind transfe... method streamDiscardingIsTimely (line 1314) | @Test public void streamDiscardingIsTimely() throws Exception { method setChunkedStreamingMode (line 1340) | @Test public void setChunkedStreamingMode() throws IOException, Interr... method authenticateWithFixedLengthStreaming (line 1356) | @Test public void authenticateWithFixedLengthStreaming() throws Except... method authenticateWithChunkedStreaming (line 1360) | @Test public void authenticateWithChunkedStreaming() throws Exception { method testAuthenticateWithStreamingPost (line 1364) | private void testAuthenticateWithStreamingPost(StreamingMode streaming... method postBodyRetransmittedAfterAuthorizationFail (line 1394) | @Test public void postBodyRetransmittedAfterAuthorizationFail() throws... method postBodyRetransmittedAfterAuthorizationFail_SPDY_3 (line 1398) | @Test public void postBodyRetransmittedAfterAuthorizationFail_SPDY_3()... method postBodyRetransmittedAfterAuthorizationFail_HTTP_2 (line 1403) | @Test public void postBodyRetransmittedAfterAuthorizationFail_HTTP_2()... method postEmptyBodyRetransmittedAfterAuthorizationFail (line 1409) | @Test public void postEmptyBodyRetransmittedAfterAuthorizationFail() t... method postEmptyBodyRetransmittedAfterAuthorizationFail_SPDY_3 (line 1413) | @Test public void postEmptyBodyRetransmittedAfterAuthorizationFail_SPD... method postEmptyBodyRetransmittedAfterAuthorizationFail_HTTP_2 (line 1418) | @Test public void postEmptyBodyRetransmittedAfterAuthorizationFail_HTT... method postBodyRetransmittedAfterAuthorizationFail (line 1423) | private void postBodyRetransmittedAfterAuthorizationFail(String body) ... method nonStandardAuthenticationScheme (line 1448) | @Test public void nonStandardAuthenticationScheme() throws Exception { method nonStandardAuthenticationSchemeWithRealm (line 1453) | @Test public void nonStandardAuthenticationSchemeWithRealm() throws Ex... method digestAuthentication (line 1460) | @Test public void digestAuthentication() throws Exception { method allAttributesSetInServerAuthenticationCallbacks (line 1468) | @Test public void allAttributesSetInServerAuthenticationCallbacks() th... method allAttributesSetInProxyAuthenticationCallbacks (line 1483) | @Test public void allAttributesSetInProxyAuthenticationCallbacks() thr... method authCallsForHeader (line 1498) | private List authCallsForHeader(String authHeader) throws IOEx... method setValidRequestMethod (line 1518) | @Test public void setValidRequestMethod() throws Exception { method assertValidRequestMethod (line 1529) | private void assertValidRequestMethod(String requestMethod) throws Exc... method setInvalidRequestMethodLowercase (line 1535) | @Test public void setInvalidRequestMethodLowercase() throws Exception { method setInvalidRequestMethodConnect (line 1539) | @Test public void setInvalidRequestMethodConnect() throws Exception { method assertInvalidRequestMethod (line 1543) | private void assertInvalidRequestMethod(String requestMethod) throws E... method shoutcast (line 1552) | @Test public void shoutcast() throws Exception { method cannotSetNegativeFixedLengthStreamingMode (line 1577) | @Test public void cannotSetNegativeFixedLengthStreamingMode() throws E... method canSetNegativeChunkedStreamingMode (line 1586) | @Test public void canSetNegativeChunkedStreamingMode() throws Exception { method cannotSetFixedLengthStreamingModeAfterConnect (line 1591) | @Test public void cannotSetFixedLengthStreamingModeAfterConnect() thro... method cannotSetChunkedStreamingModeAfterConnect (line 1602) | @Test public void cannotSetChunkedStreamingModeAfterConnect() throws E... method cannotSetFixedLengthStreamingModeAfterChunkedStreamingMode (line 1613) | @Test public void cannotSetFixedLengthStreamingModeAfterChunkedStreami... method cannotSetChunkedStreamingModeAfterFixedLengthStreamingMode (line 1623) | @Test public void cannotSetChunkedStreamingModeAfterFixedLengthStreami... method secureFixedLengthStreaming (line 1633) | @Test public void secureFixedLengthStreaming() throws Exception { method secureChunkedStreaming (line 1637) | @Test public void secureChunkedStreaming() throws Exception { method testSecureStreamingPost (line 1645) | private void testSecureStreamingPost(StreamingMode streamingMode) thro... type StreamingMode (line 1674) | enum StreamingMode { method authenticateWithPost (line 1678) | @Test public void authenticateWithPost() throws Exception { method authenticateWithGet (line 1712) | @Test public void authenticateWithGet() throws Exception { method authenticateWithGetAndTransparentGzip (line 1741) | @Test public void authenticateWithGetAndTransparentGzip() throws Excep... method authenticateRealmUppercase (line 1773) | @Test public void authenticateRealmUppercase() throws Exception { method redirectedWithChunkedEncoding (line 1784) | @Test public void redirectedWithChunkedEncoding() throws Exception { method redirectedWithContentLengthHeader (line 1788) | @Test public void redirectedWithContentLengthHeader() throws Exception { method redirectedWithNoLengthHeaders (line 1792) | @Test public void redirectedWithNoLengthHeaders() throws Exception { method testRedirected (line 1796) | private void testRedirected(TransferKind transferKind, boolean reuse) ... method redirectedOnHttps (line 1816) | @Test public void redirectedOnHttps() throws IOException, InterruptedE... method notRedirectedFromHttpsToHttp (line 1836) | @Test public void notRedirectedFromHttpsToHttp() throws IOException, I... method notRedirectedFromHttpToHttps (line 1849) | @Test public void notRedirectedFromHttpToHttps() throws IOException, I... method redirectedFromHttpsToHttpFollowingProtocolRedirects (line 1859) | @Test public void redirectedFromHttpsToHttpFollowingProtocolRedirects(... method redirectedFromHttpToHttpsFollowingProtocolRedirects (line 1879) | @Test public void redirectedFromHttpToHttpsFollowingProtocolRedirects(... method redirectToAnotherOriginServer (line 1895) | @Test public void redirectToAnotherOriginServer() throws Exception { method redirectToAnotherOriginServerWithHttps (line 1899) | @Test public void redirectToAnotherOriginServerWithHttps() throws Exce... method redirectToAnotherOriginServer (line 1903) | private void redirectToAnotherOriginServer(boolean https) throws Excep... method redirectWithProxySelector (line 1936) | @Test public void redirectWithProxySelector() throws Exception { method redirectWithAuthentication (line 1964) | @Test public void redirectWithAuthentication() throws Exception { method response300MultipleChoiceWithPost (line 1980) | @Test public void response300MultipleChoiceWithPost() throws Exception { method response301MovedPermanentlyWithPost (line 1985) | @Test public void response301MovedPermanentlyWithPost() throws Excepti... method response302MovedTemporarilyWithPost (line 1989) | @Test public void response302MovedTemporarilyWithPost() throws Excepti... method response303SeeOtherWithPost (line 1993) | @Test public void response303SeeOtherWithPost() throws Exception { method postRedirectToGetWithChunkedRequest (line 1997) | @Test public void postRedirectToGetWithChunkedRequest() throws Excepti... method postRedirectToGetWithStreamedRequest (line 2001) | @Test public void postRedirectToGetWithStreamedRequest() throws Except... method testResponseRedirectedWithPost (line 2005) | private void testResponseRedirectedWithPost(int redirectCode, Transfer... method redirectedPostStripsRequestBodyHeaders (line 2030) | @Test public void redirectedPostStripsRequestBodyHeaders() throws Exce... method response305UseProxy (line 2054) | @Test public void response305UseProxy() throws Exception { method response307WithGet (line 2069) | @Test public void response307WithGet() throws Exception { method response307WithHead (line 2073) | @Test public void response307WithHead() throws Exception { method response307WithOptions (line 2077) | @Test public void response307WithOptions() throws Exception { method response307WithPost (line 2081) | @Test public void response307WithPost() throws Exception { method response308WithGet (line 2085) | @Test public void response308WithGet() throws Exception { method response308WithHead (line 2089) | @Test public void response308WithHead() throws Exception { method response308WithOptions (line 2093) | @Test public void response308WithOptions() throws Exception { method response308WithPost (line 2097) | @Test public void response308WithPost() throws Exception { method testRedirect (line 2101) | private void testRedirect(boolean temporary, String method) throws Exc... method follow20Redirects (line 2148) | @Test public void follow20Redirects() throws Exception { method doesNotFollow21Redirects (line 2161) | @Test public void doesNotFollow21Redirects() throws Exception { method httpsWithCustomTrustManager (line 2180) | @Test public void httpsWithCustomTrustManager() throws Exception { method readTimeouts (line 2204) | @Test public void readTimeouts() throws IOException { method writeTimeouts (line 2227) | @Test public void writeTimeouts() throws IOException { method setChunkedEncodingAsRequestProperty (line 2267) | @Test public void setChunkedEncodingAsRequestProperty() throws IOExcep... method connectionCloseInRequest (line 2280) | @Test public void connectionCloseInRequest() throws IOException, Inter... method connectionCloseInResponse (line 2296) | @Test public void connectionCloseInResponse() throws IOException, Inte... method connectionCloseWithRedirect (line 2311) | @Test public void connectionCloseWithRedirect() throws IOException, In... method sameConnectionRedirectAndReuse (line 2331) | @Test public void sameConnectionRedirectAndReuse() throws Exception { method responseCodeDisagreesWithHeaders (line 2343) | @Test public void responseCodeDisagreesWithHeaders() throws IOExceptio... method singleByteReadIsSigned (line 2352) | @Test public void singleByteReadIsSigned() throws IOException { method flushAfterStreamTransmittedWithChunkedEncoding (line 2362) | @Test public void flushAfterStreamTransmittedWithChunkedEncoding() thr... method flushAfterStreamTransmittedWithFixedLength (line 2366) | @Test public void flushAfterStreamTransmittedWithFixedLength() throws ... method flushAfterStreamTransmittedWithNoLengthHeaders (line 2370) | @Test public void flushAfterStreamTransmittedWithNoLengthHeaders() thr... method testFlushAfterStreamTransmitted (line 2379) | private void testFlushAfterStreamTransmitted(TransferKind transferKind... method getHeadersThrows (line 2404) | @Test public void getHeadersThrows() throws IOException { method dnsFailureThrowsIOException (line 2421) | @Test public void dnsFailureThrowsIOException() throws IOException { method malformedUrlThrowsUnknownHostException (line 2430) | @Test public void malformedUrlThrowsUnknownHostException() throws IOEx... method getKeepAlive (line 2439) | @Test public void getKeepAlive() throws Exception { method readAfterLastByte (line 2458) | @Test public void readAfterLastByte() throws Exception { method getContent (line 2471) | @Test public void getContent() throws Exception { method getContentOfType (line 2478) | @Test public void getContentOfType() throws Exception { method getOutputStreamOnGetFails (line 2494) | @Test public void getOutputStreamOnGetFails() throws Exception { method getOutputAfterGetInputStreamFails (line 2504) | @Test public void getOutputAfterGetInputStreamFails() throws Exception { method setDoOutputOrDoInputAfterConnectFails (line 2516) | @Test public void setDoOutputOrDoInputAfterConnectFails() throws Excep... method clientSendsContentLength (line 2532) | @Test public void clientSendsContentLength() throws Exception { method getContentLengthConnects (line 2544) | @Test public void getContentLengthConnects() throws Exception { method getContentTypeConnects (line 2550) | @Test public void getContentTypeConnects() throws Exception { method getContentEncodingConnects (line 2556) | @Test public void getContentEncodingConnects() throws Exception { method urlContainsQueryButNoPath (line 2563) | @Test public void urlContainsQueryButNoPath() throws Exception { method doOutputForMethodThatDoesntSupportOutput (line 2572) | @Test public void doOutputForMethodThatDoesntSupportOutput() throws Ex... method inputStreamAvailableWithChunkedEncoding (line 2584) | @Test public void inputStreamAvailableWithChunkedEncoding() throws Exc... method inputStreamAvailableWithContentLengthHeader (line 2588) | @Test public void inputStreamAvailableWithContentLengthHeader() throws... method inputStreamAvailableWithNoLengthHeaders (line 2592) | @Test public void inputStreamAvailableWithNoLengthHeaders() throws Exc... method testInputStreamAvailable (line 2596) | private void testInputStreamAvailable(TransferKind transferKind) throw... method postFailsWithBufferedRequestForSmallRequest (line 2611) | @Test public void postFailsWithBufferedRequestForSmallRequest() throws... method postFailsWithBufferedRequestForLargeRequest (line 2615) | @Test public void postFailsWithBufferedRequestForLargeRequest() throws... method postFailsWithChunkedRequestForSmallRequest (line 2619) | @Test public void postFailsWithChunkedRequestForSmallRequest() throws ... method postFailsWithChunkedRequestForLargeRequest (line 2623) | @Test public void postFailsWithChunkedRequestForLargeRequest() throws ... method postFailsWithFixedLengthRequestForSmallRequest (line 2627) | @Test public void postFailsWithFixedLengthRequestForSmallRequest() thr... method postFailsWithFixedLengthRequestForLargeRequest (line 2631) | @Test public void postFailsWithFixedLengthRequestForLargeRequest() thr... method reusedConnectionFailsWithPost (line 2635) | private void reusedConnectionFailsWithPost(TransferKind transferKind, ... method postBodyRetransmittedOnFailureRecovery (line 2673) | @Test public void postBodyRetransmittedOnFailureRecovery() throws Exce... method fullyBufferedPostIsTooShort (line 2698) | @Test public void fullyBufferedPostIsTooShort() throws Exception { method fullyBufferedPostIsTooLong (line 2715) | @Test public void fullyBufferedPostIsTooLong() throws Exception { method testPooledConnectionsDetectHttp10 (line 2733) | @Test @Ignore public void testPooledConnectionsDetectHttp10() { method postBodiesRetransmittedOnAuthProblems (line 2738) | @Test @Ignore public void postBodiesRetransmittedOnAuthProblems() { method cookiesAndTrailers (line 2742) | @Test @Ignore public void cookiesAndTrailers() { method headerNamesContainingNullCharacter (line 2747) | @Test @Ignore public void headerNamesContainingNullCharacter() { method headerValuesContainingNullCharacter (line 2752) | @Test @Ignore public void headerValuesContainingNullCharacter() { method emptyRequestHeaderValueIsAllowed (line 2757) | @Test public void emptyRequestHeaderValueIsAllowed() throws Exception { method emptyResponseHeaderValueIsAllowed (line 2765) | @Test public void emptyResponseHeaderValueIsAllowed() throws Exception { method emptyRequestHeaderNameIsStrict (line 2772) | @Test public void emptyRequestHeaderNameIsStrict() throws Exception { method emptyResponseHeaderNameIsLenient (line 2782) | @Test public void emptyResponseHeaderNameIsLenient() throws Exception { method requestHeaderValidationIsStrict (line 2791) | @Test public void requestHeaderValidationIsStrict() throws Exception { method responseHeaderParsingIsLenient (line 2820) | @Test public void responseHeaderParsingIsLenient() throws Exception { method deflateCompression (line 2836) | @Test @Ignore public void deflateCompression() { method postBodiesRetransmittedOnIpAddressProblems (line 2840) | @Test @Ignore public void postBodiesRetransmittedOnIpAddressProblems() { method pooledConnectionProblemsNotReportedToProxySelector (line 2844) | @Test @Ignore public void pooledConnectionProblemsNotReportedToProxySe... method customBasicAuthenticator (line 2848) | @Test public void customBasicAuthenticator() throws Exception { method customTokenAuthenticator (line 2869) | @Test public void customTokenAuthenticator() throws Exception { method authenticateCallsTrackedAsRedirects (line 2888) | @Test public void authenticateCallsTrackedAsRedirects() throws Excepti... method attemptAuthorization20Times (line 2909) | @Test public void attemptAuthorization20Times() throws Exception { method doesNotAttemptAuthorization21Times (line 2922) | @Test public void doesNotAttemptAuthorization21Times() throws Exception { method setsNegotiatedProtocolHeader_SPDY_3 (line 2940) | @Ignore // TODO method setsNegotiatedProtocolHeader_HTTP_2 (line 2945) | @Ignore // TODO method setsNegotiatedProtocolHeader (line 2950) | private void setsNegotiatedProtocolHeader(Protocol protocol) throws IO... method http10SelectedProtocol (line 2960) | @Test public void http10SelectedProtocol() throws Exception { method http11SelectedProtocol (line 2967) | @Test public void http11SelectedProtocol() throws Exception { method zeroLengthPost (line 2975) | @Test public void zeroLengthPost() throws IOException, InterruptedExce... method zeroLengthPost_SPDY_3 (line 2979) | @Test public void zeroLengthPost_SPDY_3() throws Exception { method zeroLengthPost_HTTP_2 (line 2984) | @Test public void zeroLengthPost_HTTP_2() throws Exception { method zeroLengthPut (line 2990) | @Test public void zeroLengthPut() throws IOException, InterruptedExcep... method zeroLengthPut_SPDY_3 (line 2994) | @Test public void zeroLengthPut_SPDY_3() throws Exception { method zeroLengthPut_HTTP_2 (line 2999) | @Test public void zeroLengthPut_HTTP_2() throws Exception { method zeroLengthPayload (line 3004) | private void zeroLengthPayload(String method) method unspecifiedRequestBodyContentTypeGetsDefault (line 3019) | @Test public void unspecifiedRequestBodyContentTypeGetsDefault() throw... method setProtocols (line 3033) | @Test public void setProtocols() throws Exception { method setProtocolsWithoutHttp11 (line 3039) | @Test public void setProtocolsWithoutHttp11() throws Exception { method setProtocolsWithNull (line 3047) | @Test public void setProtocolsWithNull() throws Exception { method veryLargeFixedLengthRequest (line 3055) | @Test public void veryLargeFixedLengthRequest() throws Exception { method noTransparentGzipFor304NotModified (line 3082) | @Test public void noTransparentGzipFor304NotModified() throws Exception { method gzipWithRedirectAndConnectionReuse (line 3108) | @Test public void gzipWithRedirectAndConnectionReuse() throws Exception { method bodyPermittedOnDelete (line 3130) | @Test public void bodyPermittedOnDelete() throws Exception { method userAgentPicksUpHttpAgentSystemProperty (line 3144) | @Test public void userAgentPicksUpHttpAgentSystemProperty() throws Exc... method userAgentSystemPropertyIsNotAscii (line 3155) | @Test public void userAgentSystemPropertyIsNotAscii() throws Exception { method userAgentDefaultsToOkHttpVersion (line 3165) | @Test public void userAgentDefaultsToOkHttpVersion() throws Exception { method interceptorsNotInvoked (line 3174) | @Test public void interceptorsNotInvoked() throws Exception { method urlWithSpaceInHost (line 3187) | @Test public void urlWithSpaceInHost() throws Exception { method urlWithSpaceInHostViaHttpProxy (line 3196) | @Test public void urlWithSpaceInHostViaHttpProxy() throws Exception { method urlHostWithNul (line 3209) | @Test public void urlHostWithNul() throws Exception { method urlRedirectToHostWithNul (line 3218) | @Test public void urlRedirectToHostWithNul() throws Exception { method urlWithBadAsciiHost (line 3228) | @Test public void urlWithBadAsciiHost() throws Exception { method instanceFollowsRedirects (line 3237) | @Test public void instanceFollowsRedirects() throws Exception { method testInstanceFollowsRedirects (line 3242) | private void testInstanceFollowsRedirects(String spec) throws Exception { method gzip (line 3252) | public Buffer gzip(String data) throws IOException { method assertContent (line 3264) | private void assertContent(String expected, HttpURLConnection connecti... method assertContent (line 3270) | private void assertContent(String expected, HttpURLConnection connecti... method newSet (line 3274) | private Set newSet(String... elements) { type TransferKind (line 3278) | enum TransferKind { method setBody (line 3280) | @Override void setBody(MockResponse response, Buffer content, int ch... method setForRequest (line 3284) | @Override void setForRequest(HttpURLConnection connection, int conte... method setBody (line 3289) | @Override void setBody(MockResponse response, Buffer content, int ch... method setForRequest (line 3292) | @Override void setForRequest(HttpURLConnection connection, int conte... method setBody (line 3297) | @Override void setBody(MockResponse response, Buffer content, int ch... method setForRequest (line 3302) | @Override void setForRequest(HttpURLConnection connection, int conte... method setBody (line 3306) | abstract void setBody(MockResponse response, Buffer content, int chu... method setForRequest (line 3308) | abstract void setForRequest(HttpURLConnection connection, int conten... method setBody (line 3310) | void setBody(MockResponse response, String content, int chunkSize) t... type ProxyConfig (line 3315) | enum ProxyConfig { method connect (line 3317) | @Override public HttpURLConnection connect( method connect (line 3326) | @Override public HttpURLConnection connect( method connect (line 3335) | @Override public HttpURLConnection connect( method connect (line 3345) | @Override public HttpURLConnection connect( method connect (line 3355) | @Override public HttpURLConnection connect( method connect (line 3364) | public abstract HttpURLConnection connect( class RecordingTrustManager (line 3369) | private static class RecordingTrustManager implements X509TrustManager { method getAcceptedIssuers (line 3372) | public X509Certificate[] getAcceptedIssuers() { method checkClientTrusted (line 3376) | public void checkClientTrusted(X509Certificate[] chain, String authT... method checkServerTrusted (line 3381) | public void checkServerTrusted(X509Certificate[] chain, String authT... method certificatesToString (line 3386) | private String certificatesToString(X509Certificate[] certificates) { class FakeProxySelector (line 3395) | private static class FakeProxySelector extends ProxySelector { method select (line 3398) | @Override public List select(URI uri) { method connectFailed (line 3404) | @Override public void connectFailed(URI uri, SocketAddress sa, IOExc... method enableProtocol (line 3412) | private void enableProtocol(Protocol protocol) { method suppressTlsFallbackScsv (line 3426) | private void suppressTlsFallbackScsv(OkHttpClient client) { FILE: comsat-okhttp/src/test/java/com/squareup/okhttp/UrlConnectionCacheTest.java class UrlConnectionCacheTest (line 75) | public final class UrlConnectionCacheTest { method verify (line 77) | @Override public boolean verify(String s, SSLSession sslSession) { method setUp (line 91) | @Before public void setUp() throws Exception { method tearDown (line 98) | @After public void tearDown() throws Exception { method responseCacheAccessWithOkHttpMember (line 104) | @Test public void responseCacheAccessWithOkHttpMember() throws IOExcep... method responseCachingByResponseCode (line 112) | @Test public void responseCachingByResponseCode() throws Exception { method assertCached (line 166) | private void assertCached(boolean shouldPut, int responseCode) throws ... method responseCachingAndInputStreamSkipWithFixedLength (line 199) | @Test public void responseCachingAndInputStreamSkipWithFixedLength() t... method responseCachingAndInputStreamSkipWithChunkedEncoding (line 203) | @Test public void responseCachingAndInputStreamSkipWithChunkedEncoding... method responseCachingAndInputStreamSkipWithNoLengthHeaders (line 207) | @Test public void responseCachingAndInputStreamSkipWithNoLengthHeaders... method testResponseCaching (line 215) | private void testResponseCaching(TransferKind transferKind) throws IOE... method secureResponseCaching (line 249) | @Test public void secureResponseCaching() throws IOException { method responseCachingAndRedirects (line 283) | @Test public void responseCachingAndRedirects() throws Exception { method redirectToCachedResult (line 304) | @Test public void redirectToCachedResult() throws Exception { method secureResponseCachingAndRedirects (line 327) | @Test public void secureResponseCachingAndRedirects() throws IOExcepti... method secureResponseCachingAndProtocolRedirects (line 363) | @Test public void secureResponseCachingAndProtocolRedirects() throws I... method serverDisconnectsPrematurelyWithContentLengthHeader (line 389) | @Test public void serverDisconnectsPrematurelyWithContentLengthHeader(... method serverDisconnectsPrematurelyWithChunkedEncoding (line 393) | @Test public void serverDisconnectsPrematurelyWithChunkedEncoding() th... method serverDisconnectsPrematurelyWithNoLengthHeaders (line 397) | @Test public void serverDisconnectsPrematurelyWithNoLengthHeaders() th... method testServerPrematureDisconnect (line 403) | private void testServerPrematureDisconnect(TransferKind transferKind) ... method clientPrematureDisconnectWithContentLengthHeader (line 428) | @Test public void clientPrematureDisconnectWithContentLengthHeader() t... method clientPrematureDisconnectWithChunkedEncoding (line 432) | @Test public void clientPrematureDisconnectWithChunkedEncoding() throw... method clientPrematureDisconnectWithNoLengthHeaders (line 436) | @Test public void clientPrematureDisconnectWithNoLengthHeaders() throw... method testClientPrematureDisconnect (line 440) | private void testClientPrematureDisconnect(TransferKind transferKind) ... method defaultExpirationDateFullyCachedForLessThan24Hours (line 465) | @Test public void defaultExpirationDateFullyCachedForLessThan24Hours()... method defaultExpirationDateConditionallyCached (line 482) | @Test public void defaultExpirationDateConditionallyCached() throws Ex... method defaultExpirationDateFullyCachedForMoreThan24Hours (line 494) | @Test public void defaultExpirationDateFullyCachedForMoreThan24Hours()... method noDefaultExpirationForUrlsWithQueryString (line 510) | @Test public void noDefaultExpirationForUrlsWithQueryString() throws E... method expirationDateInThePastWithLastModifiedHeader (line 522) | @Test public void expirationDateInThePastWithLastModifiedHeader() thro... method expirationDateInThePastWithNoLastModifiedHeader (line 530) | @Test public void expirationDateInThePastWithNoLastModifiedHeader() th... method expirationDateInTheFuture (line 534) | @Test public void expirationDateInTheFuture() throws Exception { method maxAgePreferredWithMaxAgeAndExpires (line 538) | @Test public void maxAgePreferredWithMaxAgeAndExpires() throws Excepti... method maxAgeInThePastWithDateAndLastModifiedHeaders (line 544) | @Test public void maxAgeInThePastWithDateAndLastModifiedHeaders() thro... method maxAgeInThePastWithDateHeaderButNoLastModifiedHeader (line 553) | @Test public void maxAgeInThePastWithDateHeaderButNoLastModifiedHeader... method maxAgeInTheFutureWithDateHeader (line 560) | @Test public void maxAgeInTheFutureWithDateHeader() throws Exception { method maxAgeInTheFutureWithNoDateHeader (line 565) | @Test public void maxAgeInTheFutureWithNoDateHeader() throws Exception { method maxAgeWithLastModifiedButNoServedDate (line 569) | @Test public void maxAgeWithLastModifiedButNoServedDate() throws Excep... method maxAgeInTheFutureWithDateAndLastModifiedHeaders (line 575) | @Test public void maxAgeInTheFutureWithDateAndLastModifiedHeaders() th... method maxAgePreferredOverLowerSharedMaxAge (line 582) | @Test public void maxAgePreferredOverLowerSharedMaxAge() throws Except... method maxAgePreferredOverHigherMaxAge (line 588) | @Test public void maxAgePreferredOverHigherMaxAge() throws Exception { method requestMethodOptionsIsNotCached (line 594) | @Test public void requestMethodOptionsIsNotCached() throws Exception { method requestMethodGetIsCached (line 598) | @Test public void requestMethodGetIsCached() throws Exception { method requestMethodHeadIsNotCached (line 602) | @Test public void requestMethodHeadIsNotCached() throws Exception { method requestMethodPostIsNotCached (line 607) | @Test public void requestMethodPostIsNotCached() throws Exception { method requestMethodPutIsNotCached (line 612) | @Test public void requestMethodPutIsNotCached() throws Exception { method requestMethodDeleteIsNotCached (line 616) | @Test public void requestMethodDeleteIsNotCached() throws Exception { method requestMethodTraceIsNotCached (line 620) | @Test public void requestMethodTraceIsNotCached() throws Exception { method testRequestMethod (line 624) | private void testRequestMethod(String requestMethod, boolean expectCac... method postInvalidatesCache (line 648) | @Test public void postInvalidatesCache() throws Exception { method putInvalidatesCache (line 652) | @Test public void putInvalidatesCache() throws Exception { method deleteMethodInvalidatesCache (line 656) | @Test public void deleteMethodInvalidatesCache() throws Exception { method testMethodInvalidates (line 660) | private void testMethodInvalidates(String requestMethod) throws Except... method postInvalidatesCacheWithUncacheableResponse (line 681) | @Test public void postInvalidatesCacheWithUncacheableResponse() throws... method etag (line 702) | @Test public void etag() throws Exception { method etagAndExpirationDateInThePast (line 708) | @Test public void etagAndExpirationDateInThePast() throws Exception { method etagAndExpirationDateInTheFuture (line 718) | @Test public void etagAndExpirationDateInTheFuture() throws Exception { method cacheControlNoCache (line 724) | @Test public void cacheControlNoCache() throws Exception { method cacheControlNoCacheAndExpirationDateInTheFuture (line 728) | @Test public void cacheControlNoCacheAndExpirationDateInTheFuture() th... method pragmaNoCache (line 737) | @Test public void pragmaNoCache() throws Exception { method pragmaNoCacheAndExpirationDateInTheFuture (line 741) | @Test public void pragmaNoCacheAndExpirationDateInTheFuture() throws E... method cacheControlNoStore (line 750) | @Test public void cacheControlNoStore() throws Exception { method cacheControlNoStoreAndExpirationDateInTheFuture (line 754) | @Test public void cacheControlNoStoreAndExpirationDateInTheFuture() th... method partialRangeResponsesDoNotCorruptCache (line 760) | @Test public void partialRangeResponsesDoNotCorruptCache() throws Exce... method serverReturnsDocumentOlderThanCache (line 778) | @Test public void serverReturnsDocumentOlderThanCache() throws Excepti... method nonIdentityEncodingAndConditionalCache (line 791) | @Test public void nonIdentityEncodingAndConditionalCache() throws Exce... method nonIdentityEncodingAndFullCache (line 797) | @Test public void nonIdentityEncodingAndFullCache() throws Exception { method assertNonIdentityEncodingCached (line 803) | private void assertNonIdentityEncodingCached(MockResponse response) th... method notModifiedSpecifiesEncoding (line 817) | @Test public void notModifiedSpecifiesEncoding() throws Exception { method gzipAndVaryOnAcceptEncoding (line 835) | @Test public void gzipAndVaryOnAcceptEncoding() throws Exception { method conditionalCacheHitIsNotDoublePooled (line 847) | @Test public void conditionalCacheHitIsNotDoublePooled() throws Except... method expiresDateBeforeModifiedDate (line 862) | @Test public void expiresDateBeforeModifiedDate() throws Exception { method requestMaxAge (line 868) | @Test public void requestMaxAge() throws IOException { method requestMinFresh (line 882) | @Test public void requestMinFresh() throws IOException { method requestMaxStale (line 895) | @Test public void requestMaxStale() throws IOException { method requestMaxStaleNotHonoredWithMustRevalidate (line 910) | @Test public void requestMaxStaleNotHonoredWithMustRevalidate() throws... method requestOnlyIfCachedWithNoResponseCached (line 923) | @Test public void requestOnlyIfCachedWithNoResponseCached() throws IOE... method requestOnlyIfCachedWithFullResponseCached (line 934) | @Test public void requestOnlyIfCachedWithFullResponseCached() throws I... method requestOnlyIfCachedWithConditionalResponseCached (line 948) | @Test public void requestOnlyIfCachedWithConditionalResponseCached() t... method requestOnlyIfCachedWithUnhelpfulResponseCached (line 962) | @Test public void requestOnlyIfCachedWithUnhelpfulResponseCached() thr... method requestCacheControlNoCache (line 974) | @Test public void requestCacheControlNoCache() throws Exception { method requestPragmaNoCache (line 989) | @Test public void requestPragmaNoCache() throws Exception { method clientSuppliedIfModifiedSinceWithCachedResult (line 1004) | @Test public void clientSuppliedIfModifiedSinceWithCachedResult() thro... method clientSuppliedIfNoneMatchSinceWithCachedResult (line 1014) | @Test public void clientSuppliedIfNoneMatchSinceWithCachedResult() thr... method assertClientSuppliedCondition (line 1024) | private RecordedRequest assertClientSuppliedCondition(MockResponse see... method setIfModifiedSince (line 1047) | @Test public void setIfModifiedSince() throws Exception { method retainServedDateFormat (line 1063) | @Test public void retainServedDateFormat() throws Exception { method clientSuppliedConditionWithoutCachedResult (line 1092) | @Test public void clientSuppliedConditionWithoutCachedResult() throws ... method authorizationRequestFullyCached (line 1102) | @Test public void authorizationRequestFullyCached() throws Exception { method contentLocationDoesNotPopulateCache (line 1113) | @Test public void contentLocationDoesNotPopulateCache() throws Excepti... method useCachesFalseDoesNotWriteToCache (line 1123) | @Test public void useCachesFalseDoesNotWriteToCache() throws Exception { method useCachesFalseDoesNotReadFromCache (line 1134) | @Test public void useCachesFalseDoesNotReadFromCache() throws Exception { method defaultUseCachesSetsInitialValueOnly (line 1145) | @Test public void defaultUseCachesSetsInitialValueOnly() throws Except... method connectionIsReturnedToPoolAfterConditionalSuccess (line 1161) | @Test public void connectionIsReturnedToPoolAfterConditionalSuccess() ... method statisticsConditionalCacheMiss (line 1177) | @Test public void statisticsConditionalCacheMiss() throws Exception { method statisticsConditionalCacheHit (line 1195) | @Test public void statisticsConditionalCacheHit() throws Exception { method statisticsFullCacheHit (line 1213) | @Test public void statisticsFullCacheHit() throws Exception { method varyMatchesChangedRequestHeaderField (line 1227) | @Test public void varyMatchesChangedRequestHeaderField() throws Except... method varyMatchesUnchangedRequestHeaderField (line 1243) | @Test public void varyMatchesUnchangedRequestHeaderField() throws Exce... method varyMatchesAbsentRequestHeaderField (line 1258) | @Test public void varyMatchesAbsentRequestHeaderField() throws Excepti... method varyMatchesAddedRequestHeaderField (line 1268) | @Test public void varyMatchesAddedRequestHeaderField() throws Exception { method varyMatchesRemovedRequestHeaderField (line 1280) | @Test public void varyMatchesRemovedRequestHeaderField() throws Except... method varyFieldsAreCaseInsensitive (line 1292) | @Test public void varyFieldsAreCaseInsensitive() throws Exception { method varyMultipleFieldsWithMatch (line 1307) | @Test public void varyMultipleFieldsWithMatch() throws Exception { method varyMultipleFieldsWithNoMatch (line 1327) | @Test public void varyMultipleFieldsWithNoMatch() throws Exception { method varyMultipleFieldValuesWithMatch (line 1347) | @Test public void varyMultipleFieldValuesWithMatch() throws Exception { method varyMultipleFieldValuesWithNoMatch (line 1365) | @Test public void varyMultipleFieldValuesWithNoMatch() throws Exception { method varyAsterisk (line 1383) | @Test public void varyAsterisk() throws Exception { method varyAndHttps (line 1393) | @Test public void varyAndHttps() throws Exception { method cachePlusCookies (line 1414) | @Test public void cachePlusCookies() throws Exception { method getHeadersReturnsNetworkEndToEndHeaders (line 1431) | @Test public void getHeadersReturnsNetworkEndToEndHeaders() throws Exc... method getHeadersReturnsCachedHopByHopHeaders (line 1448) | @Test public void getHeadersReturnsCachedHopByHopHeaders() throws Exce... method getHeadersDeletesCached100LevelWarnings (line 1465) | @Test public void getHeadersDeletesCached100LevelWarnings() throws Exc... method getHeadersRetainsCached200LevelWarnings (line 1481) | @Test public void getHeadersRetainsCached200LevelWarnings() throws Exc... method assertCookies (line 1497) | public void assertCookies(URL url, String... expectedCookies) throws E... method cachePlusRange (line 1505) | @Test public void cachePlusRange() throws Exception { method conditionalHitUpdatesCache (line 1512) | @Test public void conditionalHitUpdatesCache() throws Exception { method responseSourceHeaderCached (line 1540) | @Test public void responseSourceHeaderCached() throws IOException { method responseSourceHeaderConditionalCacheFetched (line 1551) | @Test public void responseSourceHeaderConditionalCacheFetched() throws... method responseSourceHeaderConditionalCacheNotFetched (line 1564) | @Test public void responseSourceHeaderConditionalCacheNotFetched() thr... method responseSourceHeaderFetched (line 1575) | @Test public void responseSourceHeaderFetched() throws IOException { method emptyResponseHeaderNameFromCacheIsLenient (line 1582) | @Test public void emptyResponseHeaderNameFromCacheIsLenient() throws E... method testGoldenCacheResponse (line 1601) | @Test public void testGoldenCacheResponse() throws Exception { method writeFile (line 1653) | private void writeFile(File directory, String file, String content) th... method formatDate (line 1664) | private String formatDate(long delta, TimeUnit timeUnit) { method formatDate (line 1668) | private String formatDate(Date date) { method addRequestBodyIfNecessary (line 1674) | private void addRequestBodyIfNecessary(String requestMethod, HttpURLCo... method assertNotCached (line 1684) | private void assertNotCached(MockResponse response) throws Exception { method assertConditionallyCached (line 1694) | private RecordedRequest assertConditionallyCached(MockResponse respons... method assertFullyCached (line 1727) | private void assertFullyCached(MockResponse response) throws Exception { method truncateViolently (line 1741) | private MockResponse truncateViolently(MockResponse response, int numB... method readAscii (line 1756) | private String readAscii(URLConnection connection, int count) throws I... method readAscii (line 1773) | private String readAscii(URLConnection connection) throws IOException { method reliableSkip (line 1777) | private void reliableSkip(InputStream in, int length) throws IOExcepti... method assertGatewayTimeout (line 1783) | private void assertGatewayTimeout(HttpURLConnection connection) throws... type TransferKind (line 1793) | enum TransferKind { method setBody (line 1795) | @Override void setBody(MockResponse response, Buffer content, int ch... method setBody (line 1801) | @Override void setBody(MockResponse response, Buffer content, int ch... method setBody (line 1806) | @Override void setBody(MockResponse response, Buffer content, int ch... method setBody (line 1813) | abstract void setBody(MockResponse response, Buffer content, int chu... method setBody (line 1815) | void setBody(MockResponse response, String content, int chunkSize) t... method toListOrNull (line 1820) | private List toListOrNull(T[] arrayOrNull) { method gzip (line 1825) | public Buffer gzip(String data) throws IOException { FILE: comsat-retrofit/src/main/java/co/paralleluniverse/fibers/retrofit/FiberRestAdapterBuilder.java class FiberRestAdapterBuilder (line 26) | public final class FiberRestAdapterBuilder extends RestAdapter.Builder { method setClient (line 30) | @Override method setClient (line 35) | @Override method setClient (line 41) | public final RestAdapter.Builder setClient(FiberHttpClient client) { method setClient (line 46) | public final RestAdapter.Builder setClient(FiberOkHttpClient client) { method build (line 51) | @Override method providerFor (line 64) | private static Client.Provider providerFor(final Client client) { FILE: comsat-retrofit/src/test/java/co/paralleluniverse/fibers/retrofit/FiberRestAdapterBuilderTest.java class FiberRestAdapterBuilderTest (line 35) | public class FiberRestAdapterBuilderTest { method setUpClass (line 36) | @BeforeClass method testGet (line 52) | @Test method testGetWithOkHttp (line 60) | @Test type MyGitHub (line 70) | @Suspendable method contributors (line 72) | @GET(value = "/repos/{owner}/{repo}/contributors") method waitUrlAvailable (line 77) | public static void waitUrlAvailable(final String url) throws Interrupt... class MyGitHubRunner (line 91) | static class MyGitHubRunner implements SuspendableRunnable { method MyGitHubRunner (line 94) | MyGitHubRunner(MyGitHub github) { method run (line 98) | @Override FILE: comsat-retrofit/src/test/java/co/paralleluniverse/fibers/retrofit/HelloWorldApplication.java class HelloWorldApplication (line 31) | @Singleton method run (line 35) | @Override method get (line 41) | @GET class Contributor (line 47) | public static class Contributor { method Contributor (line 51) | public Contributor(String login, int contributions) { method getLogin (line 56) | @JsonProperty method getContributions (line 61) | @JsonProperty method initialize (line 67) | @Override FILE: comsat-servlet/src/main/java/co/paralleluniverse/fibers/servlet/FiberHttpServlet.java class FiberHttpServlet (line 42) | public class FiberHttpServlet extends HttpServlet { method getServletContext (line 99) | @Override method init (line 104) | @Override method setStackSize (line 135) | protected final void setStackSize(int stackSize) { method getStackSize (line 139) | protected final int getStackSize() { method service (line 143) | @Override class ServletSuspendableRunnable (line 179) | private final static class ServletSuspendableRunnable implements Suspe... method ServletSuspendableRunnable (line 185) | ServletSuspendableRunnable(FiberHttpServlet servlet, AsyncContext ac... method run (line 192) | @Override class ServletRunnable (line 198) | private static class ServletRunnable implements Runnable { method ServletRunnable (line 204) | ServletRunnable(FiberHttpServlet servlet, AsyncContext ac, HttpServl... method run (line 211) | @Override method exec (line 217) | @Suspendable method exec0 (line 244) | @Suspendable method isJetty (line 255) | private static boolean isJetty(ServletConfig config) { method isTomcat (line 259) | private static boolean isTomcat(ServletConfig config) { method getLong (line 263) | private static Long getLong(String propName) { method getBoolean (line 277) | private static Boolean getBoolean(String propName) { method service (line 295) | @Override method doGet (line 357) | @Override method doPost (line 371) | @Override method doPut (line 385) | @Override method doDelete (line 399) | @Override method doOptions (line 414) | @Override method getAllDeclaredMethods (line 468) | private Method[] getAllDeclaredMethods(Class c) { method doTrace (line 491) | @Override method doHead (line 521) | @Override method maybeSetLastModified (line 532) | private void maybeSetLastModified(HttpServletResponse resp, class NoBodyResponse (line 541) | final class NoBodyResponse extends HttpServletResponseWrapper { method NoBodyResponse (line 550) | NoBodyResponse(HttpServletResponse r) { method setContentLength (line 555) | final void setContentLength() { method setContentLength (line 564) | @Override method getOutputStream (line 570) | @Override method getWriter (line 582) | @Override class NoBodyOutputStream (line 600) | final class NoBodyOutputStream extends ServletOutputStream { method NoBodyOutputStream (line 609) | NoBodyOutputStream() {} method getContentLength (line 611) | final int getContentLength() { method write (line 615) | @Override method write (line 620) | @Override FILE: comsat-servlet/src/main/java/co/paralleluniverse/fibers/servlet/FiberHttpServletRequest.java class FiberHttpServletRequest (line 31) | public class FiberHttpServletRequest extends FiberServletRequest impleme... method FiberHttpServletRequest (line 36) | public FiberHttpServletRequest(FiberHttpServlet servlet, javax.servlet... method getReq (line 46) | @Override method getAuthType (line 52) | @Override method getCookies (line 57) | @Override method getDateHeader (line 62) | @Override method getHeader (line 67) | @Override method getHeaders (line 72) | @Override method getHeaderNames (line 77) | @Override method getIntHeader (line 82) | @Override method getMethod (line 87) | @Override method getPathInfo (line 92) | @Override method getPathTranslated (line 97) | @Override method getContextPath (line 102) | @Override method getQueryString (line 107) | @Override method getRemoteUser (line 112) | @Override method isUserInRole (line 117) | @Override method getUserPrincipal (line 122) | @Override method getRequestedSessionId (line 127) | @Override method getRequestURI (line 132) | @Override method getRequestURL (line 137) | @Override method getServletPath (line 142) | @Override method getSession (line 147) | @Override method getSession (line 152) | @Override method isRequestedSessionIdValid (line 157) | @Override method isRequestedSessionIdFromCookie (line 162) | @Override method isRequestedSessionIdFromURL (line 167) | @Override method isRequestedSessionIdFromUrl (line 172) | @Override method authenticate (line 179) | @Override method login (line 184) | @Override method logout (line 189) | @Override method getParts (line 194) | @Override method getPart (line 199) | @Override FILE: comsat-servlet/src/main/java/co/paralleluniverse/fibers/servlet/FiberRequestDispatcher.java class FiberRequestDispatcher (line 28) | class FiberRequestDispatcher implements RequestDispatcher { method FiberRequestDispatcher (line 33) | public FiberRequestDispatcher(String path, AsyncContext ac) { method forward (line 38) | @Override method include (line 52) | @Override method relToAbs (line 57) | public static String relToAbs(HttpServletRequest req, String rel) { method addPaths (line 70) | public static String addPaths(String p1, String p2) { FILE: comsat-servlet/src/main/java/co/paralleluniverse/fibers/servlet/FiberServletContext.java class FiberServletContext (line 40) | class FiberServletContext implements ServletContext { method FiberServletContext (line 44) | public FiberServletContext(ServletContext sc, ThreadLocal cls) { method setUp (line 63) | @Before method tearDown (line 78) | @After method testGet (line 84) | @Test method testRedirect (line 90) | @Test method testForward (line 100) | @Test method testInline (line 111) | public void testInline() throws IOException, InterruptedException, Exc... method testPost (line 116) | @Test method testPut (line 122) | @Test method testDelete (line 136) | @Test method testTrace (line 142) | @Test method testHead (line 150) | @Test method testOptions (line 156) | @Test class FiberTestServlet (line 163) | public static class FiberTestServlet extends FiberHttpServlet { method doPost (line 165) | @Override method doHead (line 174) | @Override method doOptions (line 183) | @Override method doPut (line 192) | @Override method doDelete (line 212) | @Override method doTrace (line 221) | @Override method doGet (line 231) | @Override class FiberForwardServlet (line 243) | public static class FiberForwardServlet extends FiberHttpServlet { method doGet (line 244) | @Override class FiberRedirectServlet (line 255) | public static class FiberRedirectServlet extends FiberHttpServlet { method doGet (line 256) | @Override class FiberInlineServlet (line 267) | public static class FiberInlineServlet extends FiberHttpServlet { method doGet (line 268) | @Override FILE: comsat-shiro/src/test/java/co/paralleluniverse/fibers/shiro/FiberShiroRealmTest.java class FiberShiroRealmTest (line 34) | public class FiberShiroRealmTest { method testSingleRealm (line 36) | @Test method testMultiRealm (line 54) | @Test FILE: comsat-shiro/src/test/java/co/paralleluniverse/fibers/shiro/FiberedRealm.java class FiberedRealm (line 22) | public class FiberedRealm extends AuthorizingRealm { method doGetAuthorizationInfo (line 24) | @Suspendable method doGetAuthenticationInfo (line 44) | @Suspendable FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-async/src/main/java/comsat/sample/actuator/HelloWorldService.java class HelloWorldService (line 24) | @Component method getHelloMessage (line 30) | public String getHelloMessage() { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-async/src/main/java/comsat/sample/actuator/SampleActuatorApplication.java class SampleActuatorApplication (line 27) | @FiberSecureSpringBootApplication method main (line 31) | public static void main(String[] args) throws Exception, InterruptedEx... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-async/src/main/java/comsat/sample/actuator/SampleController.java class SampleController (line 40) | @Controller method helloCallable (line 47) | private Callable> helloCallable(final DeferredResu... method helloCallable (line 65) | @RequestMapping(value = "/callable", method = RequestMethod.GET) method helloDeferred (line 71) | @RequestMapping(value = "/deferred", method = RequestMethod.GET) method ollehCallable (line 89) | private Callable> ollehCallable(final Message mess... method ollehCallable (line 110) | @RequestMapping(value = "/callable", method = RequestMethod.POST) method ollehDeferred (line 116) | @RequestMapping(value = "/deferred", method = RequestMethod.POST) method fooCallable (line 134) | private Callable fooCallable(final DeferredResult optD... method fooCallable (line 150) | @RequestMapping("/callable/foo") method fooDeferred (line 156) | @RequestMapping("/deferred/foo") class Message (line 174) | protected static class Message { method getValue (line 179) | public String getValue() { method setValue (line 183) | public void setValue(String value) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-async/src/main/java/comsat/sample/actuator/ServiceProperties.java class ServiceProperties (line 24) | @ConfigurationProperties(prefix = "service", ignoreUnknownFields = false) method getName (line 30) | public String getName() { method setName (line 34) | public void setName(String name) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-async/src/test/java/comsat/sample/actuator/SampleActuatorApplicationTests.java class SampleActuatorApplicationTests (line 54) | @Category(CI.class) method emptyIfNull (line 68) | private String emptyIfNull(String s) { method testHomeIsSecure (line 72) | private void testHomeIsSecure(final String path) throws Exception { method testHomeIsSecureDeferred (line 84) | @Test method testHomeIsSecureCallable (line 89) | @Test method testMetricsIsSecure (line 94) | @Test method testHome (line 111) | private void testHome(final String path) throws Exception { method testHomeDeferred (line 121) | @Test method testHomeCallable (line 126) | @Test method testMetrics (line 131) | @Test method testEnv (line 145) | @Test method testHealth (line 156) | @Test method testErrorPage (line 165) | private void testErrorPage(final String path) throws Exception { method testErrorPageDeferred (line 174) | @Test method testErrorPageCallable (line 179) | @Test method testHtmlErrorPage (line 184) | private void testHtmlErrorPage(final String path) throws Exception { method testHtmlErrorPageDeferred (line 198) | @Test method testHtmlErrorPageCallable (line 203) | @Test method testTrace (line 208) | @Test method testErrorPageDirectAccess (line 225) | @Test method testBeans (line 237) | @Test method getPassword (line 250) | private String getPassword() { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-log4j/src/main/java/comsat/sample/actuator/log4j/HelloWorldService.java class HelloWorldService (line 24) | @Component method getHelloMessage (line 30) | public String getHelloMessage() { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-log4j/src/main/java/comsat/sample/actuator/log4j/SampleActuatorApplication.java class SampleActuatorApplication (line 26) | @FiberSpringBootApplication method main (line 30) | public static void main(String[] args) throws Exception, InterruptedEx... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-log4j/src/main/java/comsat/sample/actuator/log4j/SampleController.java class SampleController (line 30) | @Controller method helloWorld (line 36) | @RequestMapping("/") method foo (line 44) | @RequestMapping("/foo") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-log4j/src/main/java/comsat/sample/actuator/log4j/ServiceProperties.java class ServiceProperties (line 24) | @ConfigurationProperties(prefix = "service", ignoreUnknownFields = false) method getName (line 30) | public String getName() { method setName (line 34) | public void setName(String name) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-log4j/src/test/java/comsat/sample/actuator/log4j/SampleActuatorApplicationTests.java class SampleActuatorApplicationTests (line 40) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 50) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-log4j2/src/main/java/comsat/sample/actuator/log4j2/HelloWorldService.java class HelloWorldService (line 26) | @Component method getHelloMessage (line 31) | public String getHelloMessage() throws InterruptedException, SuspendEx... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-log4j2/src/main/java/comsat/sample/actuator/log4j2/SampleActuatorLog4J2Application.java class SampleActuatorLog4J2Application (line 26) | @FiberSpringBootApplication method main (line 30) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-log4j2/src/main/java/comsat/sample/actuator/log4j2/SampleController.java class SampleController (line 31) | @Controller method helloWorld (line 36) | @RequestMapping("/") method foo (line 42) | @RequestMapping("/foo") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-log4j2/src/main/java/comsat/sample/actuator/log4j2/ServiceProperties.java class ServiceProperties (line 24) | @ConfigurationProperties(prefix = "service", ignoreUnknownFields = false) method getName (line 29) | public String getName() { method setName (line 33) | public void setName(String name) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-log4j2/src/test/java/comsat/sample/actuator/log4j2/SampleActuatorApplicationTests.java class SampleActuatorApplicationTests (line 42) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 51) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-ui/src/main/java/comsat/sample/actuator/ui/SampleActuatorUiApplication.java class SampleActuatorUiApplication (line 32) | @Controller method home (line 35) | @RequestMapping("/") method foo (line 44) | @RequestMapping("/foo") method main (line 50) | public static void main(String[] args) throws Exception { method securityProperties (line 54) | @Bean FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-ui/src/test/java/comsat/sample/actuator/ui/SampleActuatorUiApplicationPortTests.java class SampleActuatorUiApplicationPortTests (line 42) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 58) | @Test method testMetrics (line 65) | @Test method testHealth (line 73) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator-ui/src/test/java/comsat/sample/actuator/ui/SampleActuatorUiApplicationTests.java class SampleActuatorUiApplicationTests (line 48) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 58) | @Test method testCss (line 70) | @Test method testMetrics (line 78) | @Test method testError (line 86) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator/src/main/java/comsat/sample/actuator/HelloWorldService.java class HelloWorldService (line 24) | @Component method getHelloMessage (line 30) | public String getHelloMessage() { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator/src/main/java/comsat/sample/actuator/SampleActuatorApplication.java class SampleActuatorApplication (line 28) | @FiberSecureSpringBootApplication method main (line 33) | public static void main(String[] args) throws Exception, InterruptedEx... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator/src/main/java/comsat/sample/actuator/SampleController.java class SampleController (line 36) | @Controller method helloThreadBlocking (line 43) | @RequestMapping(value = "/helloThreadBlocking", method = RequestMethod... method hello (line 51) | @RequestMapping(value = "/", method = RequestMethod.GET) method olleh (line 60) | @RequestMapping(value = "/", method = RequestMethod.POST) method foo (line 71) | @RequestMapping("/foo") class Message (line 78) | protected static class Message { method getValue (line 83) | public String getValue() { method setValue (line 87) | public void setValue(String value) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator/src/main/java/comsat/sample/actuator/ServiceProperties.java class ServiceProperties (line 24) | @ConfigurationProperties(prefix = "service", ignoreUnknownFields = false) method getName (line 30) | public String getName() { method setName (line 34) | public void setName(String name) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-actuator/src/test/java/comsat/sample/actuator/SampleActuatorApplicationTests.java class SampleActuatorApplicationTests (line 53) | @Category(CI.class) method testHomeIsSecure (line 66) | @Test method testMetricsIsSecure (line 77) | @Test method testHome (line 90) | @Test method testHomeThreadBlocking (line 100) | @Test method testMetrics (line 110) | @Test method testEnv (line 121) | @Test method testHealth (line 131) | @Test method testErrorPage (line 138) | @Test method testHtmlErrorPage (line 147) | @Test method testTrace (line 159) | @Test method testErrorPageDirectAccess (line 173) | @Test method testBeans (line 184) | @Test method getPassword (line 195) | private String getPassword() { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/SampleDataJpaApplication.java class SampleDataJpaApplication (line 24) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 26) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/domain/City.java class City (line 28) | @Entity method City (line 49) | protected City() { method City (line 52) | public City(String name, String country) { method getName (line 58) | public String getName() { method getState (line 62) | public String getState() { method getCountry (line 66) | public String getCountry() { method getMap (line 70) | public String getMap() { method toString (line 74) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/domain/Hotel.java class Hotel (line 34) | @Entity method Hotel (line 60) | protected Hotel() { method Hotel (line 63) | public Hotel(City city, String name) { method getCity (line 68) | public City getCity() { method getName (line 72) | public String getName() { method getAddress (line 76) | public String getAddress() { method getZip (line 80) | public String getZip() { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/domain/HotelSummary.java class HotelSummary (line 26) | public class HotelSummary implements Serializable { method HotelSummary (line 41) | public HotelSummary(City city, String name, Double averageRating) { method getCity (line 50) | public City getCity() { method getName (line 54) | public String getName() { method getAverageRating (line 58) | public Double getAverageRating() { method getAverageRatingRounded (line 62) | public Integer getAverageRatingRounded() { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/domain/Rating.java type Rating (line 21) | public enum Rating { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/domain/RatingCount.java class RatingCount (line 23) | public class RatingCount implements Serializable { method RatingCount (line 31) | public RatingCount(Rating rating, long count) { method getRating (line 36) | public Rating getRating() { method getCount (line 40) | public long getCount() { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/domain/Review.java class Review (line 36) | @Entity method Review (line 69) | protected Review() { method Review (line 72) | public Review(Hotel hotel, int index, ReviewDetails details) { method getHotel (line 84) | public Hotel getHotel() { method getIndex (line 88) | public int getIndex() { method getRating (line 92) | public Rating getRating() { method setRating (line 96) | public void setRating(Rating rating) { method getCheckInDate (line 100) | public Date getCheckInDate() { method setCheckInDate (line 104) | public void setCheckInDate(Date checkInDate) { method getTripType (line 108) | public TripType getTripType() { method setTripType (line 112) | public void setTripType(TripType tripType) { method getTitle (line 116) | public String getTitle() { method setTitle (line 120) | public void setTitle(String title) { method getDetails (line 124) | public String getDetails() { method setDetails (line 128) | public void setDetails(String details) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/domain/ReviewDetails.java class ReviewDetails (line 24) | public class ReviewDetails implements Serializable { method ReviewDetails (line 38) | public ReviewDetails() { method getRating (line 41) | public Rating getRating() { method setRating (line 45) | public void setRating(Rating rating) { method getCheckInDate (line 49) | public Date getCheckInDate() { method setCheckInDate (line 53) | public void setCheckInDate(Date checkInDate) { method getTripType (line 57) | public TripType getTripType() { method setTripType (line 61) | public void setTripType(TripType tripType) { method getTitle (line 65) | public String getTitle() { method setTitle (line 69) | public void setTitle(String title) { method getDetails (line 73) | public String getDetails() { method setDetails (line 77) | public void setDetails(String details) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/domain/TripType.java type TripType (line 21) | public enum TripType { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/service/CityRepository.java type CityRepository (line 27) | interface CityRepository extends Repository { method findAll (line 29) | Page findAll(Pageable pageable); method findByNameContainingAndCountryContainingAllIgnoringCase (line 31) | Page findByNameContainingAndCountryContainingAllIgnoringCase(Str... method findByNameAndCountryAllIgnoringCase (line 34) | City findByNameAndCountryAllIgnoringCase(String name, String country); FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/service/CitySearchCriteria.java class CitySearchCriteria (line 25) | public class CitySearchCriteria implements Serializable { method CitySearchCriteria (line 31) | public CitySearchCriteria() { method CitySearchCriteria (line 34) | public CitySearchCriteria(String name) { method getName (line 39) | public String getName() { method setName (line 43) | public void setName(String name) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/service/CityService.java type CityService (line 27) | public interface CityService { method findCities (line 29) | Page findCities(CitySearchCriteria criteria, Pageable pageable); method getCity (line 31) | City getCity(String name, String country); method getHotels (line 33) | Page getHotels(City city, Pageable pageable); FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/service/CityServiceImpl.java class CityServiceImpl (line 32) | @Component("cityService") method CityServiceImpl (line 40) | @Autowired method findCities (line 46) | @Override method getCity (line 69) | @Override method getHotels (line 76) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/service/HotelRepository.java type HotelRepository (line 33) | interface HotelRepository extends Repository { method findByCityAndName (line 35) | Hotel findByCityAndName(City city, String name); method findByCity (line 37) | @Query("select new comsat.sample.data.jpa.domain.HotelSummary(h.city, ... method findRatingCounts (line 41) | @Query("select new comsat.sample.data.jpa.domain.RatingCount(r.rating,... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/service/HotelService.java type HotelService (line 29) | public interface HotelService { method getHotel (line 31) | Hotel getHotel(City city, String name); method getReviews (line 33) | Page getReviews(Hotel hotel, Pageable pageable); method getReview (line 35) | Review getReview(Hotel hotel, int index); method addReview (line 37) | Review addReview(Hotel hotel, ReviewDetails details); method getReviewSummary (line 39) | ReviewsSummary getReviewSummary(Hotel hotel); FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/service/HotelServiceImpl.java class HotelServiceImpl (line 39) | @Component("hotelService") method HotelServiceImpl (line 47) | @Autowired method getHotel (line 54) | @Override method getReviews (line 61) | @Override method getReview (line 67) | @Override method addReview (line 73) | @Override method getReviewSummary (line 79) | @Override class ReviewsSummaryImpl (line 85) | private static class ReviewsSummaryImpl implements ReviewsSummary { method ReviewsSummaryImpl (line 89) | public ReviewsSummaryImpl(List ratingCounts) { method getNumberOfReviewsWithRating (line 96) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/service/ReviewRepository.java type ReviewRepository (line 28) | interface ReviewRepository extends Repository { method findByHotel (line 30) | Page findByHotel(Hotel hotel, Pageable pageable); method findByHotelAndIndex (line 32) | Review findByHotelAndIndex(Hotel hotel, int index); method save (line 34) | Review save(Review review); FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/service/ReviewsSummary.java type ReviewsSummary (line 23) | public interface ReviewsSummary { method getNumberOfReviewsWithRating (line 25) | long getNumberOfReviewsWithRating(Rating rating); FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/main/java/comsat/sample/data/jpa/web/SampleController.java class SampleController (line 31) | @Controller method helloWorld (line 37) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-data-jpa/src/test/java/comsat/sample/data/jpa/SampleDataJpaApplicationTests.java class SampleDataJpaApplicationTests (line 45) | @Category(CI.class) method testHome (line 58) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty-ssl/src/main/java/comsat/sample/jetty/SampleJettySslApplication.java class SampleJettySslApplication (line 25) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 28) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty-ssl/src/main/java/comsat/sample/jetty/service/HelloWorldService.java class HelloWorldService (line 26) | @Component method getHelloMessage (line 31) | public String getHelloMessage() throws InterruptedException, SuspendEx... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty-ssl/src/main/java/comsat/sample/jetty/web/SampleController.java class SampleController (line 29) | @Controller method helloWorld (line 34) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty-ssl/src/test/java/comsat/sample/jetty/SampleJettySslApplicationTests.java class SampleJettySslApplicationTests (line 48) | @Category(CI.class) method testHome (line 59) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty/src/main/java/comsat/sample/jetty/SampleJettyApplication.java class SampleJettyApplication (line 24) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 26) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty/src/main/java/comsat/sample/jetty/service/HelloWorldService.java class HelloWorldService (line 26) | @Component method getHelloMessage (line 32) | public String getHelloMessage() throws InterruptedException, SuspendEx... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty/src/main/java/comsat/sample/jetty/web/SampleController.java class SampleController (line 28) | @Controller method helloWorld (line 34) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty/src/test/java/comsat/sample/jetty/SampleJettyApplicationTests.java class SampleJettyApplicationTests (line 41) | @Category(CI.class) method testHome (line 51) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty8-ssl/src/main/java/comsat/sample/jetty/SampleJetty8SslApplication.java class SampleJetty8SslApplication (line 24) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 26) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty8-ssl/src/main/java/comsat/sample/jetty/service/HelloWorldService.java class HelloWorldService (line 26) | @Component method getHelloMessage (line 31) | public String getHelloMessage() throws InterruptedException, SuspendEx... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty8-ssl/src/main/java/comsat/sample/jetty/web/SampleController.java class SampleController (line 29) | @Controller method helloWorld (line 34) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty8-ssl/src/test/java/comsat/sample/jetty/SampleJetty8SslApplicationTests.java class SampleJetty8SslApplicationTests (line 48) | @Category(CI.class) method testHome (line 58) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty8/src/main/java/comsat/sample/jetty/SampleJetty8Application.java class SampleJetty8Application (line 24) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 26) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty8/src/main/java/comsat/sample/jetty/service/HelloWorldService.java class HelloWorldService (line 26) | @Component method getHelloMessage (line 31) | public String getHelloMessage() throws InterruptedException, SuspendEx... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty8/src/main/java/comsat/sample/jetty/web/SampleController.java class SampleController (line 29) | @Controller method helloWorld (line 34) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jetty8/src/test/java/comsat/sample/jetty/SampleJetty8ApplicationTests.java class SampleJetty8ApplicationTests (line 42) | @Category(CI.class) method testHome (line 52) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/main/java/comsat/sample/jpa/SampleJpaApplication.java class SampleJpaApplication (line 24) | @FiberSpringBootApplication method main (line 26) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/main/java/comsat/sample/jpa/domain/Note.java class Note (line 29) | @Entity method getId (line 42) | public long getId() { method setId (line 46) | public void setId(long id) { method getTitle (line 50) | public String getTitle() { method setTitle (line 54) | public void setTitle(String title) { method getBody (line 58) | public String getBody() { method setBody (line 62) | public void setBody(String body) { method getTags (line 66) | public List getTags() { method setTags (line 70) | public void setTags(List tags) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/main/java/comsat/sample/jpa/domain/Tag.java class Tag (line 29) | @Entity method getId (line 40) | public long getId() { method setId (line 44) | public void setId(long id) { method getName (line 48) | public String getName() { method setName (line 52) | public void setName(String name) { method getNotes (line 56) | public List getNotes() { method setNotes (line 60) | public void setNotes(List notes) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/main/java/comsat/sample/jpa/repository/JpaNoteRepository.java class JpaNoteRepository (line 30) | @Repository method findAll (line 35) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/main/java/comsat/sample/jpa/repository/JpaTagRepository.java class JpaTagRepository (line 30) | @Repository method findAll (line 35) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/main/java/comsat/sample/jpa/repository/NoteRepository.java type NoteRepository (line 25) | public interface NoteRepository { method findAll (line 26) | List findAll(); FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/main/java/comsat/sample/jpa/repository/TagRepository.java type TagRepository (line 25) | public interface TagRepository { method findAll (line 26) | List findAll(); FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/main/java/comsat/sample/jpa/web/IndexController.java class IndexController (line 34) | @Controller method index (line 39) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/test/java/comsat/sample/jpa/SampleJpaApplicationTests.java class SampleJpaApplicationTests (line 43) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 51) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/test/java/comsat/sample/jpa/repository/JpaNoteRepositoryIntegrationTests.java class JpaNoteRepositoryIntegrationTests (line 39) | @RunWith(SpringJUnit4ClassRunner.class) method findsAllNotes (line 45) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-jpa/src/test/java/comsat/sample/jpa/repository/JpaTagRepositoryIntegrationTests.java class JpaTagRepositoryIntegrationTests (line 39) | @RunWith(SpringJUnit4ClassRunner.class) method findsAllTags (line 45) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-servlet/src/main/java/comsat/sample/servlet/SampleServletApplication.java class SampleServletApplication (line 39) | @Configuration method dispatcherServlet (line 42) | @SuppressWarnings("serial") method main (line 60) | public static void main(String[] args) throws Exception { method configure (line 64) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-servlet/src/test/java/comsat/sample/servlet/SampleServletApplicationTests.java class SampleServletApplicationTests (line 42) | @RunWith(SpringJUnit4ClassRunner.class) method testHomeIsSecure (line 54) | @Test method testHome (line 60) | @Test method getPassword (line 68) | private String getPassword() { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat-jsp/src/main/java/comsat/sample/jsp/SampleTomcatJspApplication.java class SampleTomcatJspApplication (line 27) | @FiberSpringBootApplication // This will enable fiber-blocking method configure (line 30) | @Override method main (line 35) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat-jsp/src/main/java/comsat/sample/jsp/WelcomeController.java class WelcomeController (line 30) | @Controller method welcome (line 36) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat-jsp/src/test/java/comsat/sample/jsp/SampleWebJspApplicationTests.java class SampleWebJspApplicationTests (line 41) | @RunWith(SpringJUnit4ClassRunner.class) method testJspWithEl (line 50) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat-multi-connectors/src/main/java/comsat/sample/tomcat/SampleTomcatTwoConnectorsApplication.java class SampleTomcatTwoConnectorsApplication (line 42) | @FiberSpringBootApplication // This will enable fiber-blocking method port (line 44) | @Bean method servletContainer (line 49) | @Bean method createSslConnector (line 56) | private Connector createSslConnector() { method getKeyStoreFile (line 78) | private File getKeyStoreFile() throws IOException { method main (line 89) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat-multi-connectors/src/main/java/comsat/sample/tomcat/web/SampleController.java class SampleController (line 26) | @RestController method helloWorld (line 29) | @RequestMapping("/hello") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat-multi-connectors/src/test/java/comsat/sample/tomcat/SampleTomcatTwoConnectorsApplicationTests.java class SampleTomcatTwoConnectorsApplicationTests (line 56) | @RunWith(SpringJUnit4ClassRunner.class) method setUp (line 69) | @BeforeClass method testHello (line 100) | @Test class MySimpleClientHttpRequestFactory (line 128) | class MySimpleClientHttpRequestFactory extends SimpleClientHttpRequest... method MySimpleClientHttpRequestFactory (line 132) | public MySimpleClientHttpRequestFactory(final HostnameVerifier verif... method prepareConnection (line 136) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat-ssl/src/main/java/comsat/sample/tomcat/SampleTomcatSslApplication.java class SampleTomcatSslApplication (line 25) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 28) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat-ssl/src/main/java/comsat/sample/tomcat/web/SampleController.java class SampleController (line 27) | @Controller method helloWorld (line 29) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat-ssl/src/test/java/comsat/sample/tomcat/SampleTomcatSslApplicationTests.java class SampleTomcatSslApplicationTests (line 41) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 51) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat/src/main/java/comsat/sample/tomcat/SampleTomcatApplication.java class SampleTomcatApplication (line 30) | @FiberSpringBootApplication // This will enable fiber-blocking method listener (line 35) | @Bean method main (line 50) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat/src/main/java/comsat/sample/tomcat/service/HelloWorldService.java class HelloWorldService (line 24) | @Component method getHelloMessage (line 30) | public String getHelloMessage() { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat/src/main/java/comsat/sample/tomcat/web/SampleController.java class SampleController (line 29) | @Controller method helloWorld (line 34) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat/src/test/java/comsat/sample/tomcat/NonAutoConfigurationSampleTomcatApplicationTests.java class NonAutoConfigurationSampleTomcatApplicationTests (line 52) | @RunWith(SpringJUnit4ClassRunner.class) class NonAutoConfigurationSampleTomcatApplication (line 62) | @Configuration method main (line 71) | public static void main(String[] args) throws Exception { method testHome (line 76) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat/src/test/java/comsat/sample/tomcat/SampleTomcatApplicationTests.java class SampleTomcatApplicationTests (line 41) | @Category(CI.class) method testHome (line 52) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat7-jsp/src/main/java/comsat/sample/jsp/SampleTomcat7JspApplication.java class SampleTomcat7JspApplication (line 27) | @FiberSpringBootApplication // This will enable fiber-blocking method configure (line 30) | @Override method main (line 35) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat7-jsp/src/main/java/comsat/sample/jsp/WelcomeController.java class WelcomeController (line 30) | @Controller method welcome (line 35) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-tomcat7-jsp/src/test/java/comsat/sample/jsp/SampleWebJspApplicationTests.java class SampleWebJspApplicationTests (line 43) | @Category(CI.class) method testJspWithEl (line 53) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-traditional/src/main/java/comsat/sample/traditional/SampleTraditionalApplication.java class SampleTraditionalApplication (line 29) | @Configuration method main (line 34) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-traditional/src/main/java/comsat/sample/traditional/config/WebConfig.java class WebConfig (line 31) | @EnableWebMvc method addViewControllers (line 35) | @Override method viewResolver (line 40) | @Bean method dispatcherServlet (line 48) | @Bean method configureDefaultServletHandling (line 54) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-traditional/src/test/java/comsat/sample/traditional/SampleTraditionalApplicationTests.java class SampleTraditionalApplicationTests (line 41) | @RunWith(SpringJUnit4ClassRunner.class) method testHomeJsp (line 51) | @Test method testStaticPage (line 60) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-undertow-ssl/src/main/java/comsat/sample/undertow/SampleUndertowSslApplication.java class SampleUndertowSslApplication (line 24) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 26) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-undertow-ssl/src/main/java/comsat/sample/undertow/service/HelloWorldService.java class HelloWorldService (line 26) | @Component method getHelloMessage (line 31) | public String getHelloMessage() throws InterruptedException, SuspendEx... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-undertow-ssl/src/main/java/comsat/sample/undertow/web/SampleController.java class SampleController (line 29) | @Controller method helloWorld (line 34) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-undertow-ssl/src/test/java/comsat/sample/undertow/SampleUndertowSslApplicationTests.java class SampleUndertowSslApplicationTests (line 48) | @Category(CI.class) method testHome (line 58) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-undertow/src/main/java/comsat/sample/undertow/SampleUndertowApplication.java class SampleUndertowApplication (line 27) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 31) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-undertow/src/main/java/comsat/sample/undertow/service/HelloWorldService.java class HelloWorldService (line 26) | @Component method getHelloMessage (line 31) | public String getHelloMessage() throws InterruptedException, SuspendEx... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-undertow/src/main/java/comsat/sample/undertow/web/SampleController.java class SampleController (line 31) | @RestController method helloWorld (line 36) | @RequestMapping("/") method helloWorldAsync (line 41) | @RequestMapping("/async") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-undertow/src/test/java/comsat/sample/undertow/SampleUndertowApplicationTests.java class SampleUndertowApplicationTests (line 43) | @Category(CI.class) method testHome (line 53) | @Test method testAsync (line 58) | @Test method assertOkResponse (line 63) | private void assertOkResponse(String path, String body) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-freemarker/src/main/java/comsat/sample/freemarker/SampleWebFreeMarkerApplication.java class SampleWebFreeMarkerApplication (line 24) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 26) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-freemarker/src/main/java/comsat/sample/freemarker/WelcomeController.java class WelcomeController (line 30) | @Controller method welcome (line 36) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-freemarker/src/test/java/comsat/sample/freemarker/SampleWebFreeMarkerApplicationTests.java class SampleWebFreeMarkerApplicationTests (line 48) | @RunWith(SpringJUnit4ClassRunner.class) method testFreeMarkerTemplate (line 58) | @Test method testFreeMarkerErrorTemplate (line 67) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-groovy-templates/src/main/java/comsat/sample/ui/InMemoryMessageRespository.java class InMemoryMessageRespository (line 25) | public class InMemoryMessageRespository implements MessageRepository { method findAll (line 31) | @Override method save (line 36) | @Override method findMessage (line 47) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-groovy-templates/src/main/java/comsat/sample/ui/Message.java class Message (line 25) | public class Message { method getId (line 37) | public Long getId() { method setId (line 41) | public void setId(Long id) { method getCreated (line 45) | public Date getCreated() { method setCreated (line 49) | public void setCreated(Date created) { method getText (line 53) | public String getText() { method setText (line 57) | public void setText(String text) { method getSummary (line 61) | public String getSummary() { method setSummary (line 65) | public void setSummary(String summary) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-groovy-templates/src/main/java/comsat/sample/ui/MessageRepository.java type MessageRepository (line 21) | public interface MessageRepository { method findAll (line 23) | Iterable findAll(); method save (line 25) | Message save(Message message); method findMessage (line 27) | Message findMessage(Long id); FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-groovy-templates/src/main/java/comsat/sample/ui/SampleGroovyTemplateApplication.java class SampleGroovyTemplateApplication (line 28) | @FiberSpringBootApplication // This will enable fiber-blocking method messageRepository (line 31) | @Bean method messageConverter (line 36) | @Bean method main (line 46) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-groovy-templates/src/main/java/comsat/sample/ui/mvc/MessageController.java class MessageController (line 43) | @Controller method MessageController (line 49) | @Autowired method list (line 54) | @RequestMapping method view (line 61) | @RequestMapping("{id}") method createForm (line 67) | @RequestMapping(params = "form", method = RequestMethod.GET) method create (line 73) | @RequestMapping(method = RequestMethod.POST) method getFieldErrors (line 88) | private Map getFieldErrors(BindingResult result) ... method foo (line 97) | @RequestMapping("foo") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-groovy-templates/src/main/resources/static/js/jquery-1.7.2.js function jQuerySub (line 897) | function jQuerySub( selector, context ) { function doScrollCheck (line 963) | function doScrollCheck() { function createFlags (line 990) | function createFlags( flags ) { function resolveFunc (line 1325) | function resolveFunc( i ) { function progressFunc (line 1333) | function progressFunc( i ) { function dataAttr (line 1985) | function dataAttr( elem, key, data ) { function isEmptyDataObject (line 2016) | function isEmptyDataObject( obj ) { function handleQueueMarkDefer (line 2034) | function handleQueueMarkDefer( elem, type, src ) { function resolve (line 2193) | function resolve() { function returnFalse (line 3546) | function returnFalse() { function returnTrue (line 3549) | function returnTrue() { function dirNodeCheck (line 5260) | function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { function dirCheck (line 5293) | function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { function isDisconnected (line 5566) | function isDisconnected( node ) { function winnow (line 5683) | function winnow( elements, qualifier, keep ) { function createSafeFragment (line 5720) | function createSafeFragment( document ) { function root (line 6092) | function root( elem, cur ) { function cloneCopyEvent (line 6099) | function cloneCopyEvent( src, dest ) { function cloneFixAttributes (line 6127) | function cloneFixAttributes( src, dest ) { function getAll (line 6272) | function getAll( elem ) { function fixDefaultChecked (line 6285) | function fixDefaultChecked( elem ) { function findInputs (line 6291) | function findInputs( elem ) { function shimCloneNode (line 6302) | function shimCloneNode( elem ) { function getWidthOrHeight (line 6793) | function getWidthOrHeight( elem, name, extra ) { function addToPrefiltersOrTransports (line 7034) | function addToPrefiltersOrTransports( structure ) { function inspectPrefiltersOrTransports (line 7070) | function inspectPrefiltersOrTransports( structure, options, originalOpti... function ajaxExtend (line 7112) | function ajaxExtend( target, src ) { function done (line 7454) | function done( status, nativeStatusText, responses, headers ) { function buildParams (line 7769) | function buildParams( prefix, obj, traditional, add ) { function ajaxHandleResponses (line 7819) | function ajaxHandleResponses( s, jqXHR, responses ) { function ajaxConvert (line 7884) | function ajaxConvert( s, response ) { function createStandardXHR (line 8149) | function createStandardXHR() { function createActiveXHR (line 8155) | function createActiveXHR() { function doAnimation (line 8494) | function doAnimation() { function stopQueue (line 8650) | function stopQueue( elem, data, index ) { function createFxNow (line 8692) | function createFxNow() { function clearFxNow (line 8697) | function clearFxNow() { function genFx (line 8702) | function genFx( type, num ) { function t (line 8817) | function t( gotoEnd ) { function defaultDisplay (line 9015) | function defaultDisplay( nodeName ) { function getWindow (line 9299) | function getWindow( elem ) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-groovy-templates/src/main/resources/static/js/jquery.validate.js function handle (line 58) | function handle() { function delegate (line 318) | function delegate(event) { function handler (line 1233) | function handler(e) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-groovy-templates/src/test/java/comsat/sample/ui/SampleGroovyTemplateApplicationTests.java class SampleGroovyTemplateApplicationTests (line 48) | @Category(CI.class) method testHome (line 59) | @Test method testCreate (line 70) | @Test method testCreateValidation (line 81) | @Test method testCss (line 93) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-jsp/src/main/java/comsat/sample/jsp/SampleWebJspApplication.java class SampleWebJspApplication (line 26) | @FiberSpringBootApplication // This will enable fiber-blocking method configure (line 28) | @Override method main (line 33) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-jsp/src/main/java/comsat/sample/jsp/WelcomeController.java class WelcomeController (line 30) | @Controller method welcome (line 36) | @RequestMapping("/") method foo (line 44) | @RequestMapping("/foo") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-jsp/src/test/java/comsat/sample/jsp/SampleWebJspApplicationTests.java class SampleWebJspApplicationTests (line 41) | @RunWith(SpringJUnit4ClassRunner.class) method testJspWithEl (line 51) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-method-security/src/main/java/comsat/sample/ui/method/SampleMethodSecurityApplication.java class SampleMethodSecurityApplication (line 46) | @FiberSecureSpringBootApplication // This will enable fiber-blocking class HomeController (line 49) | @Controller method home (line 54) | @RequestMapping("/") method main (line 70) | public static void main(String[] args) throws Exception { method addViewControllers (line 74) | @Override method applicationSecurity (line 80) | @Bean class AuthenticationSecurity (line 85) | @Order(Ordered.HIGHEST_PRECEDENCE) method init (line 88) | @Override class ApplicationSecurity (line 98) | @Order(SecurityProperties.ACCESS_OVERRIDE_ORDER) method configure (line 100) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-method-security/src/test/java/comsat/sample/ui/method/SampleMethodSecurityApplicationTests.java class SampleMethodSecurityApplicationTests (line 53) | @Category(CI.class) method testHome (line 64) | @Test method testLogin (line 76) | @Test method testDenied (line 93) | @Test method testManagementProtected (line 116) | @Test method testManagementAuthorizedAccess (line 123) | @Test method testManagementUnauthorizedAccess (line 130) | @Test method getCsrf (line 137) | private void getCsrf(MultiValueMap form, HttpHeaders h... FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-mustache/src/main/java/comsat/sample/mustache/SampleWebMustacheApplication.java class SampleWebMustacheApplication (line 24) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 26) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-mustache/src/main/java/comsat/sample/mustache/WelcomeController.java class WelcomeController (line 31) | @Controller method welcome (line 37) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-mustache/src/test/java/comsat/sample/mustache/SampleWebMustacheApplicationTests.java class SampleWebMustacheApplicationTests (line 48) | @RunWith(SpringJUnit4ClassRunner.class) method testMustacheTemplate (line 57) | @Test method testMustacheErrorTemplate (line 64) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-secure-custom/src/main/java/comsat/sample/ui/secure/SampleWebSecureCustomApplication.java class SampleWebSecureCustomApplication (line 40) | @FiberSecureSpringBootApplication // This will enable fiber-blocking method home (line 43) | @RequestMapping("/") method foo (line 52) | @RequestMapping("/foo") method main (line 58) | public static void main(String[] args) throws Exception { method addViewControllers (line 62) | @Override method applicationSecurity (line 67) | @Bean class ApplicationSecurity (line 72) | @Order(SecurityProperties.ACCESS_OVERRIDE_ORDER) method configure (line 77) | @Override method configure (line 84) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-secure-custom/src/test/java/comsat/sample/ui/secure/SampleWebSecureCustomApplicationTests.java class SampleWebSecureCustomApplicationTests (line 52) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 62) | @Test method testLoginPage (line 74) | @Test method testLogin (line 86) | @Test method getHeaders (line 105) | private HttpHeaders getHeaders() { method testCss (line 119) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-secure-jdbc/src/main/java/comsat/sample/ui/secure/SampleWebSecureCustomApplication.java class SampleWebSecureCustomApplication (line 42) | @FiberSecureSpringBootApplication // This will enable fiber-blocking method home (line 45) | @RequestMapping("/") method foo (line 54) | @RequestMapping("/foo") method main (line 60) | public static void main(String[] args) throws Exception { method addViewControllers (line 64) | @Override method applicationSecurity (line 69) | @Bean class ApplicationSecurity (line 74) | @Order(SecurityProperties.ACCESS_OVERRIDE_ORDER) method configure (line 82) | @Override method configure (line 89) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-secure-jdbc/src/main/resources/schema.sql type users (line 1) | create table users ( type authorities (line 7) | create table authorities ( FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-secure-jdbc/src/test/java/comsat/sample/ui/secure/SampleWebSecureCustomApplicationTests.java class SampleWebSecureCustomApplicationTests (line 52) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 62) | @Test method testLoginPage (line 74) | @Test method testLogin (line 86) | @Test method getHeaders (line 105) | private HttpHeaders getHeaders() { method testCss (line 119) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-secure/src/main/java/comsat/sample/ui/secure/SampleWebSecureApplication.java class SampleWebSecureApplication (line 40) | @FiberSecureSpringBootApplication // This will enable fiber-blocking method home (line 43) | @RequestMapping("/") method foo (line 52) | @RequestMapping("/foo") method main (line 58) | public static void main(String[] args) throws Exception { method addViewControllers (line 62) | @Override class ApplicationSecurity (line 67) | @Configuration method configure (line 73) | @Override method configure (line 79) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-secure/src/main/resources/schema.sql type users (line 1) | create table users ( type authorities (line 7) | create table authorities ( FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-secure/src/test/java/comsat/sample/ui/secure/SampleSecureApplicationTests.java class SampleSecureApplicationTests (line 52) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 62) | @Test method testLoginPage (line 74) | @Test method testLogin (line 86) | @Test method getHeaders (line 105) | private HttpHeaders getHeaders() { method testCss (line 119) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-static/src/main/java/comsat/sample/ui/SampleWebStaticApplication.java class SampleWebStaticApplication (line 26) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 28) | public static void main(String[] args) throws Exception { method configure (line 32) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-static/src/test/java/comsat/sample/ui/SampleWebStaticApplicationTests.java class SampleWebStaticApplicationTests (line 43) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 53) | @Test method testCss (line 62) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-ui/src/main/java/comsat/sample/ui/InMemoryMessageRepository.java class InMemoryMessageRepository (line 28) | public class InMemoryMessageRepository implements MessageRepository { method findAll (line 34) | @Override method save (line 39) | @Override method findMessage (line 50) | @Override FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-ui/src/main/java/comsat/sample/ui/Message.java class Message (line 28) | public class Message { method getId (line 40) | public Long getId() { method setId (line 44) | public void setId(Long id) { method getCreated (line 48) | public Calendar getCreated() { method setCreated (line 52) | public void setCreated(Calendar created) { method getText (line 56) | public String getText() { method setText (line 60) | public void setText(String text) { method getSummary (line 64) | public String getSummary() { method setSummary (line 68) | public void setSummary(String summary) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-ui/src/main/java/comsat/sample/ui/MessageRepository.java type MessageRepository (line 24) | public interface MessageRepository { method findAll (line 26) | Iterable findAll(); method save (line 28) | Message save(Message message); method findMessage (line 30) | Message findMessage(Long id); FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-ui/src/main/java/comsat/sample/ui/SampleWebUiApplication.java class SampleWebUiApplication (line 26) | @FiberSpringBootApplication // This will enable fiber-blocking method messageRepository (line 28) | @Bean method messageConverter (line 33) | @Bean method main (line 43) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-ui/src/main/java/comsat/sample/ui/mvc/MessageController.java class MessageController (line 41) | @Controller method MessageController (line 47) | @Autowired method list (line 52) | @RequestMapping method view (line 59) | @RequestMapping("{id}") method createForm (line 65) | @RequestMapping(params = "form", method = RequestMethod.GET) method create (line 71) | @RequestMapping(method = RequestMethod.POST) method foo (line 83) | @RequestMapping("foo") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-ui/src/main/resources/static/js/jquery-1.7.2.js function jQuerySub (line 897) | function jQuerySub( selector, context ) { function doScrollCheck (line 963) | function doScrollCheck() { function createFlags (line 990) | function createFlags( flags ) { function resolveFunc (line 1325) | function resolveFunc( i ) { function progressFunc (line 1333) | function progressFunc( i ) { function dataAttr (line 1985) | function dataAttr( elem, key, data ) { function isEmptyDataObject (line 2016) | function isEmptyDataObject( obj ) { function handleQueueMarkDefer (line 2034) | function handleQueueMarkDefer( elem, type, src ) { function resolve (line 2193) | function resolve() { function returnFalse (line 3546) | function returnFalse() { function returnTrue (line 3549) | function returnTrue() { function dirNodeCheck (line 5260) | function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { function dirCheck (line 5293) | function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { function isDisconnected (line 5566) | function isDisconnected( node ) { function winnow (line 5683) | function winnow( elements, qualifier, keep ) { function createSafeFragment (line 5720) | function createSafeFragment( document ) { function root (line 6092) | function root( elem, cur ) { function cloneCopyEvent (line 6099) | function cloneCopyEvent( src, dest ) { function cloneFixAttributes (line 6127) | function cloneFixAttributes( src, dest ) { function getAll (line 6272) | function getAll( elem ) { function fixDefaultChecked (line 6285) | function fixDefaultChecked( elem ) { function findInputs (line 6291) | function findInputs( elem ) { function shimCloneNode (line 6302) | function shimCloneNode( elem ) { function getWidthOrHeight (line 6793) | function getWidthOrHeight( elem, name, extra ) { function addToPrefiltersOrTransports (line 7034) | function addToPrefiltersOrTransports( structure ) { function inspectPrefiltersOrTransports (line 7070) | function inspectPrefiltersOrTransports( structure, options, originalOpti... function ajaxExtend (line 7112) | function ajaxExtend( target, src ) { function done (line 7454) | function done( status, nativeStatusText, responses, headers ) { function buildParams (line 7769) | function buildParams( prefix, obj, traditional, add ) { function ajaxHandleResponses (line 7819) | function ajaxHandleResponses( s, jqXHR, responses ) { function ajaxConvert (line 7884) | function ajaxConvert( s, response ) { function createStandardXHR (line 8149) | function createStandardXHR() { function createActiveXHR (line 8155) | function createActiveXHR() { function doAnimation (line 8494) | function doAnimation() { function stopQueue (line 8650) | function stopQueue( elem, data, index ) { function createFxNow (line 8692) | function createFxNow() { function clearFxNow (line 8697) | function clearFxNow() { function genFx (line 8702) | function genFx( type, num ) { function t (line 8817) | function t( gotoEnd ) { function defaultDisplay (line 9015) | function defaultDisplay( nodeName ) { function getWindow (line 9299) | function getWindow( elem ) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-ui/src/main/resources/static/js/jquery.validate.js function handle (line 58) | function handle() { function delegate (line 318) | function delegate(event) { function handler (line 1233) | function handler(e) { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-ui/src/test/java/comsat/sample/ui/SampleWebUiApplicationTests.java class SampleWebUiApplicationTests (line 46) | @RunWith(SpringJUnit4ClassRunner.class) method testHome (line 56) | @Test method testCreate (line 67) | @Test method testCreateValidation (line 78) | @Test method testCss (line 90) | @Test FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-velocity/src/main/java/comsat/sample/velocity/SampleWebVelocityApplication.java class SampleWebVelocityApplication (line 24) | @FiberSpringBootApplication // This will enable fiber-blocking method main (line 26) | public static void main(String[] args) throws Exception { FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-velocity/src/main/java/comsat/sample/velocity/WelcomeController.java class WelcomeController (line 30) | @Controller method welcome (line 36) | @RequestMapping("/") FILE: comsat-spring/comsat-spring-boot/comsat-spring-boot-sample-web-velocity/src/test/java/comsat/sample/velocity/SampleWebVelocityApplicationTests.java class SampleWebVelocityApplicationTests (line 48) | @RunWith(SpringJUnit4ClassRunner.class) method testVelocityTemplate (line 58) | @Test method testVelocityErrorTemplate (line 67) | @Test FILE: comsat-spring/comsat-spring-boot/src/main/java/co/paralleluniverse/springframework/boot/autoconfigure/web/FiberWebMvcAutoConfiguration.java class FiberWebMvcAutoConfiguration (line 35) | @Configuration FILE: comsat-spring/comsat-spring-security/src/main/java/co/paralleluniverse/springframework/security/config/FiberSecurityContextHolderConfig.java class FiberSecurityContextHolderConfig (line 19) | @Configuration method FiberSecurityContextHolderConfig (line 21) | public FiberSecurityContextHolderConfig() { FILE: comsat-spring/comsat-spring-webmvc/src/main/java/co/paralleluniverse/springframework/web/method/support/FiberInvocableHandlerMethod.java class FiberInvocableHandlerMethod (line 43) | public class FiberInvocableHandlerMethod extends InvocableHandlerMethod { method FiberInvocableHandlerMethod (line 53) | public FiberInvocableHandlerMethod(Object bean, Method method) { method FiberInvocableHandlerMethod (line 57) | public FiberInvocableHandlerMethod(HandlerMethod handlerMethod) { method FiberInvocableHandlerMethod (line 61) | public FiberInvocableHandlerMethod(Object bean, String methodName, Cla... method isBootErrorController (line 68) | private boolean isBootErrorController() { method isSpringTraditionalThreadBlockingControllerMethod (line 75) | private boolean isSpringTraditionalThreadBlockingControllerMethod() { method doInvoke (line 86) | @Override method threadBlockingInvoke (line 95) | protected Object threadBlockingInvoke(Object... args) throws IllegalAc... method fiberDispatchInvoke (line 99) | protected Object fiberDispatchInvoke(final Object... args) { method assertTargetBean (line 149) | private void assertTargetBean(Method method, Object targetBean, Object... method getInvocationErrorMessage (line 161) | private String getInvocationErrorMessage(String message, Object[] reso... FILE: comsat-spring/comsat-spring-webmvc/src/main/java/co/paralleluniverse/springframework/web/servlet/config/annotation/FiberWebMvcConfigurationSupport.java class FiberWebMvcConfigurationSupport (line 42) | @Configuration method fiberRequestMappingHandlerAdapter (line 44) | @Bean FILE: comsat-spring/comsat-spring-webmvc/src/main/java/co/paralleluniverse/springframework/web/servlet/mvc/method/annotation/FiberRequestMappingHandlerAdapter.java class FiberRequestMappingHandlerAdapter (line 143) | public class FiberRequestMappingHandlerAdapter extends AbstractHandlerMe... method FiberRequestMappingHandlerAdapter (line 200) | public FiberRequestMappingHandlerAdapter() { method setCustomArgumentResolvers (line 217) | public void setCustomArgumentResolvers(List getCustomArgumentResolvers() { method setArgumentResolvers (line 232) | public void setArgumentResolvers(List a... method getArgumentResolvers (line 245) | public List getArgumentResolvers() { method setInitBinderArgumentResolvers (line 252) | public void setInitBinderArgumentResolvers(List getInitBinderArgumentResolv... method setCustomReturnValueHandlers (line 274) | public void setCustomReturnValueHandlers(List getCustomReturnValueHandl... method setReturnValueHandlers (line 289) | public void setReturnValueHandlers(List getReturnValueHandlers() { method setModelAndViewResolvers (line 322) | public void setModelAndViewResolvers(List modelA... method getModelAndViewResolvers (line 329) | public List getModelAndViewResolvers() { method setMessageConverters (line 338) | public void setMessageConverters(List> message... method setContentNegotiationManager (line 346) | public void setContentNegotiationManager(ContentNegotiationManager con... method getMessageConverters (line 353) | public List> getMessageConverters() { method setWebBindingInitializer (line 361) | public void setWebBindingInitializer(WebBindingInitializer webBindingI... method getWebBindingInitializer (line 368) | public WebBindingInitializer getWebBindingInitializer() { method setTaskExecutor (line 381) | public void setTaskExecutor(AsyncTaskExecutor taskExecutor) { method setAsyncRequestTimeout (line 396) | public void setAsyncRequestTimeout(long timeout) { method setCallableInterceptors (line 405) | public void setCallableInterceptors(List getDefaultArgumentResolver... method getDefaultInitBinderArgumentResolvers (line 588) | private List getDefaultInitBinderArgume... method getDefaultReturnValueHandlers (line 619) | private List getDefaultReturnValueHan... method initControllerAdviceCache (line 655) | private void initControllerAdviceCache() { method supportsInternal (line 688) | @Override method getLastModifiedInternal (line 699) | @Override method handleInternal (line 704) | @Override method getSessionAttributesHandler (line 734) | private SessionAttributesHandler getSessionAttributesHandler(HandlerMe... method invokeHandleMethod (line 751) | private ModelAndView invokeHandleMethod(HttpServletRequest request, method createRequestMappingMethod (line 793) | private FiberServletInvocableHandlerMethod createRequestMappingMethod( method getModelFactory (line 805) | private ModelFactory getModelFactory(HandlerMethod handlerMethod, WebD... method createModelAttributeMethod (line 830) | private InvocableHandlerMethod createModelAttributeMethod(WebDataBinde... method getDataBinderFactory (line 838) | private WebDataBinderFactory getDataBinderFactory(HandlerMethod handle... method createInitBinderMethod (line 862) | private InvocableHandlerMethod createInitBinderMethod(Object bean, Met... method createDataBinderFactory (line 880) | protected InitBinderDataBinderFactory createDataBinderFactory(List callable) { method doInvoke (line 218) | @Override method getBeanType (line 226) | @Override method getMethodAnnotation (line 234) | @Override FILE: comsat-spring/comsat-spring-webmvc/src/main/java/org/springframework/web/servlet/config/annotation/ServletConfigAnnotationProtectedProxy.java class ServletConfigAnnotationProtectedProxy (line 30) | public class ServletConfigAnnotationProtectedProxy { method getInterceptors (line 34) | public static List getInterceptors(InterceptorRegistry ir) { method getContentNegotiationManager (line 41) | public static ContentNegotiationManager getContentNegotiationManager(C... method getHandlerMapping (line 48) | public static AbstractHandlerMapping getHandlerMapping(ViewControllerR... method getHandlerMappingResource (line 55) | public static AbstractHandlerMapping getHandlerMappingResource(Resourc... method getHandlerMappingDefaultServlet (line 62) | public static AbstractHandlerMapping getHandlerMappingDefaultServlet(D... method getTaskExecutor (line 69) | public static AsyncTaskExecutor getTaskExecutor(AsyncSupportConfigurer... method getTimeout (line 76) | public static Long getTimeout(AsyncSupportConfigurer configurer) { method getDeferredResultInterceptors (line 83) | public static List getDeferredRes... method getCallableInterceptors (line 90) | public static List getCallableIntercept... FILE: comsat-test-utils/src/main/java/co/paralleluniverse/comsat/webactors/AbstractWebActorTest.java class AbstractWebActorTest (line 48) | public abstract class AbstractWebActorTest { method AbstractWebActorTest (line 55) | protected AbstractWebActorTest() { method testHttpMsg (line 63) | @Test method testHttpNotFound (line 75) | @Test method testDie (line 84) | @Test method testHttpRedirect (line 94) | @Test method testWebSocketMsg (line 106) | @Test method testSSE (line 122) | @Test method getSessionIdCookieName (line 158) | protected abstract String getSessionIdCookieName(); method getClientEndPointConfig (line 160) | protected ClientEndpointConfig getClientEndPointConfig(CookieStore cs) { method sendAndGetTextEndPoint (line 164) | private static Endpoint sendAndGetTextEndPoint(final String sendText, ... FILE: comsat-test-utils/src/main/java/co/paralleluniverse/comsat/webactors/MyWebActor.java class MyWebActor (line 25) | public class MyWebActor extends BasicActor { method doRun (line 33) | @Override method wrapAsSSE (line 83) | private SendPort wrapAsSSE(SendPort ac... method postMessage (line 92) | private void postMessage(final WebDataMessage webDataMessage) throws I... method handleLifecycleMessage (line 102) | @Override FILE: comsat-test-utils/src/main/java/co/paralleluniverse/embedded/containers/AbstractEmbeddedServer.java class AbstractEmbeddedServer (line 21) | public abstract class AbstractEmbeddedServer implements EmbeddedServer { method setPort (line 26) | @Override method setNumThreads (line 32) | @Override method setMaxConnections (line 38) | @Override method waitUrlAvailable (line 44) | public static void waitUrlAvailable(final String url) throws Interrupt... FILE: comsat-test-utils/src/main/java/co/paralleluniverse/embedded/containers/EmbeddedServer.java type EmbeddedServer (line 19) | public interface EmbeddedServer { method setPort (line 20) | EmbeddedServer setPort(int port); method setNumThreads (line 21) | EmbeddedServer setNumThreads(int nThreads); method setMaxConnections (line 22) | EmbeddedServer setMaxConnections(int maxConn); method addServlet (line 23) | ServletDesc addServlet(String name, Class servletCl... method addServletContextListener (line 24) | void addServletContextListener(Class cls) { method setUp (line 61) | @Before method tearDown (line 71) | @After method testGet (line 77) | @Test method testPost (line 83) | @Test class TestServlet (line 89) | public static class TestServlet extends HttpServlet { method doPost (line 90) | @Override method doGet (line 97) | @Override method starting (line 109) | @Override method failed (line 117) | @Override method succeeded (line 127) | @Override FILE: comsat-test-war/TestServlet.java class TestServlet (line 14) | @WebServlet(urlPatterns = "/test") method doGet (line 16) | @Override FILE: comsat-test-war/src/main/java/co/paralleluniverse/examples/test/MyFiberServlet.java class MyFiberServlet (line 33) | @WebServlet(urlPatterns = "/", asyncSupported = true) method doGet (line 37) | @Suspendable method lookupDataSourceJDBC (line 48) | public static DataSource lookupDataSourceJDBC(final String name) { FILE: comsat-tomcat-loader/src/main/java/co/paralleluniverse/comsat/tomcat/QuasarWebAppClassLoader.java class QuasarWebAppClassLoader (line 31) | public final class QuasarWebAppClassLoader extends WebappClassLoader { method filter (line 32) | @Override method QuasarWebAppClassLoader (line 47) | public QuasarWebAppClassLoader() {} method QuasarWebAppClassLoader (line 49) | public QuasarWebAppClassLoader(ClassLoader parent) { method newInstrumentor (line 53) | private QuasarInstrumentor newInstrumentor() { method initInstrumentor (line 72) | private synchronized void initInstrumentor() { method findResourceInternal (line 77) | @Override FILE: comsat-tomcat-loader/src/test/java/co/paralleluniverse/embedded/containers/TomcatLoaderTest.java class TomcatLoaderTest (line 32) | public class TomcatLoaderTest { method setUp (line 38) | @Before method tearDown (line 49) | @After method testGetDeployedWar (line 55) | @Test method registerDB (line 64) | public static void registerDB(final Tomcat tomcat, final String name, ... method loadWars (line 81) | public static void loadWars(final Tomcat tomcat, String baseDir, Strin... FILE: docs/_plugins/domain_name.filter.rb type DomainNameFilter (line 7) | module DomainNameFilter function domain_name (line 10) | def domain_name(url) FILE: docs/_plugins/enhanced_kramdown.rb type Kramdown (line 5) | module Kramdown type Converter (line 6) | module Converter class Pygs (line 7) | class Pygs < Html method convert_codeblock (line 8) | def convert_codeblock(el, indent) method add_code_tags (line 22) | def add_code_tags(code) class Hash (line 30) | class Hash method symbolize_keys! (line 31) | def symbolize_keys! method symbolize_keys (line 38) | def symbolize_keys type Jekyll (line 43) | module Jekyll type Converters (line 44) | module Converters class Markdown (line 45) | class Markdown class EnhancedKramdownParser (line 46) | class EnhancedKramdownParser method initialize (line 47) | def initialize(config) method convert (line 51) | def convert(content) FILE: docs/_plugins/exclude_toc.filter.rb type ExcludeTocFilter (line 3) | module ExcludeTocFilter function exclude_toc (line 4) | def exclude_toc(html) FILE: docs/_plugins/include_external.rb type Jekyll (line 1) | module Jekyll class IncludeExternal (line 2) | class IncludeExternal < Liquid::Tag method initialize (line 4) | def initialize(tag_name, text, tokens) method render (line 19) | def render(context) FILE: docs/_plugins/include_snippet.rb type Jekyll (line 21) | module Jekyll class IncludeCodeTag (line 23) | class IncludeCodeTag < Liquid::Tag method initialize (line 26) | def initialize(tag_name, markup, tokens) method render (line 37) | def render(context) FILE: docs/_plugins/markdown_converter.rb type Jekyll (line 1) | module Jekyll type Converters (line 2) | module Converters class Markdown (line 3) | class Markdown < Converter method setup (line 12) | def setup method matches (line 33) | def matches(ext) method output_ext (line 38) | def output_ext(ext) method convert (line 42) | def convert(content) FILE: docs/_plugins/sorted_for.rb type Jekyll (line 1) | module Jekyll class SortedForTag (line 2) | class SortedForTag < Liquid::For method render (line 3) | def render(context) method end_tag (line 15) | def end_tag FILE: docs/_plugins/toc.filter.rb type TocFilter (line 7) | module TocFilter function toc (line 8) | def toc(html) FILE: docs/js/main.js function startScrolling (line 189) | function startScrolling(){ function stopScrolling (line 196) | function stopScrolling(){ function stickBottom (line 199) | function stickBottom(){ function makeSidebarSticky (line 205) | function makeSidebarSticky(){ FILE: docs/js/plugins.js function onResize (line 764) | function onResize(){ function animate (line 829) | function animate(a){$elem.animate(attr,f,g.easing,a&&function(){a.call(t... function both (line 829) | function both(a){return typeof a=='object'?a:{top:a,left:a}} FILE: docs/js/vendor/html5shiv.js function addStyleSheet (line 67) | function addStyleSheet(ownerDocument, cssText) { function getElements (line 80) | function getElements() { function getExpandoData (line 91) | function getExpandoData(ownerDocument) { function createElement (line 109) | function createElement(nodeName, ownerDocument, data){ function createDocumentFragment (line 145) | function createDocumentFragment(ownerDocument, data){ function shivMethods (line 169) | function shivMethods(ownerDocument, data) { function shivDocument (line 207) | function shivDocument(ownerDocument) {