jenkins_url + /api/json?tree=jobs[name,color]
jenkins_url + /job/${job_name}/api/json?tree=builds[number,status,timestamp,id,result]
| yum --enablerepo=base-debuginfo install -y kernel-debuginfo-$(uname -r) |
If you encounter the following:
GitHub rate limit reached. To increase the limit use GitHub authentication.
Run jspm endpoint config github to set this up.
Sources :
| #!/usr/sbin/dtrace -C -s | |
| #pragma D option quiet | |
| proc::posix_spawn:exec-success,proc::__mac_execve:exec-success | |
| { | |
| this->isx64=(curproc->p_flag & P_LP64)!=0; | |
| #define SELECT_64_86(x64, x86) (this->isx64 ? (x64) : (x86)) | |
| #define GET_POINTER(base, offset) (user_addr_t)SELECT_64_86(*(uint64_t*)((base)+sizeof(uint64_t)*(offset)), *(uint32_t*)((base)+sizeof(uint32_t)*(offset))) |