- Learning Continuous Integration with Jenkins(Second Edition)
- Nikhil Pathania
- 234字
- 2021-07-02 21:18:25
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning. Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "This will download a .hpi file on your system."
A block of code is set as follows:
stage ('Performance Testing'){
sh '''cd /opt/jmeter/bin/
./jmeter.sh -n -t $WORKSPACE/src/pt/Hello_World_Test_Plan.jmx -l
$WORKSPACE/test_report.jtl''';
step([$class: 'ArtifactArchiver', artifacts: '**/*.jtl'])
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
stage ('Performance Testing'){
sh '''cd /opt/jmeter/bin/
./jmeter.sh -n -t $WORKSPACE/src/pt/Hello_World_Test_Plan.jmx -l
$WORKSPACE/test_report.jtl''';
step([$class: 'ArtifactArchiver', artifacts: '**/*.jtl'])
}
The extra "\" used in some of the commands is used to only indicate that the command continues in the next line. Any command-line input or output is written as follows:
cd /tmp
wget https://archive.apache.org/dist/tomcat/tomcat-8/ \
v8.5.16/bin/apache-tomcat-8.5.16.tar.gz
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "From the Jenkins dashboard, click on the Manage Jenkins | Plugin Manager | Available tab."
Warnings or important notes appear like this.
Tips and tricks appear like this.
- Linux操作系統基礎
- Windows Vista基礎與應用精品教程
- Learning Windows Server Containers
- 無蘋果不生活 OS X Mountain Lion隨身寶典
- SOA實踐者說
- Installing and Configuring Windows 10:70-698 Exam Guide
- Python基礎教程(第3版)
- 移動應用UI設計模式(第2版)
- 竹林蹊徑:深入淺出windows驅動開發
- 網絡操作系統教程:Windows Server 2016管理與配置
- Android物聯網開發細致入門與最佳實踐
- Django Project Blueprints
- 新編電腦辦公(Windows 10+ Office 2013版)從入門到精通
- Learn CUDA Programming
- Web Penetration Testing with Kali Linux(Third Edition)