A description of the PL2303HX USB protocol.
Read a device register value.
- bmRequestType: IN, VENDOR, DEVICE
- bRequest: 1
- wValue: 80h | registerNumber
| # Maintainer: Alexander Rødseth <[email protected]> | |
| # Contributor: Richard Hoffman <[email protected]> | |
| # Contributor: Max <[email protected]> | |
| pkgname=google-appengine-go | |
| pkgver=1.9.6 | |
| pkgrel=2 | |
| pkgdesc='Google App Engine SDK for Go' | |
| arch=('x86_64' 'i686') | |
| depends=('python2') |
| #![feature(macro_rules)] | |
| macro_rules! cfor( | |
| ($($ident:ident = $pre:expr),*; $cond:expr; $($post:expr),*; $block:block) => ({ | |
| $( let mut $ident = $pre; )* | |
| while $cond { | |
| $block | |
| $( $post; )* | |
| } | |
| }); | |
| ) |
| <link rel="import" href="../core-menu-button/core-menu-button.html"> | |
| <link rel="import" href="../core-icons/core-icons.html"> | |
| <link rel="import" href="../core-item/core-item.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <my-menu-button icon="more-vert" selected="0" selectedindex="0" id="core_menu_button"> | |
| <p id="p" active>test</p> | |
| <core-item id="core_item" icon="content-cut" label="Cut" horizontal center layout></core-item> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Template</title> | |
| <script src="http://www.polymer-project.org/components/webcomponentsjs/webcomponents.js"></script> | |
| <link rel="import" href="http://www.polymer-project.org/components/polymer/polymer.html"> | |
| </head> | |
| <body> | |
| <polymer-element name="x-test"> |
| FROM gentoo/stage3-amd64 | |
| WORKDIR / | |
| ADD package.accept_keywords etc/portage/ | |
| RUN wget http://distfiles.gentoo.org/snapshots/portage-latest.tar.bz2 && \ | |
| bzcat /portage-latest.tar.bz2 | tar -xf - -C /usr && \ | |
| mkdir -p /usr/portage/distfiles /usr/portage/metadata /usr/portage/packages && \ | |
| rm /portage-latest.tar.bz2 |
| map> | |
| key: value | |
| # Comment | |
| list- | |
| one | |
| two | |
| multiline: | |
| A long sentence | |
| with indentation. |
| #!/usr/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| import json | |
| import logging | |
| import signal | |
| import socket | |
| import sys | |
| import threading | |
| import time |
| diff --git a/tests/01http-server.pl b/tests/01http-server.pl | |
| index eb60bf8b..d8f099b8 100644 | |
| --- a/tests/01http-server.pl | |
| +++ b/tests/01http-server.pl | |
| @@ -47,6 +47,9 @@ sub start_test_server_ssl { | |
| ); | |
| } | |
| +# List of Awaiter structs | |
| +my @pending_awaiters; |
| #!/usr/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| import array | |
| import json | |
| import logging | |
| import random | |
| import signal | |
| import socket | |
| import struct |