Skip to content

Instantly share code, notes, and snippets.

I0304 19:04:31.767945 1 controller.go:129] cert-manager/controller/certificates "msg"="syncing item" "key"="ns/example-com"
I0304 19:04:31.768199 1 sync.go:367] cert-manager/controller/certificates "msg"="no existing CertificateRequest resource exists, creating new request..." "related_resource_kind"="Secret" "related_resource_name"="example-com-tls" "related_resource_namespace"="ns" "resource_kind"="Certificate" "resource_name"="example-com" "resource_namespace"="ns"
I0304 19:04:31.785297 1 sync.go:379] cert-manager/controller/certificates "msg"="created certificate request" "related_resource_kind"="Secret" "related_resource_name"="example-com-tls" "related_resource_namespace"="ns" "resource_kind"="Certificate" "resource_name"="example-com" "resource_namespace"="ns" "request_name"="example-com-1382433115"
I0304 19:04:31.785348 1 controller.go:129] cert-manager/controller/certificaterequests-issuer-selfsigned "msg"="syncing item" "key"="ns/example-com-1382433115"
I0304 19:04:31.785377

Keybase proof

I hereby claim:

  • I am yan on github.
  • I am yan (https://keybase.io/yan) on keybase.
  • I have a public key whose fingerprint is 1F12 0F43 0A6F CE68 EB21 D918 118F 9F2D 9BE3 69B4

To claim this, I am signing this object:

@yan
yan / gist:11361025
Created April 28, 2014 03:22
Building a new C++11 project with GYP
{
'targets': [
{
'configurations': {
'Debug': { },
'Release': { }
},
'target_name': 'sample',
'type': 'executable',
'include_dirs': [
Index: ScrollView.cpp
===================================================================
--- ScrollView.cpp (revision 119965)
+++ ScrollView.cpp (working copy)
@@ -41,13 +41,18 @@
namespace WebCore {
+inline CString rectToStr(const IntRect &r) {
+ return String::format("(%d,%d,%d,%d)", r.x(), r.y(), r.width(), r.height()).utf8();