(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory((global.echarts = {})));
}(this, (function (exports) { 'use strict';
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
// (1) The code `if (__DEV__) ...` can be removed by build tool.
// (2) If intend to use `__DEV__`, this module should be imported. Use a global
// variable `__DEV__` may cause that miss the declaration (see #6535), or the
// declaration is behind of the using position (for example in `Model.extent`,
// And tools like rollup can not analysis the dependency if not import).
var dev;
// In browser
if (typeof window !== 'undefined') {
dev = window.__DEV__;
}
// In node
else if (typeof global !== 'undefined') {
dev = global.__DEV__;
}
if (typeof dev === 'undefined') {
dev = true;
}
var __DEV__ = dev;
/**
* zrender: 生成唯一id
*
* @author errorrik (errorrik@gmail.com)
*/
var idStart = 0x0907;
var guid = function () {
return idStart++;
};
/**
* echarts设备环境识别
*
* @desc echarts基于Canvas,纯Javascript图表库,提供直观,生动,可交互,可个性化定制的数据统计图表。
* @author firede[firede@firede.us]
* @desc thanks zepto.
*/
/* global wx */
var env = {};
if (typeof wx === 'object' && typeof wx.getSystemInfoSync === 'function') {
// In Weixin Application
env = {
browser: {},
os: {},
node: false,
wxa: true, // Weixin Application
canvasSupported: true,
svgSupported: false,
touchEventsSupported: true,
domSupported: false
};
}
else if (typeof document === 'undefined' && typeof self !== 'undefined') {
// In worker
env = {
browser: {},
os: {},
node: false,
worker: true,
canvasSupported: true,
domSupported: false
};
}
else if (typeof navigator === 'undefined') {
// In node
env = {
browser: {},
os: {},
node: true,
worker: false,
// Assume canvas is supported
canvasSupported: true,
svgSupported: true,
domSupported: false
};
}
else {
env = detect(navigator.userAgent);
}
var env$1 = env;
// Zepto.js
// (c) 2010-2013 Thomas Fuchs
// Zepto.js may be freely distributed under the MIT license.
function detect(ua) {
var os = {};
var browser = {};
// var webkit = ua.match(/Web[kK]it[\/]{0,1}([\d.]+)/);
// var android = ua.match(/(Android);?[\s\/]+([\d.]+)?/);
// var ipad = ua.match(/(iPad).*OS\s([\d_]+)/);
// var ipod = ua.match(/(iPod)(.*OS\s([\d_]+))?/);
// var iphone = !ipad && ua.match(/(iPhone\sOS)\s([\d_]+)/);
// var webos = ua.match(/(webOS|hpwOS)[\s\/]([\d.]+)/);
// var touchpad = webos && ua.match(/TouchPad/);
// var kindle = ua.match(/Kindle\/([\d.]+)/);
// var silk = ua.match(/Silk\/([\d._]+)/);
// var blackberry = ua.match(/(BlackBerry).*Version\/([\d.]+)/);
// var bb10 = ua.match(/(BB10).*Version\/([\d.]+)/);
// var rimtabletos = ua.match(/(RIM\sTablet\sOS)\s([\d.]+)/);
// var playbook = ua.match(/PlayBook/);
// var chrome = ua.match(/Chrome\/([\d.]+)/) || ua.match(/CriOS\/([\d.]+)/);
var firefox = ua.match(/Firefox\/([\d.]+)/);
// var safari = webkit && ua.match(/Mobile\//) && !chrome;
// var webview = ua.match(/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/) && !chrome;
var ie = ua.match(/MSIE\s([\d.]+)/)
// IE 11 Trident/7.0; rv:11.0
|| ua.match(/Trident\/.+?rv:(([\d.]+))/);
var edge = ua.match(/Edge\/([\d.]+)/); // IE 12 and 12+
var weChat = (/micromessenger/i).test(ua);
// Todo: clean this up with a better OS/browser seperation:
// - discern (more) between multiple browsers on android
// - decide if kindle fire in silk mode is android or not
// - Firefox on Android doesn't specify the Android version
// - possibly devide in os, device and browser hashes
// if (browser.webkit = !!webkit) browser.version = webkit[1];
// if (android) os.android = true, os.version = android[2];
// if (iphone && !ipod) os.ios = os.iphone = true, os.version = iphone[2].replace(/_/g, '.');
// if (ipad) os.ios = os.ipad = true, os.version = ipad[2].replace(/_/g, '.');
// if (ipod) os.ios = os.ipod = true, os.version = ipod[3] ? ipod[3].replace(/_/g, '.') : null;
// if (webos) os.webos = true, os.version = webos[2];
// if (touchpad) os.touchpad = true;
// if (blackberry) os.blackberry = true, os.version = blackberry[2];
// if (bb10) os.bb10 = true, os.version = bb10[2];
// if (rimtabletos) os.rimtabletos = true, os.version = rimtabletos[2];
// if (playbook) browser.playbook = true;
// if (kindle) os.kindle = true, os.version = kindle[1];
// if (silk) browser.silk = true, browser.version = silk[1];
// if (!silk && os.android && ua.match(/Kindle Fire/)) browser.silk = true;
// if (chrome) browser.chrome = true, browser.version = chrome[1];
if (firefox) {
browser.firefox = true;
browser.version = firefox[1];
}
// if (safari && (ua.match(/Safari/) || !!os.ios)) browser.safari = true;
// if (webview) browser.webview = true;
if (ie) {
browser.ie = true;
browser.version = ie[1];
}
if (edge) {
browser.edge = true;
browser.version = edge[1];
}
// It is difficult to detect WeChat in Win Phone precisely, because ua can
// not be set on win phone. So we do not consider Win Phone.
if (weChat) {
browser.weChat = true;
}
// os.tablet = !!(ipad || playbook || (android && !ua.match(/Mobile/)) ||
// (firefox && ua.match(/Tablet/)) || (ie && !ua.match(/Phone/) && ua.match(/Touch/)));
// os.phone = !!(!os.tablet && !os.ipod && (android || iphone || webos ||
// (chrome && ua.match(/Android/)) || (chrome && ua.match(/CriOS\/([\d.]+)/)) ||
// (firefox && ua.match(/Mobile/)) || (ie && ua.match(/Touch/))));
return {
browser: browser,
os: os,
node: false,
// 原生canvas支持,改极端点了
// canvasSupported : !(browser.ie && parseFloat(browser.version) < 9)
canvasSupported: !!document.createElement('canvas').getContext,
svgSupported: typeof SVGRect !== 'undefined',
// works on most browsers
// IE10/11 does not support touch event, and MS Edge supports them but not by
// default, so we dont check navigator.maxTouchPoints for them here.
touchEventsSupported: 'ontouchstart' in window && !browser.ie && !browser.edge,
// <http://caniuse.com/#search=pointer%20event>.
pointerEventsSupported:
// (1) Firefox supports pointer but not by default, only MS browsers are reliable on pointer
// events currently. So we dont use that on other browsers unless tested sufficiently.
// For example, in iOS 13 Mobile Chromium 78, if the touching behavior starts page
// scroll, the `pointermove` event can not be fired any more. That will break some
// features like "pan horizontally to move something and pa
没有合适的资源?快使用搜索试试~ 我知道了~
Jenkins常用插件库
共1473个文件
js:677个
jar:156个
html:137个
需积分: 0 15 下载量 7 浏览量
2023-03-28
09:14:55
上传
评论 1
收藏 120.66MB ZIP 举报
温馨提示
本插件库不可以单独使用,需要配合的`.jenkins`文件夹(该文件夹为Jenkins启动时自动生成的)使用,具体使用步骤如下: 1,正常通过war包或者其他的方式启动Jenkins; 2,找到Jenkins生成的工作目录`.jenkins`,查看此时的plugins文件夹,大概率为空; 3,将对应文件上传到目录中解压即可;
资源推荐
资源详情
资源评论
收起资源包目录
Jenkins常用插件库 (1473个子文件)
style.css 41KB
glyphicons-halflings-regular.eot 20KB
loading.gif 34KB
combinationfilter_ja.html 2KB
combinationfilter_fr.html 2KB
axes_ru.html 2KB
combinationfilter_de.html 2KB
combinationfilter.html 2KB
combinationfilter_zh_TW.html 2KB
axes_tr.html 2KB
axes_pt_BR.html 2KB
axes_ja.html 1KB
name_ja.html 1KB
axes_fr.html 1KB
axes_de.html 1KB
name.html 1KB
externalDelete_ja.html 1KB
name_fr.html 1KB
axes_nl.html 1KB
specification.html 1KB
externalDelete.html 1KB
specification_ja.html 1KB
advancedFeatures_ja.html 1KB
specification_fr.html 1KB
axes.html 1KB
description.html 1KB
description_ja.html 1KB
disableDeferredWipeout.html 1KB
advancedFeatures_zh_TW.html 1KB
description_fr.html 1KB
advancedFeatures.html 1KB
jdk_ru.html 1KB
axes_zh_TW.html 1021B
jdk_tr.html 1020B
jdk_pt_BR.html 839B
jdk_de.html 803B
listId.html 780B
jdk_ja.html 741B
listId_zh_TW.html 735B
defaultPresendScript.html 727B
jdk_fr.html 715B
jdk_nl.html 697B
defaultPostsendScript.html 696B
jdk.html 649B
allowedDomains.html 607B
jdk_zh_TW.html 602B
sendTo.html 543B
notFailBuild_ja.html 534B
defaultRecipients.html 524B
defaultRecipients_zh_TW.html 495B
watching.html 462B
cleanupMatrixParent.html 408B
recipientList.html 407B
globalRecipientList.html 396B
recipientList_zh_TW.html 388B
globalRecipientList_zh_TW.html 383B
presendScript.html 383B
cleanupParameter_ja.html 380B
postsendScript.html 366B
presendScript_zh_TW.html 353B
defaultRecipients.html 335B
defaultRecipients_zh_TW.html 330B
precedenceBulk.html 323B
replyToList.html 320B
disable.html 301B
replyToList_zh_TW.html 300B
precedenceBulk_zh_TW.html 299B
defaultBody_ja.html 295B
defaultClasspath.html 293B
defaultSubject_ja.html 291B
notFailBuild.html 290B
main_ja.html 287B
allowUnregistered.html 281B
defaultClasspath.html 274B
patterns_ja.html 273B
cleanupParameter.html 273B
debugMode_zh_TW.html 230B
debugMode.html 229B
extraRepo.html 223B
replyToList_zh_TW.html 222B
saveOutput.html 218B
defaultSubject_ja.html 216B
main.html 215B
replyToList.html 215B
defaultSubject.html 211B
ScriptTrigger.html 210B
sparseCheckoutPaths.html 208B
patterns.html 207B
replyToList.html 206B
defaultBody.html 206B
defaultBody_zh_TW.html 203B
defaultSubject_zh_TW.html 203B
main_zh_TW.html 197B
defaultBody_ja.html 196B
excludedRecipients.html 194B
override-global-settings_ja.html 194B
replyToList_zh_TW.html 192B
contentType_ja.html 186B
addATrigger_ja.html 186B
defaultBody.html 178B
共 1473 条
- 1
- 2
- 3
- 4
- 5
- 6
- 15
资源评论
wangyong_qiang
- 粉丝: 1
- 资源: 6
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于甘特图的项目任务进度管理系统
- 华为2024年秋季校园招聘面试题汇总:助力求职之路.zip
- wordcloud-1.8.0-cp35-cp35m-win-amd64.whl
- 电子电路实验项目设计与报告:从理论到实践的全面指南.zip
- jdk-23-windows-x64-bin.zip
- jdk-23-windows-x64-bin.exe
- jdk-23-macos-aarch64-bin.tar.gz
- ISSA多策略改进麻雀优化ISSA-CNN-BiLSTM 多输入单输出回归 python代码 优化参数:filter,unint
- comsol仿真 PEM电解槽三维两相流模拟,包括电化学,两相流传质,析氢析氧,化学反应热等多物理场耦合,软件comsol
- cadance 1.8v LDO电路 cadance virtuoso 设计 模拟电路设计 LDO带隙基准电路设计 带设计报告(
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功