gdebug: rerun angular compiler
This commit is contained in:
parent
088c07a9d3
commit
0555ff994f
|
|
@ -297,7 +297,7 @@ module.exports = ""
|
|||
/*! no static exports found */
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = "<h3>Showing channel:</h3>\n<input #textbox type=\"text\" [(ngModel)]=\"enteredData\" (keyup.enter)=\"processEntry()\" required>\n<button (click)=\"processEntry()\">Refresh</button>\n<div>\n <div *ngIf=\"channel\">\n <table>\n <tr>\n <th>Field</th>\n <th>Value</th>\n </tr>\n <tr>\n <td>ChannelRef</td>\n <td><pre>{{channel.getRef().getChannelId()}}[{{channel.getRef().getName()}}]</pre></td>\n </tr>\n <tr>\n <td>Data</td>\n <td><pre>{{channelDataStr}}</pre></td>\n </tr>\n <tr>\n <td>Channels</td>\n <td>\n <div *ngFor=\"let ref of channel.getChannelRefList()\">\n <a routerLink=\"/channelz/channel/{{ref.getChannelId()}}\">{{ref.getChannelId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Subchannels</td>\n <td>\n <div *ngFor=\"let ref of channel.getSubchannelRefList()\">\n <a routerLink=\"/channelz/subchannel/{{ref.getSubchannelId()}}\">{{ref.getSubchannelId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Sockets</td>\n <td>\n <div *ngFor=\"let ref of channel.getSocketRefList()\">\n <a routerLink=\"/channelz/socket/{{ref.getSocketId()}}\">{{ref.getSocketId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Channel trace summary</td>\n <td><pre>{{traceSummary}}</pre></td>\n </tr>\n <tr>\n <td>Channel trace events</td>\n <td>\n <div *ngIf=\"!traceEvents\"><pre>No events recorded</pre></div>\n <div *ngFor=\"let evt of traceEvents\">\n <pre>{{evt.combinedDetails}}</pre>\n <div *ngIf=\"evt.channelRef\">\n <pre> <a routerLink=\"/channelz/channel/{{evt.channelRef.getChannelId()}}\">{{evt.channelRef.getName()}}</a></pre>\n </div>\n <div *ngIf=\"evt.subchannelRef\">\n <pre> <a routerLink=\"/channelz/subchannel/{{evt.subchannelRef.getSubchannelId()}}\">{{evt.subchannelRef.getName()}}</a></pre>\n </div>\n </br>\n </div>\n </td>\n </tr>\n </table>\n </div>\n <div *ngIf=\"!channel && id\">\n <p>Channel does not exist</p>\n </div>\n</div>\n"
|
||||
module.exports = "<h3>Showing channel:</h3>\n<input #textbox type=\"text\" [(ngModel)]=\"enteredData\" (keyup.enter)=\"processEntry()\" required>\n<button (click)=\"processEntry()\">Refresh</button>\n<div>\n <div *ngIf=\"channel\">\n <table>\n <tr>\n <th>Field</th>\n <th>Value</th>\n </tr>\n <tr>\n <td>ChannelRef</td>\n <td><pre>{{channel.getRef().getChannelId()}}[{{channel.getRef().getName()}}]</pre></td>\n </tr>\n <tr>\n <td>Data</td>\n <td><pre>{{channelDataStr}}</pre></td>\n </tr>\n <tr>\n <td>Channels</td>\n <td>\n <div *ngFor=\"let ref of channel.getChannelRefList()\">\n <a routerLink=\"/channelz/channel/{{ref.getChannelId()}}\">{{ref.getChannelId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Subchannels</td>\n <td>\n <div *ngFor=\"let ref of channel.getSubchannelRefList()\">\n <a routerLink=\"/channelz/subchannel/{{ref.getSubchannelId()}}\">{{ref.getSubchannelId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Sockets</td>\n <td>\n <div *ngFor=\"let ref of channel.getSocketRefList()\">\n <a routerLink=\"/channelz/socket/{{ref.getSocketId()}}\">{{ref.getSocketId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Channel trace summary</td>\n <td><pre>{{traceSummary}}</pre></td>\n </tr>\n <tr>\n <td>Channel trace events</td>\n <td>\n <div *ngIf=\"!traceEvents\"><pre>No events recorded</pre></div>\n <div *ngFor=\"let evt of traceEvents\">\n <pre>{{evt.combinedDetails}}</pre>\n <div *ngIf=\"evt.channelRef\">\n <pre> <a routerLink=\"/channelz/channel/{{evt.channelRef.getChannelId()}}\">{{evt.channelRef.getName()}}</a></pre>\n </div>\n <div *ngIf=\"evt.subchannelRef\">\n <pre> <a routerLink=\"/channelz/subchannel/{{evt.subchannelRef.getSubchannelId()}}\">{{evt.subchannelRef.getName()}}</a></pre>\n </div>\n <br>\n </div>\n </td>\n </tr>\n </table>\n </div>\n <div *ngIf=\"!channel && id\">\n <p>Channel does not exist</p>\n </div>\n</div>\n"
|
||||
|
||||
/***/ }),
|
||||
|
||||
|
|
@ -989,7 +989,7 @@ module.exports = ""
|
|||
/*! no static exports found */
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = "<h3>Showing subchannel:</h3>\n<input #textbox type=\"text\" [(ngModel)]=\"enteredData\" (keyup.enter)=\"processEntry()\" required>\n<button (click)=\"processEntry()\">Refresh</button>\n<div>\n <div *ngIf=\"subchannel\">\n <table>\n <tr>\n <th>Field</th>\n <th>Value</th>\n </tr>\n <tr>\n <td>SubchannelRef</td>\n <td><pre>{{subchannel.getRef().getSubchannelId()}}[{{subchannel.getRef().getName()}}]</pre></td>\n </tr>\n <tr>\n <td>Data</td>\n <td><pre>{{subchannelDataStr}}</pre></td>\n </tr>\n <tr>\n <td>Channels</td>\n <td>\n <div *ngFor=\"let ref of subchannel.getChannelRefList()\">\n <a routerLink=\"/channelz/channel/{{ref.getChannelId()}}\">{{ref.getChannelId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Subchannels</td>\n <td>\n <div *ngFor=\"let ref of subchannel.getSubchannelRefList()\">\n <a routerLink=\"/channelz/subchannel/{{ref.getChannelId()}}\">{{ref.getSubchannelId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Sockets</td>\n <td>\n <div *ngFor=\"let ref of subchannel.getSocketRefList()\">\n <a routerLink=\"/channelz/socket/{{ref.getSocketId()}}\">{{ref.getSocketId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Channel trace summary</td>\n <td><pre>{{traceSummary}}</pre></td>\n </tr>\n <tr>\n <td>Channel trace events</td>\n <td>\n <div *ngIf=\"!traceEvents\"><pre>No events recorded</pre></div>\n <div *ngFor=\"let evt of traceEvents\">\n <pre>{{evt.combinedDetails}}</pre>\n <div *ngIf=\"evt.channelRef\">\n <pre> <a routerLink=\"/channelz/channel/{{evt.channelRef.getChannelId()}}\">{{evt.channelRef.getName()}}</a></pre>\n </div>\n <div *ngIf=\"evt.subchannelRef\">\n <pre> <a routerLink=\"/channelz/subchannel/{{evt.subchannelRef.getSubchannelId()}}\">{{evt.subchannelRef.getName()}}</a></pre>\n </div>\n </br>\n </div>\n </td>\n </tr>\n </table>\n </div>\n <div *ngIf=\"!subchannel && id\">\n <p>Subchannel does not exist</p>\n </div>\n</div>\n"
|
||||
module.exports = "<h3>Showing subchannel:</h3>\n<input #textbox type=\"text\" [(ngModel)]=\"enteredData\" (keyup.enter)=\"processEntry()\" required>\n<button (click)=\"processEntry()\">Refresh</button>\n<div>\n <div *ngIf=\"subchannel\">\n <table>\n <tr>\n <th>Field</th>\n <th>Value</th>\n </tr>\n <tr>\n <td>SubchannelRef</td>\n <td><pre>{{subchannel.getRef().getSubchannelId()}}[{{subchannel.getRef().getName()}}]</pre></td>\n </tr>\n <tr>\n <td>Data</td>\n <td><pre>{{subchannelDataStr}}</pre></td>\n </tr>\n <tr>\n <td>Channels</td>\n <td>\n <div *ngFor=\"let ref of subchannel.getChannelRefList()\">\n <a routerLink=\"/channelz/channel/{{ref.getChannelId()}}\">{{ref.getChannelId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Subchannels</td>\n <td>\n <div *ngFor=\"let ref of subchannel.getSubchannelRefList()\">\n <a routerLink=\"/channelz/subchannel/{{ref.getChannelId()}}\">{{ref.getSubchannelId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Sockets</td>\n <td>\n <div *ngFor=\"let ref of subchannel.getSocketRefList()\">\n <a routerLink=\"/channelz/socket/{{ref.getSocketId()}}\">{{ref.getSocketId()}}[{{ref.getName()}}]</a>,\n </div>\n </td>\n </tr>\n <tr>\n <td>Channel trace summary</td>\n <td><pre>{{traceSummary}}</pre></td>\n </tr>\n <tr>\n <td>Channel trace events</td>\n <td>\n <div *ngIf=\"!traceEvents\"><pre>No events recorded</pre></div>\n <div *ngFor=\"let evt of traceEvents\">\n <pre>{{evt.combinedDetails}}</pre>\n <div *ngIf=\"evt.channelRef\">\n <pre> <a routerLink=\"/channelz/channel/{{evt.channelRef.getChannelId()}}\">{{evt.channelRef.getName()}}</a></pre>\n </div>\n <div *ngIf=\"evt.subchannelRef\">\n <pre> <a routerLink=\"/channelz/subchannel/{{evt.subchannelRef.getSubchannelId()}}\">{{evt.subchannelRef.getName()}}</a></pre>\n </div>\n <br>\n </div>\n </td>\n </tr>\n </table>\n </div>\n <div *ngIf=\"!subchannel && id\">\n <p>Subchannel does not exist</p>\n </div>\n</div>\n"
|
||||
|
||||
/***/ }),
|
||||
|
||||
|
|
@ -1476,7 +1476,7 @@ Object(_angular_platform_browser_dynamic__WEBPACK_IMPORTED_MODULE_1__["platformB
|
|||
/*! no static exports found */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
module.exports = __webpack_require__(/*! /usr/local/google/home/spencerfang/git/grpc-experiments/grpc-zpages/web/channelzui/src/main.ts */"./src/main.ts");
|
||||
module.exports = __webpack_require__(/*! /home/spencerfang/git/grpc-experiments/gdebug/web/channelzui/src/main.ts */"./src/main.ts");
|
||||
|
||||
|
||||
/***/ })
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -5472,7 +5472,7 @@ __webpack_require__.r(__webpack_exports__);
|
|||
/*! no static exports found */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
module.exports = __webpack_require__(/*! /usr/local/google/home/spencerfang/git/grpc-experiments/grpc-zpages/web/channelzui/src/polyfills.ts */"./src/polyfills.ts");
|
||||
module.exports = __webpack_require__(/*! /home/spencerfang/git/grpc-experiments/gdebug/web/channelzui/src/polyfills.ts */"./src/polyfills.ts");
|
||||
|
||||
|
||||
/***/ })
|
||||
|
|
|
|||
|
|
@ -4,8 +4,18 @@ $jscomp.polyfill=function(a,b,c,d){if(b){c=$jscomp.global;a=a.split(".");for(d=0
|
|||
$jscomp.polyfill("String.prototype.repeat",function(a){return a?a:function(a){var b=$jscomp.checkStringArgs(this,null,"repeat");if(0>a||1342177279<a)throw new RangeError("Invalid count value");a|=0;for(var d="";a;)if(a&1&&(d+=b),a>>>=1)b+=b;return d}},"es6","es3");$jscomp.findInternal=function(a,b,c){a instanceof String&&(a=String(a));for(var d=a.length,e=0;e<d;e++){var f=a[e];if(b.call(c,f,e,a))return{i:e,v:f}}return{i:-1,v:void 0}};
|
||||
$jscomp.polyfill("Array.prototype.findIndex",function(a){return a?a:function(a,c){return $jscomp.findInternal(this,a,c).i}},"es6","es3");$jscomp.polyfill("Array.prototype.find",function(a){return a?a:function(a,c){return $jscomp.findInternal(this,a,c).v}},"es6","es3");
|
||||
$jscomp.polyfill("String.prototype.endsWith",function(a){return a?a:function(a,c){var b=$jscomp.checkStringArgs(this,a,"endsWith");a+="";void 0===c&&(c=b.length);c=Math.max(0,Math.min(c|0,b.length));for(var e=a.length;0<e&&0<c;)if(b[--c]!=a[--e])return!1;return 0>=e}},"es6","es3");
|
||||
$jscomp.polyfill("String.prototype.startsWith",function(a){return a?a:function(a,c){var b=$jscomp.checkStringArgs(this,a,"startsWith");a+="";var e=b.length,f=a.length;c=Math.max(0,Math.min(c|0,b.length));for(var g=0;g<f&&c<e;)if(b[c++]!=a[g++])return!1;return g>=f}},"es6","es3");var COMPILED=!0,goog=goog||{};goog.global=this;goog.isDef=function(a){return void 0!==a};goog.isString=function(a){return"string"==typeof a};goog.isBoolean=function(a){return"boolean"==typeof a};
|
||||
goog.isNumber=function(a){return"number"==typeof a};goog.exportPath_=function(a,b,c){a=a.split(".");c=c||goog.global;a[0]in c||!c.execScript||c.execScript("var "+a[0]);for(var d;a.length&&(d=a.shift());)!a.length&&goog.isDef(b)?c[d]=b:c=c[d]&&c[d]!==Object.prototype[d]?c[d]:c[d]={}};
|
||||
$jscomp.polyfill("String.prototype.startsWith",function(a){return a?a:function(a,c){var b=$jscomp.checkStringArgs(this,a,"startsWith");a+="";var e=b.length,f=a.length;c=Math.max(0,Math.min(c|0,b.length));for(var g=0;g<f&&c<e;)if(b[c++]!=a[g++])return!1;return g>=f}},"es6","es3");$jscomp.SYMBOL_PREFIX="jscomp_symbol_";$jscomp.initSymbol=function(){$jscomp.initSymbol=function(){};$jscomp.global.Symbol||($jscomp.global.Symbol=$jscomp.Symbol)};
|
||||
$jscomp.Symbol=function(){var a=0;return function(b){return $jscomp.SYMBOL_PREFIX+(b||"")+a++}}();$jscomp.initSymbolIterator=function(){$jscomp.initSymbol();var a=$jscomp.global.Symbol.iterator;a||(a=$jscomp.global.Symbol.iterator=$jscomp.global.Symbol("iterator"));"function"!=typeof Array.prototype[a]&&$jscomp.defineProperty(Array.prototype,a,{configurable:!0,writable:!0,value:function(){return $jscomp.arrayIterator(this)}});$jscomp.initSymbolIterator=function(){}};
|
||||
$jscomp.initSymbolAsyncIterator=function(){$jscomp.initSymbol();var a=$jscomp.global.Symbol.asyncIterator;a||(a=$jscomp.global.Symbol.asyncIterator=$jscomp.global.Symbol("asyncIterator"));$jscomp.initSymbolAsyncIterator=function(){}};$jscomp.arrayIterator=function(a){var b=0;return $jscomp.iteratorPrototype(function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}})};
|
||||
$jscomp.iteratorPrototype=function(a){$jscomp.initSymbolIterator();a={next:a};a[$jscomp.global.Symbol.iterator]=function(){return this};return a};$jscomp.makeIterator=function(a){$jscomp.initSymbolIterator();var b=a[Symbol.iterator];return b?b.call(a):$jscomp.arrayIterator(a)};$jscomp.FORCE_POLYFILL_PROMISE=!1;
|
||||
$jscomp.polyfill("Promise",function(a){function b(){this.batch_=null}function c(a){return a instanceof e?a:new e(function(b,c){b(a)})}if(a&&!$jscomp.FORCE_POLYFILL_PROMISE)return a;b.prototype.asyncExecute=function(a){null==this.batch_&&(this.batch_=[],this.asyncExecuteBatch_());this.batch_.push(a);return this};b.prototype.asyncExecuteBatch_=function(){var a=this;this.asyncExecuteFunction(function(){a.executeBatch_()})};var d=$jscomp.global.setTimeout;b.prototype.asyncExecuteFunction=function(a){d(a,
|
||||
0)};b.prototype.executeBatch_=function(){for(;this.batch_&&this.batch_.length;){var a=this.batch_;this.batch_=[];for(var b=0;b<a.length;++b){var c=a[b];a[b]=null;try{c()}catch(l){this.asyncThrow_(l)}}}this.batch_=null};b.prototype.asyncThrow_=function(a){this.asyncExecuteFunction(function(){throw a;})};var e=function(a){this.state_=0;this.result_=void 0;this.onSettledCallbacks_=[];var b=this.createResolveAndReject_();try{a(b.resolve,b.reject)}catch(k){b.reject(k)}};e.prototype.createResolveAndReject_=
|
||||
function(){function a(a){return function(d){c||(c=!0,a.call(b,d))}}var b=this,c=!1;return{resolve:a(this.resolveTo_),reject:a(this.reject_)}};e.prototype.resolveTo_=function(a){if(a===this)this.reject_(new TypeError("A Promise cannot resolve to itself"));else if(a instanceof e)this.settleSameAsPromise_(a);else{a:switch(typeof a){case "object":var b=null!=a;break a;case "function":b=!0;break a;default:b=!1}b?this.resolveToNonPromiseObj_(a):this.fulfill_(a)}};e.prototype.resolveToNonPromiseObj_=function(a){var b=
|
||||
void 0;try{b=a.then}catch(k){this.reject_(k);return}"function"==typeof b?this.settleSameAsThenable_(b,a):this.fulfill_(a)};e.prototype.reject_=function(a){this.settle_(2,a)};e.prototype.fulfill_=function(a){this.settle_(1,a)};e.prototype.settle_=function(a,b){if(0!=this.state_)throw Error("Cannot settle("+a+", "+b+"): Promise already settled in state"+this.state_);this.state_=a;this.result_=b;this.executeOnSettledCallbacks_()};e.prototype.executeOnSettledCallbacks_=function(){if(null!=this.onSettledCallbacks_){for(var a=
|
||||
0;a<this.onSettledCallbacks_.length;++a)f.asyncExecute(this.onSettledCallbacks_[a]);this.onSettledCallbacks_=null}};var f=new b;e.prototype.settleSameAsPromise_=function(a){var b=this.createResolveAndReject_();a.callWhenSettled_(b.resolve,b.reject)};e.prototype.settleSameAsThenable_=function(a,b){var c=this.createResolveAndReject_();try{a.call(b,c.resolve,c.reject)}catch(l){c.reject(l)}};e.prototype.then=function(a,b){function c(a,b){return"function"==typeof a?function(b){try{d(a(b))}catch(n){f(n)}}:
|
||||
b}var d,f,g=new e(function(a,b){d=a;f=b});this.callWhenSettled_(c(a,d),c(b,f));return g};e.prototype.catch=function(a){return this.then(void 0,a)};e.prototype.callWhenSettled_=function(a,b){function c(){switch(d.state_){case 1:a(d.result_);break;case 2:b(d.result_);break;default:throw Error("Unexpected state: "+d.state_);}}var d=this;null==this.onSettledCallbacks_?f.asyncExecute(c):this.onSettledCallbacks_.push(c)};e.resolve=c;e.reject=function(a){return new e(function(b,c){c(a)})};e.race=function(a){return new e(function(b,
|
||||
d){for(var e=$jscomp.makeIterator(a),f=e.next();!f.done;f=e.next())c(f.value).callWhenSettled_(b,d)})};e.all=function(a){var b=$jscomp.makeIterator(a),d=b.next();return d.done?c([]):new e(function(a,e){function f(b){return function(c){g[b]=c;h--;0==h&&a(g)}}var g=[],h=0;do g.push(void 0),h++,c(d.value).callWhenSettled_(f(g.length-1),e),d=b.next();while(!d.done)})};return e},"es6","es3");var COMPILED=!0,goog=goog||{};goog.global=this;goog.isDef=function(a){return void 0!==a};
|
||||
goog.isString=function(a){return"string"==typeof a};goog.isBoolean=function(a){return"boolean"==typeof a};goog.isNumber=function(a){return"number"==typeof a};goog.exportPath_=function(a,b,c){a=a.split(".");c=c||goog.global;a[0]in c||!c.execScript||c.execScript("var "+a[0]);for(var d;a.length&&(d=a.shift());)!a.length&&goog.isDef(b)?c[d]=b:c=c[d]&&c[d]!==Object.prototype[d]?c[d]:c[d]={}};
|
||||
goog.define=function(a,b){COMPILED||(goog.global.CLOSURE_UNCOMPILED_DEFINES&&void 0===goog.global.CLOSURE_UNCOMPILED_DEFINES.nodeType&&Object.prototype.hasOwnProperty.call(goog.global.CLOSURE_UNCOMPILED_DEFINES,a)?b=goog.global.CLOSURE_UNCOMPILED_DEFINES[a]:goog.global.CLOSURE_DEFINES&&void 0===goog.global.CLOSURE_DEFINES.nodeType&&Object.prototype.hasOwnProperty.call(goog.global.CLOSURE_DEFINES,a)&&(b=goog.global.CLOSURE_DEFINES[a]));goog.exportPath_(a,b)};goog.DEBUG=!0;goog.LOCALE="en";
|
||||
goog.TRUSTED_SITE=!0;goog.STRICT_MODE_COMPATIBLE=!1;goog.DISALLOW_TEST_ONLY_CODE=COMPILED&&!goog.DEBUG;goog.ENABLE_CHROME_APP_SAFE_SCRIPT_LOADING=!1;goog.provide=function(a){if(goog.isInModuleLoader_())throw Error("goog.provide can not be used within a goog.module.");if(!COMPILED&&goog.isProvided_(a))throw Error('Namespace "'+a+'" already declared.');goog.constructNamespace_(a)};
|
||||
goog.constructNamespace_=function(a,b){if(!COMPILED){delete goog.implicitNamespaces_[a];for(var c=a;(c=c.substring(0,c.lastIndexOf(".")))&&!goog.getObjectByName(c);)goog.implicitNamespaces_[c]=!0}goog.exportPath_(a,b)};goog.VALID_MODULE_RE_=/^[a-zA-Z_$][a-zA-Z0-9._$]*$/;
|
||||
|
|
@ -54,7 +64,9 @@ goog.globalEval(b)}},goog.DebugLoader.prototype.writeScriptSrcNode_=function(a){
|
|||
"\x3c/script>");return!0}return!1},goog.DebugLoader.prototype.protectScriptTag_=function(a){return a.replace(/<\/(SCRIPT)/ig,"\\x3c/$1")},goog.DebugLoader.prototype.onScriptLoad_=function(a,b){"complete"==a.readyState&&this.lastNonModuleScriptIndex_==b&&this.loadQueuedModules_();return!0},goog.DebugLoader.prototype.getPathFromDeps_=function(a){return a in this.dependencies_.nameToPath?this.dependencies_.nameToPath[a]:null},goog.DebugLoader.prototype.getTranspiler=function(){return goog.transpiler_},
|
||||
goog.DebugLoader.prototype.isProvided=function(a){return goog.isProvided_(a)},goog.DebugLoader.prototype.inHtmlDocument=function(){return goog.inHtmlDocument_()},goog.DebugLoader.prototype.logToConsole=function(a){goog.logToConsole_(a)},goog.DebugLoader.prototype.loadFileSync=function(a){return goog.loadFileSync_(a)},goog.DebugLoader.prototype.normalizePath=function(a){return goog.normalizePath_(a)},goog.debugLoader_=null,goog.registerDebugLoader=function(a){if(goog.debugLoader_)throw Error("Debug loader already registered!");
|
||||
if(!(a instanceof goog.DebugLoader))throw Error("Not a goog.DebugLoader.");goog.debugLoader_=a},goog.getLoader_=function(){if(!goog.debugLoader_&&goog.DEBUG_LOADER)throw Error("Loaded debug loader file but no loader was registered!");goog.debugLoader_||(goog.debugLoader_=new goog.DebugLoader);return goog.debugLoader_},function(){if(goog.DEBUG_LOADER){var a=new goog.DebugLoader;a.importScript_(goog.basePath+goog.DEBUG_LOADER)}goog.global.CLOSURE_NO_DEPS||(a=a||new goog.DebugLoader,goog.DEBUG_LOADER||
|
||||
goog.registerDebugLoader(a),a.importScript_(goog.basePath+"deps.js"))}());var grpc={web:{}},module$contents$grpc$web$ClientReadableStream_ClientReadableStream=function(){};module$contents$grpc$web$ClientReadableStream_ClientReadableStream.prototype.on=goog.abstractMethod;module$contents$grpc$web$ClientReadableStream_ClientReadableStream.prototype.cancel=goog.abstractMethod;grpc.web.ClientReadableStream=module$contents$grpc$web$ClientReadableStream_ClientReadableStream;var module$contents$grpc$web$Error_Error;grpc.web.Error=module$contents$grpc$web$Error_Error;var module$contents$grpc$web$AbstractClientBase_AbstractClientBase=function(){};module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo=function(a,b,c){this.responseType=a;this.requestSerializeFn=b;this.responseDeserializeFn=c};module$contents$grpc$web$AbstractClientBase_AbstractClientBase.prototype.rpcCall=goog.abstractMethod;module$contents$grpc$web$AbstractClientBase_AbstractClientBase.prototype.serverStreaming=goog.abstractMethod;grpc.web.AbstractClientBase=module$contents$grpc$web$AbstractClientBase_AbstractClientBase;goog.net={};goog.net.EventType={COMPLETE:"complete",SUCCESS:"success",ERROR:"error",ABORT:"abort",READY:"ready",READY_STATE_CHANGE:"readystatechange",TIMEOUT:"timeout",INCREMENTAL_DATA:"incrementaldata",PROGRESS:"progress",DOWNLOAD_PROGRESS:"downloadprogress",UPLOAD_PROGRESS:"uploadprogress"};goog.net.streams={};goog.net.streams.StreamParser=function(){};goog.net.streams.StreamParser.prototype.isInputValid=goog.abstractMethod;goog.net.streams.StreamParser.prototype.getErrorMessage=goog.abstractMethod;goog.net.streams.StreamParser.prototype.parse=goog.abstractMethod;goog.debug={};goog.debug.Error=function(a){if(Error.captureStackTrace)Error.captureStackTrace(this,goog.debug.Error);else{var b=Error().stack;b&&(this.stack=b)}a&&(this.message=String(a));this.reportErrorToServer=!0};goog.inherits(goog.debug.Error,Error);goog.debug.Error.prototype.name="CustomError";goog.dom={};goog.dom.NodeType={ELEMENT:1,ATTRIBUTE:2,TEXT:3,CDATA_SECTION:4,ENTITY_REFERENCE:5,ENTITY:6,PROCESSING_INSTRUCTION:7,COMMENT:8,DOCUMENT:9,DOCUMENT_TYPE:10,DOCUMENT_FRAGMENT:11,NOTATION:12};goog.string={};goog.string.DETECT_DOUBLE_ESCAPING=!1;goog.string.FORCE_NON_DOM_HTML_UNESCAPING=!1;goog.string.Unicode={NBSP:"\u00a0"};goog.string.startsWith=function(a,b){return 0==a.lastIndexOf(b,0)};goog.string.endsWith=function(a,b){var c=a.length-b.length;return 0<=c&&a.indexOf(b,c)==c};goog.string.caseInsensitiveStartsWith=function(a,b){return 0==goog.string.caseInsensitiveCompare(b,a.substr(0,b.length))};
|
||||
goog.registerDebugLoader(a),a.importScript_(goog.basePath+"deps.js"))}());var grpc={web:{}},module$contents$grpc$web$ClientReadableStream_ClientReadableStream=function(){};module$contents$grpc$web$ClientReadableStream_ClientReadableStream.prototype.on=goog.abstractMethod;module$contents$grpc$web$ClientReadableStream_ClientReadableStream.prototype.cancel=goog.abstractMethod;grpc.web.ClientReadableStream=module$contents$grpc$web$ClientReadableStream_ClientReadableStream;var module$contents$grpc$web$Error_Error;grpc.web.Error=module$contents$grpc$web$Error_Error;var module$contents$grpc$web$AbstractClientBase_AbstractClientBase=function(){};module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo=function(a,b,c){this.responseType=a;this.requestSerializeFn=b;this.responseDeserializeFn=c};module$contents$grpc$web$AbstractClientBase_AbstractClientBase.prototype.rpcCall=goog.abstractMethod;module$contents$grpc$web$AbstractClientBase_AbstractClientBase.prototype.serverStreaming=goog.abstractMethod;grpc.web.AbstractClientBase=module$contents$grpc$web$AbstractClientBase_AbstractClientBase;goog.net={};goog.net.ErrorCode={NO_ERROR:0,ACCESS_DENIED:1,FILE_NOT_FOUND:2,FF_SILENT_ERROR:3,CUSTOM_ERROR:4,EXCEPTION:5,HTTP_ERROR:6,ABORT:7,TIMEOUT:8,OFFLINE:9};
|
||||
goog.net.ErrorCode.getDebugMessage=function(a){switch(a){case goog.net.ErrorCode.NO_ERROR:return"No Error";case goog.net.ErrorCode.ACCESS_DENIED:return"Access denied to content document";case goog.net.ErrorCode.FILE_NOT_FOUND:return"File not found";case goog.net.ErrorCode.FF_SILENT_ERROR:return"Firefox silently errored";case goog.net.ErrorCode.CUSTOM_ERROR:return"Application custom error";case goog.net.ErrorCode.EXCEPTION:return"An exception occurred";case goog.net.ErrorCode.HTTP_ERROR:return"Http response at 400 or 500 level";
|
||||
case goog.net.ErrorCode.ABORT:return"Request was aborted";case goog.net.ErrorCode.TIMEOUT:return"Request timed out";case goog.net.ErrorCode.OFFLINE:return"The resource is not available offline";default:return"Unrecognized error code"}};goog.net.EventType={COMPLETE:"complete",SUCCESS:"success",ERROR:"error",ABORT:"abort",READY:"ready",READY_STATE_CHANGE:"readystatechange",TIMEOUT:"timeout",INCREMENTAL_DATA:"incrementaldata",PROGRESS:"progress",DOWNLOAD_PROGRESS:"downloadprogress",UPLOAD_PROGRESS:"uploadprogress"};goog.net.streams={};goog.net.streams.StreamParser=function(){};goog.net.streams.StreamParser.prototype.isInputValid=goog.abstractMethod;goog.net.streams.StreamParser.prototype.getErrorMessage=goog.abstractMethod;goog.net.streams.StreamParser.prototype.parse=goog.abstractMethod;goog.debug={};goog.debug.Error=function(a){if(Error.captureStackTrace)Error.captureStackTrace(this,goog.debug.Error);else{var b=Error().stack;b&&(this.stack=b)}a&&(this.message=String(a));this.reportErrorToServer=!0};goog.inherits(goog.debug.Error,Error);goog.debug.Error.prototype.name="CustomError";goog.dom={};goog.dom.NodeType={ELEMENT:1,ATTRIBUTE:2,TEXT:3,CDATA_SECTION:4,ENTITY_REFERENCE:5,ENTITY:6,PROCESSING_INSTRUCTION:7,COMMENT:8,DOCUMENT:9,DOCUMENT_TYPE:10,DOCUMENT_FRAGMENT:11,NOTATION:12};goog.string={};goog.string.DETECT_DOUBLE_ESCAPING=!1;goog.string.FORCE_NON_DOM_HTML_UNESCAPING=!1;goog.string.Unicode={NBSP:"\u00a0"};goog.string.startsWith=function(a,b){return 0==a.lastIndexOf(b,0)};goog.string.endsWith=function(a,b){var c=a.length-b.length;return 0<=c&&a.indexOf(b,c)==c};goog.string.caseInsensitiveStartsWith=function(a,b){return 0==goog.string.caseInsensitiveCompare(b,a.substr(0,b.length))};
|
||||
goog.string.caseInsensitiveEndsWith=function(a,b){return 0==goog.string.caseInsensitiveCompare(b,a.substr(a.length-b.length,b.length))};goog.string.caseInsensitiveEquals=function(a,b){return a.toLowerCase()==b.toLowerCase()};goog.string.subs=function(a,b){for(var c=a.split("%s"),d="",e=Array.prototype.slice.call(arguments,1);e.length&&1<c.length;)d+=c.shift()+e.shift();return d+c.join("%s")};goog.string.collapseWhitespace=function(a){return a.replace(/[\s\xa0]+/g," ").replace(/^\s+|\s+$/g,"")};
|
||||
goog.string.isEmptyOrWhitespace=function(a){return/^[\s\xa0]*$/.test(a)};goog.string.isEmptyString=function(a){return 0==a.length};goog.string.isEmpty=goog.string.isEmptyOrWhitespace;goog.string.isEmptyOrWhitespaceSafe=function(a){return goog.string.isEmptyOrWhitespace(goog.string.makeSafe(a))};goog.string.isEmptySafe=goog.string.isEmptyOrWhitespaceSafe;goog.string.isBreakingWhitespace=function(a){return!/[^\t\n\r ]/.test(a)};goog.string.isAlpha=function(a){return!/[^a-zA-Z]/.test(a)};
|
||||
goog.string.isNumeric=function(a){return!/[^0-9]/.test(a)};goog.string.isAlphaNumeric=function(a){return!/[^a-zA-Z0-9]/.test(a)};goog.string.isSpace=function(a){return" "==a};goog.string.isUnicodeChar=function(a){return 1==a.length&&" "<=a&&"~">=a||"\u0080"<=a&&"\ufffd">=a};goog.string.stripNewlines=function(a){return a.replace(/(\r\n|\r|\n)+/g," ")};goog.string.canonicalizeNewlines=function(a){return a.replace(/(\r\n|\r|\n)/g,"\n")};
|
||||
|
|
@ -216,7 +228,7 @@ goog.userAgent.VERSION=goog.userAgent.determineVersion_();goog.userAgent.compare
|
|||
goog.userAgent.isDocumentModeOrHigher=function(a){return Number(goog.userAgent.DOCUMENT_MODE)>=a};goog.userAgent.isDocumentMode=goog.userAgent.isDocumentModeOrHigher;goog.userAgent.DOCUMENT_MODE=function(){var a=goog.global.document,b=goog.userAgent.getDocumentMode_();if(a&&goog.userAgent.IE)return b||("CSS1Compat"==a.compatMode?parseInt(goog.userAgent.VERSION,10):5)}();goog.debug.LOGGING_ENABLED=goog.DEBUG;goog.debug.FORCE_SLOPPY_STACKS=!1;goog.debug.catchErrors=function(a,b,c){c=c||goog.global;var d=c.onerror,e=!!b;goog.userAgent.WEBKIT&&!goog.userAgent.isVersionOrHigher("535.3")&&(e=!e);c.onerror=function(b,c,h,k,l){d&&d(b,c,h,k,l);a({message:b,fileName:c,line:h,lineNumber:h,col:k,error:l});return e}};
|
||||
goog.debug.expose=function(a,b){if("undefined"==typeof a)return"undefined";if(null==a)return"NULL";var c=[],d;for(d in a)if(b||!goog.isFunction(a[d])){var e=d+" = ";try{e+=a[d]}catch(f){e+="*** "+f+" ***"}c.push(e)}return c.join("\n")};
|
||||
goog.debug.deepExpose=function(a,b){var c=[],d=[],e={},f=function(a,h){var g=h+" ";try{if(goog.isDef(a))if(goog.isNull(a))c.push("NULL");else if(goog.isString(a))c.push('"'+a.replace(/\n/g,"\n"+h)+'"');else if(goog.isFunction(a))c.push(String(a).replace(/\n/g,"\n"+h));else if(goog.isObject(a)){goog.hasUid(a)||d.push(a);var l=goog.getUid(a);if(e[l])c.push("*** reference loop detected (id="+l+") ***");else{e[l]=!0;c.push("{");for(var m in a)if(b||!goog.isFunction(a[m]))c.push("\n"),c.push(g),c.push(m+
|
||||
" = "),f(a[m],g);c.push("\n"+h+"}");delete e[l]}}else c.push(a);else c.push("undefined")}catch(n){c.push("*** "+n+" ***")}};f(a,"");for(a=0;a<d.length;a++)goog.removeUid(d[a]);return c.join("")};goog.debug.exposeArray=function(a){for(var b=[],c=0;c<a.length;c++)goog.isArray(a[c])?b.push(goog.debug.exposeArray(a[c])):b.push(a[c]);return"[ "+b.join(", ")+" ]"};
|
||||
" = "),f(a[m],g);c.push("\n"+h+"}");delete e[l]}}else c.push(a);else c.push("undefined")}catch(p){c.push("*** "+p+" ***")}};f(a,"");for(a=0;a<d.length;a++)goog.removeUid(d[a]);return c.join("")};goog.debug.exposeArray=function(a){for(var b=[],c=0;c<a.length;c++)goog.isArray(a[c])?b.push(goog.debug.exposeArray(a[c])):b.push(a[c]);return"[ "+b.join(", ")+" ]"};
|
||||
goog.debug.normalizeErrorObject=function(a){var b=goog.getObjectByName("window.location.href");if(goog.isString(a))return{message:a,name:"Unknown error",lineNumber:"Not available",fileName:b,stack:"Not available"};var c=!1;try{var d=a.lineNumber||a.line||"Not available"}catch(f){d="Not available",c=!0}try{var e=a.fileName||a.filename||a.sourceURL||goog.global.$googDebugFname||b}catch(f){e="Not available",c=!0}return!c&&a.lineNumber&&a.fileName&&a.stack&&a.message&&a.name?a:{message:a.message||"Not available",
|
||||
name:a.name||"UnknownError",lineNumber:d,fileName:e,stack:a.stack||"Not available"}};goog.debug.enhanceError=function(a,b){a instanceof Error||(a=Error(a),Error.captureStackTrace&&Error.captureStackTrace(a,goog.debug.enhanceError));a.stack||(a.stack=goog.debug.getStacktrace(goog.debug.enhanceError));if(b){for(var c=0;a["message"+c];)++c;a["message"+c]=String(b)}return a};
|
||||
goog.debug.enhanceErrorWithContext=function(a,b){a=goog.debug.enhanceError(a);if(b)for(var c in b)goog.debug.errorcontext.addErrorContext(a,c,b[c]);return a};
|
||||
|
|
@ -315,9 +327,7 @@ goog.debug.Logger.prototype.callPublish_=function(a){if(this.handlers_)for(var b
|
|||
goog.debug.LogManager.initialize=function(){goog.debug.LogManager.rootLogger_||(goog.debug.LogManager.rootLogger_=new goog.debug.Logger(goog.debug.Logger.ROOT_LOGGER_NAME),goog.debug.LogManager.loggers_[goog.debug.Logger.ROOT_LOGGER_NAME]=goog.debug.LogManager.rootLogger_,goog.debug.LogManager.rootLogger_.setLevel(goog.debug.Logger.Level.CONFIG))};goog.debug.LogManager.getLoggers=function(){return goog.debug.LogManager.loggers_};
|
||||
goog.debug.LogManager.getRoot=function(){goog.debug.LogManager.initialize();return goog.debug.LogManager.rootLogger_};goog.debug.LogManager.getLogger=function(a){goog.debug.LogManager.initialize();return goog.debug.LogManager.loggers_[a]||goog.debug.LogManager.createLogger_(a)};goog.debug.LogManager.createFunctionForCatchErrors=function(a){return function(b){(a||goog.debug.LogManager.getRoot()).severe("Error: "+b.message+" ("+b.fileName+" @ Line: "+b.line+")")}};
|
||||
goog.debug.LogManager.createLogger_=function(a){var b=new goog.debug.Logger(a);if(goog.debug.Logger.ENABLE_HIERARCHY){var c=a.lastIndexOf("."),d=a.substr(0,c);c=a.substr(c+1);d=goog.debug.LogManager.getLogger(d);d.addChild_(c,b);b.setParent_(d)}return goog.debug.LogManager.loggers_[a]=b};goog.log={};goog.log.ENABLED=goog.debug.LOGGING_ENABLED;goog.log.ROOT_LOGGER_NAME=goog.debug.Logger.ROOT_LOGGER_NAME;goog.log.Logger=goog.debug.Logger;goog.log.Level=goog.debug.Logger.Level;goog.log.LogRecord=goog.debug.LogRecord;goog.log.getLogger=function(a,b){return goog.log.ENABLED?(a=goog.debug.LogManager.getLogger(a),b&&a&&a.setLevel(b),a):null};goog.log.addHandler=function(a,b){goog.log.ENABLED&&a&&a.addHandler(b)};
|
||||
goog.log.removeHandler=function(a,b){return goog.log.ENABLED&&a?a.removeHandler(b):!1};goog.log.log=function(a,b,c,d){goog.log.ENABLED&&a&&a.log(b,c,d)};goog.log.error=function(a,b,c){goog.log.ENABLED&&a&&a.severe(b,c)};goog.log.warning=function(a,b,c){goog.log.ENABLED&&a&&a.warning(b,c)};goog.log.info=function(a,b,c){goog.log.ENABLED&&a&&a.info(b,c)};goog.log.fine=function(a,b,c){goog.log.ENABLED&&a&&a.fine(b,c)};goog.net.ErrorCode={NO_ERROR:0,ACCESS_DENIED:1,FILE_NOT_FOUND:2,FF_SILENT_ERROR:3,CUSTOM_ERROR:4,EXCEPTION:5,HTTP_ERROR:6,ABORT:7,TIMEOUT:8,OFFLINE:9};
|
||||
goog.net.ErrorCode.getDebugMessage=function(a){switch(a){case goog.net.ErrorCode.NO_ERROR:return"No Error";case goog.net.ErrorCode.ACCESS_DENIED:return"Access denied to content document";case goog.net.ErrorCode.FILE_NOT_FOUND:return"File not found";case goog.net.ErrorCode.FF_SILENT_ERROR:return"Firefox silently errored";case goog.net.ErrorCode.CUSTOM_ERROR:return"Application custom error";case goog.net.ErrorCode.EXCEPTION:return"An exception occurred";case goog.net.ErrorCode.HTTP_ERROR:return"Http response at 400 or 500 level";
|
||||
case goog.net.ErrorCode.ABORT:return"Request was aborted";case goog.net.ErrorCode.TIMEOUT:return"Request timed out";case goog.net.ErrorCode.OFFLINE:return"The resource is not available offline";default:return"Unrecognized error code"}};goog.net.HttpStatus={CONTINUE:100,SWITCHING_PROTOCOLS:101,OK:200,CREATED:201,ACCEPTED:202,NON_AUTHORITATIVE_INFORMATION:203,NO_CONTENT:204,RESET_CONTENT:205,PARTIAL_CONTENT:206,MULTIPLE_CHOICES:300,MOVED_PERMANENTLY:301,FOUND:302,SEE_OTHER:303,NOT_MODIFIED:304,USE_PROXY:305,TEMPORARY_REDIRECT:307,BAD_REQUEST:400,UNAUTHORIZED:401,PAYMENT_REQUIRED:402,FORBIDDEN:403,NOT_FOUND:404,METHOD_NOT_ALLOWED:405,NOT_ACCEPTABLE:406,PROXY_AUTHENTICATION_REQUIRED:407,REQUEST_TIMEOUT:408,CONFLICT:409,GONE:410,LENGTH_REQUIRED:411,
|
||||
goog.log.removeHandler=function(a,b){return goog.log.ENABLED&&a?a.removeHandler(b):!1};goog.log.log=function(a,b,c,d){goog.log.ENABLED&&a&&a.log(b,c,d)};goog.log.error=function(a,b,c){goog.log.ENABLED&&a&&a.severe(b,c)};goog.log.warning=function(a,b,c){goog.log.ENABLED&&a&&a.warning(b,c)};goog.log.info=function(a,b,c){goog.log.ENABLED&&a&&a.info(b,c)};goog.log.fine=function(a,b,c){goog.log.ENABLED&&a&&a.fine(b,c)};goog.net.HttpStatus={CONTINUE:100,SWITCHING_PROTOCOLS:101,OK:200,CREATED:201,ACCEPTED:202,NON_AUTHORITATIVE_INFORMATION:203,NO_CONTENT:204,RESET_CONTENT:205,PARTIAL_CONTENT:206,MULTIPLE_CHOICES:300,MOVED_PERMANENTLY:301,FOUND:302,SEE_OTHER:303,NOT_MODIFIED:304,USE_PROXY:305,TEMPORARY_REDIRECT:307,BAD_REQUEST:400,UNAUTHORIZED:401,PAYMENT_REQUIRED:402,FORBIDDEN:403,NOT_FOUND:404,METHOD_NOT_ALLOWED:405,NOT_ACCEPTABLE:406,PROXY_AUTHENTICATION_REQUIRED:407,REQUEST_TIMEOUT:408,CONFLICT:409,GONE:410,LENGTH_REQUIRED:411,
|
||||
PRECONDITION_FAILED:412,REQUEST_ENTITY_TOO_LARGE:413,REQUEST_URI_TOO_LONG:414,UNSUPPORTED_MEDIA_TYPE:415,REQUEST_RANGE_NOT_SATISFIABLE:416,EXPECTATION_FAILED:417,PRECONDITION_REQUIRED:428,TOO_MANY_REQUESTS:429,REQUEST_HEADER_FIELDS_TOO_LARGE:431,INTERNAL_SERVER_ERROR:500,NOT_IMPLEMENTED:501,BAD_GATEWAY:502,SERVICE_UNAVAILABLE:503,GATEWAY_TIMEOUT:504,HTTP_VERSION_NOT_SUPPORTED:505,NETWORK_AUTHENTICATION_REQUIRED:511,QUIRK_IE_NO_CONTENT:1223};
|
||||
goog.net.HttpStatus.isSuccess=function(a){switch(a){case goog.net.HttpStatus.OK:case goog.net.HttpStatus.CREATED:case goog.net.HttpStatus.ACCEPTED:case goog.net.HttpStatus.NO_CONTENT:case goog.net.HttpStatus.PARTIAL_CONTENT:case goog.net.HttpStatus.NOT_MODIFIED:case goog.net.HttpStatus.QUIRK_IE_NO_CONTENT:return!0;default:return!1}};goog.net.XhrLike=function(){};goog.net.XhrLike.prototype.open=function(a,b,c,d,e){};goog.net.XhrLike.prototype.send=function(a){};goog.net.XhrLike.prototype.abort=function(){};goog.net.XhrLike.prototype.setRequestHeader=function(a,b){};goog.net.XhrLike.prototype.getResponseHeader=function(a){};goog.net.XhrLike.prototype.getAllResponseHeaders=function(){};goog.net.XmlHttpFactory=function(){};goog.net.XmlHttpFactory.prototype.cachedOptions_=null;goog.net.XmlHttpFactory.prototype.createInstance=goog.abstractMethod;goog.net.XmlHttpFactory.prototype.getOptions=function(){return this.cachedOptions_||(this.cachedOptions_=this.internalGetOptions())};goog.net.XmlHttpFactory.prototype.internalGetOptions=goog.abstractMethod;goog.net.WrapperXmlHttpFactory=function(a,b){goog.net.XmlHttpFactory.call(this);this.xhrFactory_=a;this.optionsFactory_=b};goog.inherits(goog.net.WrapperXmlHttpFactory,goog.net.XmlHttpFactory);goog.net.WrapperXmlHttpFactory.prototype.createInstance=function(){return this.xhrFactory_()};goog.net.WrapperXmlHttpFactory.prototype.getOptions=function(){return this.optionsFactory_()};goog.net.XmlHttp=function(){return goog.net.XmlHttp.factory_.createInstance()};goog.net.XmlHttp.ASSUME_NATIVE_XHR=!1;goog.net.XmlHttpDefines={};goog.net.XmlHttpDefines.ASSUME_NATIVE_XHR=!1;goog.net.XmlHttp.getOptions=function(){return goog.net.XmlHttp.factory_.getOptions()};goog.net.XmlHttp.OptionType={USE_NULL_FUNCTION:0,LOCAL_REQUEST_ERROR:1};goog.net.XmlHttp.ReadyState={UNINITIALIZED:0,LOADING:1,LOADED:2,INTERACTIVE:3,COMPLETE:4};
|
||||
goog.net.XmlHttp.setFactory=function(a,b){goog.net.XmlHttp.setGlobalFactory(new goog.net.WrapperXmlHttpFactory(goog.asserts.assert(a),goog.asserts.assert(b)))};goog.net.XmlHttp.setGlobalFactory=function(a){goog.net.XmlHttp.factory_=a};goog.net.DefaultXmlHttpFactory=function(){goog.net.XmlHttpFactory.call(this)};goog.inherits(goog.net.DefaultXmlHttpFactory,goog.net.XmlHttpFactory);
|
||||
|
|
@ -428,16 +438,51 @@ goog.crypt.base64.decodeStringToByteArray=function(a,b){var c=[];goog.crypt.base
|
|||
goog.crypt.base64.decodeStringToUint8Array=function(a){goog.asserts.assert(!goog.userAgent.IE||goog.userAgent.isVersionOrHigher("10"),"Browser does not support typed arrays");var b=a.length,c=0;"="===a[b-2]?c=2:"="===a[b-1]&&(c=1);var d=new Uint8Array(Math.ceil(3*b/4)-c),e=0;goog.crypt.base64.decodeStringInternal_(a,function(a){d[e++]=a});return d.subarray(0,e)};
|
||||
goog.crypt.base64.decodeStringInternal_=function(a,b){function c(b){for(;d<a.length;){var c=a.charAt(d++),e=goog.crypt.base64.charToByteMap_[c];if(null!=e)return e;if(!goog.string.isEmptyOrWhitespace(c))throw Error("Unknown base64 encoding at char: "+c);}return b}goog.crypt.base64.init_();for(var d=0;;){var e=c(-1),f=c(0),g=c(64),h=c(64);if(64===h&&-1===e)break;b(e<<2|f>>4);64!=g&&(b(f<<4&240|g>>2),64!=h&&b(g<<6&192|h))}};
|
||||
goog.crypt.base64.init_=function(){if(!goog.crypt.base64.byteToCharMap_){goog.crypt.base64.byteToCharMap_={};goog.crypt.base64.charToByteMap_={};goog.crypt.base64.byteToCharMapWebSafe_={};for(var a=0;a<goog.crypt.base64.ENCODED_VALS.length;a++)goog.crypt.base64.byteToCharMap_[a]=goog.crypt.base64.ENCODED_VALS.charAt(a),goog.crypt.base64.charToByteMap_[goog.crypt.base64.byteToCharMap_[a]]=a,goog.crypt.base64.byteToCharMapWebSafe_[a]=goog.crypt.base64.ENCODED_VALS_WEBSAFE.charAt(a),a>=goog.crypt.base64.ENCODED_VALS_BASE.length&&
|
||||
(goog.crypt.base64.charToByteMap_[goog.crypt.base64.ENCODED_VALS_WEBSAFE.charAt(a)]=a)}};goog.net.streams.NodeReadableStream=function(){};goog.net.streams.NodeReadableStream.EventType={READABLE:"readable",DATA:"data",END:"end",CLOSE:"close",ERROR:"error"};goog.net.streams.NodeReadableStream.prototype.on=goog.abstractMethod;goog.net.streams.NodeReadableStream.prototype.addListener=goog.abstractMethod;goog.net.streams.NodeReadableStream.prototype.removeListener=goog.abstractMethod;goog.net.streams.NodeReadableStream.prototype.once=goog.abstractMethod;grpc.web.GenericTransportInterface={};var module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS="grpc-status",module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS_MESSAGE="grpc-message",module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream=function(a){this.xhr_=a.xhr;this.onEndCallback_=this.onStatusCallback_=this.onDataCallback_=this.responseDeserializeFn_=null;this.pos_=0;this.parser_=new module$contents$grpc$web$GrpcWebStreamParser_GrpcWebStreamParser;var b=this;goog.events.listen(this.xhr_,
|
||||
goog.net.EventType.READY_STATE_CHANGE,function(a){a=module$contents$grpc$web$GrpcWebStreamParser_GrpcWebStreamParser.FrameType;var c=b.xhr_.getResponseText(),e=c.length-c.length%4;c=c.substr(b.pos_,e-b.pos_);if(0!=c.length&&(b.pos_=e,e=goog.crypt.base64.decodeStringToUint8Array(c),e=b.parser_.parse([].slice.call(e)))){for(c=0;c<e.length;c++){if(a.DATA in e[c]){var f=e[c][a.DATA];if(f&&(f=b.responseDeserializeFn_(f)))b.onDataCallback_(f)}if(a.TRAILER in e[c]&&0<e[c][a.TRAILER].length){f="";for(var g=
|
||||
0;g<e[c][a.TRAILER].length;g++)f+=String.fromCharCode(e[c][a.TRAILER][g]);f=b.parseHttp1Headers_(f);g=module$contents$grpc$web$StatusCode_StatusCode.OK;var h="";module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS in f&&(g=f[module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS]);module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS_MESSAGE in f&&(h=f[module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS_MESSAGE]);if(b.onStatusCallback_)b.onStatusCallback_({code:Number(g),
|
||||
details:h,metadata:f})}}if(b.xhr_.getReadyState()==goog.net.XmlHttp.ReadyState.COMPLETE&&b.onEndCallback_)b.onEndCallback_()}})};module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream.prototype.on=function(a,b){"data"==a?this.onDataCallback_=b:"status"==a?this.onStatusCallback_=b:"end"==a&&(this.onEndCallback_=b);return this};
|
||||
module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream.prototype.setResponseDeserializeFn=function(a){this.responseDeserializeFn_=a};module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream.prototype.cancel=function(){this.xhr_.abort()};
|
||||
module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream.prototype.parseHttp1Headers_=function(a){a=a.trim().split("\r\n");for(var b={},c=0;c<a.length;c++){var d=a[c].indexOf(":");b[a[c].substring(0,d).trim()]=a[c].substring(d+1).trim()}return b};grpc.web.GrpcWebClientReadableStream=module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream;var module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase=function(a){};
|
||||
module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.prototype.rpcCall=function(a,b,c,d,e){var f=this.newXhr_();b=d.requestSerializeFn(b);f.headers.addAll(c);c=new module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream({xhr:f});c.setResponseDeserializeFn(d.responseDeserializeFn);c.on("data",function(a){e(null,a)});c.on("status",function(a){a.code!=module$contents$grpc$web$StatusCode_StatusCode.OK&&e({code:a.code,message:a.details},null)});f.headers.set("Content-Type",
|
||||
"application/grpc-web-text");f.headers.set("X-User-Agent","grpc-web-javascript/0.1");f.headers.set("Accept","application/grpc-web-text");d=this.encodeRequest_(b);d=goog.crypt.base64.encodeByteArray(d);f.send(a,"POST",d)};
|
||||
module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.prototype.serverStreaming=function(a,b,c,d){var e=this.newXhr_();b=d.requestSerializeFn(b);e.headers.addAll(c);c=new module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream({xhr:e});c.setResponseDeserializeFn(d.responseDeserializeFn);e.headers.set("Content-Type","application/grpc-web-text");e.headers.set("X-User-Agent","grpc-web-javascript/0.1");e.headers.set("Accept","application/grpc-web-text");d=this.encodeRequest_(b);
|
||||
d=goog.crypt.base64.encodeByteArray(d);e.send(a,"POST",d);return c};module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.prototype.newXhr_=function(){return new goog.net.XhrIo};module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.prototype.encodeRequest_=function(a){for(var b=a.length,c=[0,0,0,0],d=new Uint8Array(5+b),e=3;0<=e;e--)c[e]=b%256,b>>>=8;d.set(new Uint8Array(c),1);d.set(a,5);return d};grpc.web.GrpcWebClientBase=module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase;var jspb={BinaryConstants:{},ConstBinaryMessage:function(){},BinaryMessage:function(){}};jspb.BinaryConstants.FieldType={INVALID:-1,DOUBLE:1,FLOAT:2,INT64:3,UINT64:4,INT32:5,FIXED64:6,FIXED32:7,BOOL:8,STRING:9,GROUP:10,MESSAGE:11,BYTES:12,UINT32:13,ENUM:14,SFIXED32:15,SFIXED64:16,SINT32:17,SINT64:18,FHASH64:30,VHASH64:31};jspb.BinaryConstants.WireType={INVALID:-1,VARINT:0,FIXED64:1,DELIMITED:2,START_GROUP:3,END_GROUP:4,FIXED32:5};
|
||||
(goog.crypt.base64.charToByteMap_[goog.crypt.base64.ENCODED_VALS_WEBSAFE.charAt(a)]=a)}};goog.net.streams.NodeReadableStream=function(){};goog.net.streams.NodeReadableStream.EventType={READABLE:"readable",DATA:"data",END:"end",CLOSE:"close",ERROR:"error"};goog.net.streams.NodeReadableStream.prototype.on=goog.abstractMethod;goog.net.streams.NodeReadableStream.prototype.addListener=goog.abstractMethod;goog.net.streams.NodeReadableStream.prototype.removeListener=goog.abstractMethod;goog.net.streams.NodeReadableStream.prototype.once=goog.abstractMethod;grpc.web.GenericTransportInterface={};grpc.web.Status={};var module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS="grpc-status",module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS_MESSAGE="grpc-message",module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream=function(a){this.xhr_=a.xhr;this.onEndCallback_=this.onErrorCallback_=this.onStatusCallback_=this.onDataCallback_=this.responseDeserializeFn_=null;this.pos_=0;this.parser_=new module$contents$grpc$web$GrpcWebStreamParser_GrpcWebStreamParser;var b=this;
|
||||
goog.events.listen(this.xhr_,goog.net.EventType.READY_STATE_CHANGE,function(a){if(a=b.xhr_.getStreamingResponseHeader("Content-Type")){a=a.toLowerCase();if(goog.string.startsWith(a,"application/grpc-web-text")){var c=b.xhr_.getResponseText();a=c.length-c.length%4;c=c.substr(b.pos_,a-b.pos_);if(0==c.length)return;b.pos_=a;a=goog.crypt.base64.decodeStringToUint8Array(c)}else if(goog.string.startsWith(a,"application/grpc"))a=new Uint8Array(b.xhr_.getResponse());else return;if(a=b.parser_.parse([].slice.call(a))){c=
|
||||
module$contents$grpc$web$GrpcWebStreamParser_GrpcWebStreamParser.FrameType;for(var e=0;e<a.length;e++){if(c.DATA in a[e]){var f=a[e][c.DATA];if(f&&(f=b.responseDeserializeFn_(f)))b.onDataCallback_(f)}if(c.TRAILER in a[e]&&0<a[e][c.TRAILER].length){f="";for(var g=0;g<a[e][c.TRAILER].length;g++)f+=String.fromCharCode(a[e][c.TRAILER][g]);f=b.parseHttp1Headers_(f);g=module$contents$grpc$web$StatusCode_StatusCode.OK;var h="";module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS in f&&(g=f[module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS]);
|
||||
module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS_MESSAGE in f&&(h=f[module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS_MESSAGE]);if(b.onStatusCallback_)b.onStatusCallback_({code:Number(g),details:h,metadata:f})}}if(b.xhr_.getReadyState()==goog.net.XmlHttp.ReadyState.COMPLETE&&b.onEndCallback_)b.onEndCallback_()}}});goog.events.listen(this.xhr_,goog.net.EventType.COMPLETE,function(a){if(b.onErrorCallback_)if(a=b.xhr_.getLastErrorCode(),a!=goog.net.ErrorCode.NO_ERROR)b.onErrorCallback_({code:module$contents$grpc$web$StatusCode_StatusCode.UNAVAILABLE,
|
||||
message:goog.net.ErrorCode.getDebugMessage(a)});else if(a=b.xhr_.getResponseHeaders(),module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS in a&&a[module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS]!=module$contents$grpc$web$StatusCode_StatusCode.OK)b.onErrorCallback_({code:Number(a[module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS]),message:a[module$contents$grpc$web$GrpcWebClientReadableStream_GRPC_STATUS_MESSAGE]})})};
|
||||
module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream.prototype.on=function(a,b){"data"==a?this.onDataCallback_=b:"status"==a?this.onStatusCallback_=b:"end"==a?this.onEndCallback_=b:"error"==a&&(this.onErrorCallback_=b);return this};module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream.prototype.setResponseDeserializeFn=function(a){this.responseDeserializeFn_=a};
|
||||
module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream.prototype.cancel=function(){this.xhr_.abort()};module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream.prototype.parseHttp1Headers_=function(a){a=a.trim().split("\r\n");for(var b={},c=0;c<a.length;c++){var d=a[c].indexOf(":");b[a[c].substring(0,d).trim()]=a[c].substring(d+1).trim()}return b};grpc.web.GrpcWebClientReadableStream=module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream;goog.Uri=function(a,b){this.domain_=this.userInfo_=this.scheme_="";this.port_=null;this.fragment_=this.path_="";this.ignoreCase_=this.isReadOnly_=!1;var c;a instanceof goog.Uri?(this.ignoreCase_=goog.isDef(b)?b:a.getIgnoreCase(),this.setScheme(a.getScheme()),this.setUserInfo(a.getUserInfo()),this.setDomain(a.getDomain()),this.setPort(a.getPort()),this.setPath(a.getPath()),this.setQueryData(a.getQueryData().clone()),this.setFragment(a.getFragment())):a&&(c=goog.uri.utils.split(String(a)))?(this.ignoreCase_=
|
||||
!!b,this.setScheme(c[goog.uri.utils.ComponentIndex.SCHEME]||"",!0),this.setUserInfo(c[goog.uri.utils.ComponentIndex.USER_INFO]||"",!0),this.setDomain(c[goog.uri.utils.ComponentIndex.DOMAIN]||"",!0),this.setPort(c[goog.uri.utils.ComponentIndex.PORT]),this.setPath(c[goog.uri.utils.ComponentIndex.PATH]||"",!0),this.setQueryData(c[goog.uri.utils.ComponentIndex.QUERY_DATA]||"",!0),this.setFragment(c[goog.uri.utils.ComponentIndex.FRAGMENT]||"",!0)):(this.ignoreCase_=!!b,this.queryData_=new goog.Uri.QueryData(null,
|
||||
null,this.ignoreCase_))};goog.Uri.preserveParameterTypesCompatibilityFlag=!1;goog.Uri.RANDOM_PARAM=goog.uri.utils.StandardQueryParam.RANDOM;
|
||||
goog.Uri.prototype.toString=function(){var a=[],b=this.getScheme();b&&a.push(goog.Uri.encodeSpecialChars_(b,goog.Uri.reDisallowedInSchemeOrUserInfo_,!0),":");var c=this.getDomain();if(c||"file"==b)a.push("//"),(b=this.getUserInfo())&&a.push(goog.Uri.encodeSpecialChars_(b,goog.Uri.reDisallowedInSchemeOrUserInfo_,!0),"@"),a.push(goog.Uri.removeDoubleEncoding_(goog.string.urlEncode(c))),c=this.getPort(),null!=c&&a.push(":",String(c));if(c=this.getPath())this.hasDomain()&&"/"!=c.charAt(0)&&a.push("/"),
|
||||
a.push(goog.Uri.encodeSpecialChars_(c,"/"==c.charAt(0)?goog.Uri.reDisallowedInAbsolutePath_:goog.Uri.reDisallowedInRelativePath_,!0));(c=this.getEncodedQuery())&&a.push("?",c);(c=this.getFragment())&&a.push("#",goog.Uri.encodeSpecialChars_(c,goog.Uri.reDisallowedInFragment_));return a.join("")};
|
||||
goog.Uri.prototype.resolve=function(a){var b=this.clone(),c=a.hasScheme();c?b.setScheme(a.getScheme()):c=a.hasUserInfo();c?b.setUserInfo(a.getUserInfo()):c=a.hasDomain();c?b.setDomain(a.getDomain()):c=a.hasPort();var d=a.getPath();if(c)b.setPort(a.getPort());else if(c=a.hasPath()){if("/"!=d.charAt(0))if(this.hasDomain()&&!this.hasPath())d="/"+d;else{var e=b.getPath().lastIndexOf("/");-1!=e&&(d=b.getPath().substr(0,e+1)+d)}d=goog.Uri.removeDotSegments(d)}c?b.setPath(d):c=a.hasQuery();c?b.setQueryData(a.getQueryData().clone()):
|
||||
c=a.hasFragment();c&&b.setFragment(a.getFragment());return b};goog.Uri.prototype.clone=function(){return new goog.Uri(this)};goog.Uri.prototype.getScheme=function(){return this.scheme_};goog.Uri.prototype.setScheme=function(a,b){this.enforceReadOnly();if(this.scheme_=b?goog.Uri.decodeOrEmpty_(a,!0):a)this.scheme_=this.scheme_.replace(/:$/,"");return this};goog.Uri.prototype.hasScheme=function(){return!!this.scheme_};goog.Uri.prototype.getUserInfo=function(){return this.userInfo_};
|
||||
goog.Uri.prototype.setUserInfo=function(a,b){this.enforceReadOnly();this.userInfo_=b?goog.Uri.decodeOrEmpty_(a):a;return this};goog.Uri.prototype.hasUserInfo=function(){return!!this.userInfo_};goog.Uri.prototype.getDomain=function(){return this.domain_};goog.Uri.prototype.setDomain=function(a,b){this.enforceReadOnly();this.domain_=b?goog.Uri.decodeOrEmpty_(a,!0):a;return this};goog.Uri.prototype.hasDomain=function(){return!!this.domain_};goog.Uri.prototype.getPort=function(){return this.port_};
|
||||
goog.Uri.prototype.setPort=function(a){this.enforceReadOnly();if(a){a=Number(a);if(isNaN(a)||0>a)throw Error("Bad port number "+a);this.port_=a}else this.port_=null;return this};goog.Uri.prototype.hasPort=function(){return null!=this.port_};goog.Uri.prototype.getPath=function(){return this.path_};goog.Uri.prototype.setPath=function(a,b){this.enforceReadOnly();this.path_=b?goog.Uri.decodeOrEmpty_(a,!0):a;return this};goog.Uri.prototype.hasPath=function(){return!!this.path_};
|
||||
goog.Uri.prototype.hasQuery=function(){return""!==this.queryData_.toString()};goog.Uri.prototype.setQueryData=function(a,b){this.enforceReadOnly();a instanceof goog.Uri.QueryData?(this.queryData_=a,this.queryData_.setIgnoreCase(this.ignoreCase_)):(b||(a=goog.Uri.encodeSpecialChars_(a,goog.Uri.reDisallowedInQuery_)),this.queryData_=new goog.Uri.QueryData(a,null,this.ignoreCase_));return this};goog.Uri.prototype.setQuery=function(a,b){return this.setQueryData(a,b)};
|
||||
goog.Uri.prototype.getEncodedQuery=function(){return this.queryData_.toString()};goog.Uri.prototype.getDecodedQuery=function(){return this.queryData_.toDecodedString()};goog.Uri.prototype.getQueryData=function(){return this.queryData_};goog.Uri.prototype.getQuery=function(){return this.getEncodedQuery()};goog.Uri.prototype.setParameterValue=function(a,b){this.enforceReadOnly();this.queryData_.set(a,b);return this};
|
||||
goog.Uri.prototype.setParameterValues=function(a,b){this.enforceReadOnly();goog.isArray(b)||(b=[String(b)]);this.queryData_.setValues(a,b);return this};goog.Uri.prototype.getParameterValues=function(a){return this.queryData_.getValues(a)};goog.Uri.prototype.getParameterValue=function(a){return this.queryData_.get(a)};goog.Uri.prototype.getFragment=function(){return this.fragment_};goog.Uri.prototype.setFragment=function(a,b){this.enforceReadOnly();this.fragment_=b?goog.Uri.decodeOrEmpty_(a):a;return this};
|
||||
goog.Uri.prototype.hasFragment=function(){return!!this.fragment_};goog.Uri.prototype.hasSameDomainAs=function(a){return(!this.hasDomain()&&!a.hasDomain()||this.getDomain()==a.getDomain())&&(!this.hasPort()&&!a.hasPort()||this.getPort()==a.getPort())};goog.Uri.prototype.makeUnique=function(){this.enforceReadOnly();this.setParameterValue(goog.Uri.RANDOM_PARAM,goog.string.getRandomString());return this};goog.Uri.prototype.removeParameter=function(a){this.enforceReadOnly();this.queryData_.remove(a);return this};
|
||||
goog.Uri.prototype.setReadOnly=function(a){this.isReadOnly_=a;return this};goog.Uri.prototype.isReadOnly=function(){return this.isReadOnly_};goog.Uri.prototype.enforceReadOnly=function(){if(this.isReadOnly_)throw Error("Tried to modify a read-only Uri");};goog.Uri.prototype.setIgnoreCase=function(a){this.ignoreCase_=a;this.queryData_&&this.queryData_.setIgnoreCase(a);return this};goog.Uri.prototype.getIgnoreCase=function(){return this.ignoreCase_};
|
||||
goog.Uri.parse=function(a,b){return a instanceof goog.Uri?a.clone():new goog.Uri(a,b)};goog.Uri.create=function(a,b,c,d,e,f,g,h){h=new goog.Uri(null,h);a&&h.setScheme(a);b&&h.setUserInfo(b);c&&h.setDomain(c);d&&h.setPort(d);e&&h.setPath(e);f&&h.setQueryData(f);g&&h.setFragment(g);return h};goog.Uri.resolve=function(a,b){a instanceof goog.Uri||(a=goog.Uri.parse(a));b instanceof goog.Uri||(b=goog.Uri.parse(b));return a.resolve(b)};
|
||||
goog.Uri.removeDotSegments=function(a){if(".."==a||"."==a)return"";if(goog.string.contains(a,"./")||goog.string.contains(a,"/.")){var b=goog.string.startsWith(a,"/");a=a.split("/");for(var c=[],d=0;d<a.length;){var e=a[d++];"."==e?b&&d==a.length&&c.push(""):".."==e?((1<c.length||1==c.length&&""!=c[0])&&c.pop(),b&&d==a.length&&c.push("")):(c.push(e),b=!0)}return c.join("/")}return a};goog.Uri.decodeOrEmpty_=function(a,b){return a?b?decodeURI(a.replace(/%25/g,"%2525")):decodeURIComponent(a):""};
|
||||
goog.Uri.encodeSpecialChars_=function(a,b,c){return goog.isString(a)?(a=encodeURI(a).replace(b,goog.Uri.encodeChar_),c&&(a=goog.Uri.removeDoubleEncoding_(a)),a):null};goog.Uri.encodeChar_=function(a){a=a.charCodeAt(0);return"%"+(a>>4&15).toString(16)+(a&15).toString(16)};goog.Uri.removeDoubleEncoding_=function(a){return a.replace(/%25([0-9a-fA-F]{2})/g,"%$1")};goog.Uri.reDisallowedInSchemeOrUserInfo_=/[#\/\?@]/g;goog.Uri.reDisallowedInRelativePath_=/[#\?:]/g;goog.Uri.reDisallowedInAbsolutePath_=/[#\?]/g;
|
||||
goog.Uri.reDisallowedInQuery_=/[#\?@]/g;goog.Uri.reDisallowedInFragment_=/#/g;goog.Uri.haveSameDomain=function(a,b){a=goog.uri.utils.split(a);b=goog.uri.utils.split(b);return a[goog.uri.utils.ComponentIndex.DOMAIN]==b[goog.uri.utils.ComponentIndex.DOMAIN]&&a[goog.uri.utils.ComponentIndex.PORT]==b[goog.uri.utils.ComponentIndex.PORT]};goog.Uri.QueryData=function(a,b,c){this.count_=this.keyMap_=null;this.encodedQuery_=a||null;this.ignoreCase_=!!c};
|
||||
goog.Uri.QueryData.prototype.ensureKeyMapInitialized_=function(){if(!this.keyMap_&&(this.keyMap_=new goog.structs.Map,this.count_=0,this.encodedQuery_)){var a=this;goog.uri.utils.parseQueryData(this.encodedQuery_,function(b,c){a.add(goog.string.urlDecode(b),c)})}};
|
||||
goog.Uri.QueryData.createFromMap=function(a,b,c){b=goog.structs.getKeys(a);if("undefined"==typeof b)throw Error("Keys are undefined");c=new goog.Uri.QueryData(null,null,c);a=goog.structs.getValues(a);for(var d=0;d<b.length;d++){var e=b[d],f=a[d];goog.isArray(f)?c.setValues(e,f):c.add(e,f)}return c};
|
||||
goog.Uri.QueryData.createFromKeysValues=function(a,b,c,d){if(a.length!=b.length)throw Error("Mismatched lengths for keys/values");c=new goog.Uri.QueryData(null,null,d);for(d=0;d<a.length;d++)c.add(a[d],b[d]);return c};goog.Uri.QueryData.prototype.getCount=function(){this.ensureKeyMapInitialized_();return this.count_};
|
||||
goog.Uri.QueryData.prototype.add=function(a,b){this.ensureKeyMapInitialized_();this.invalidateCache_();a=this.getKeyName_(a);var c=this.keyMap_.get(a);c||this.keyMap_.set(a,c=[]);c.push(b);this.count_=goog.asserts.assertNumber(this.count_)+1;return this};
|
||||
goog.Uri.QueryData.prototype.remove=function(a){this.ensureKeyMapInitialized_();a=this.getKeyName_(a);return this.keyMap_.containsKey(a)?(this.invalidateCache_(),this.count_=goog.asserts.assertNumber(this.count_)-this.keyMap_.get(a).length,this.keyMap_.remove(a)):!1};goog.Uri.QueryData.prototype.clear=function(){this.invalidateCache_();this.keyMap_=null;this.count_=0};goog.Uri.QueryData.prototype.isEmpty=function(){this.ensureKeyMapInitialized_();return 0==this.count_};
|
||||
goog.Uri.QueryData.prototype.containsKey=function(a){this.ensureKeyMapInitialized_();a=this.getKeyName_(a);return this.keyMap_.containsKey(a)};goog.Uri.QueryData.prototype.containsValue=function(a){var b=this.getValues();return goog.array.contains(b,a)};goog.Uri.QueryData.prototype.forEach=function(a,b){this.ensureKeyMapInitialized_();this.keyMap_.forEach(function(c,d){goog.array.forEach(c,function(c){a.call(b,c,d,this)},this)},this)};
|
||||
goog.Uri.QueryData.prototype.getKeys=function(){this.ensureKeyMapInitialized_();for(var a=this.keyMap_.getValues(),b=this.keyMap_.getKeys(),c=[],d=0;d<b.length;d++)for(var e=a[d],f=0;f<e.length;f++)c.push(b[d]);return c};goog.Uri.QueryData.prototype.getValues=function(a){this.ensureKeyMapInitialized_();var b=[];if(goog.isString(a))this.containsKey(a)&&(b=goog.array.concat(b,this.keyMap_.get(this.getKeyName_(a))));else{a=this.keyMap_.getValues();for(var c=0;c<a.length;c++)b=goog.array.concat(b,a[c])}return b};
|
||||
goog.Uri.QueryData.prototype.set=function(a,b){this.ensureKeyMapInitialized_();this.invalidateCache_();a=this.getKeyName_(a);this.containsKey(a)&&(this.count_=goog.asserts.assertNumber(this.count_)-this.keyMap_.get(a).length);this.keyMap_.set(a,[b]);this.count_=goog.asserts.assertNumber(this.count_)+1;return this};goog.Uri.QueryData.prototype.get=function(a,b){a=a?this.getValues(a):[];return goog.Uri.preserveParameterTypesCompatibilityFlag?0<a.length?a[0]:b:0<a.length?String(a[0]):b};
|
||||
goog.Uri.QueryData.prototype.setValues=function(a,b){this.remove(a);0<b.length&&(this.invalidateCache_(),this.keyMap_.set(this.getKeyName_(a),goog.array.clone(b)),this.count_=goog.asserts.assertNumber(this.count_)+b.length)};
|
||||
goog.Uri.QueryData.prototype.toString=function(){if(this.encodedQuery_)return this.encodedQuery_;if(!this.keyMap_)return"";for(var a=[],b=this.keyMap_.getKeys(),c=0;c<b.length;c++){var d=b[c],e=goog.string.urlEncode(d);d=this.getValues(d);for(var f=0;f<d.length;f++){var g=e;""!==d[f]&&(g+="="+goog.string.urlEncode(d[f]));a.push(g)}}return this.encodedQuery_=a.join("&")};goog.Uri.QueryData.prototype.toDecodedString=function(){return goog.Uri.decodeOrEmpty_(this.toString())};
|
||||
goog.Uri.QueryData.prototype.invalidateCache_=function(){this.encodedQuery_=null};goog.Uri.QueryData.prototype.filterKeys=function(a){this.ensureKeyMapInitialized_();this.keyMap_.forEach(function(b,c){goog.array.contains(a,c)||this.remove(c)},this);return this};goog.Uri.QueryData.prototype.clone=function(){var a=new goog.Uri.QueryData;a.encodedQuery_=this.encodedQuery_;this.keyMap_&&(a.keyMap_=this.keyMap_.clone(),a.count_=this.count_);return a};
|
||||
goog.Uri.QueryData.prototype.getKeyName_=function(a){a=String(a);this.ignoreCase_&&(a=a.toLowerCase());return a};goog.Uri.QueryData.prototype.setIgnoreCase=function(a){a&&!this.ignoreCase_&&(this.ensureKeyMapInitialized_(),this.invalidateCache_(),this.keyMap_.forEach(function(a,c){var b=c.toLowerCase();c!=b&&(this.remove(c),this.setValues(b,a))},this));this.ignoreCase_=a};
|
||||
goog.Uri.QueryData.prototype.extend=function(a){for(var b=0;b<arguments.length;b++)goog.structs.forEach(arguments[b],function(a,b){this.add(b,a)},this)};var module$exports$goog$net$rpc$HttpCors={HTTP_HEADERS_PARAM_NAME:"$httpHeaders",HTTP_METHOD_PARAM_NAME:"$httpMethod",generateHttpHeadersOverwriteParam:function(a){var b="";goog.object.forEach(a,function(a,d){b+=d;b+=":";b+=a;b+="\r\n"});return b},generateEncodedHttpHeadersOverwriteParam:function(a){return goog.string.urlEncode(module$exports$goog$net$rpc$HttpCors.generateHttpHeadersOverwriteParam(a))},setHttpHeadersWithOverwriteParam:function(a,b,c){if(goog.object.isEmpty(c))return a;c=module$exports$goog$net$rpc$HttpCors.generateHttpHeadersOverwriteParam(c);
|
||||
if(goog.isString(a))return goog.uri.utils.appendParam(a,goog.string.urlEncode(b),c);a.setParameterValue(b,c);return a}};var module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase=function(a){this.format_=goog.getObjectByName("format",a)||"text";this.suppressCorsPreflight_=goog.getObjectByName("suppressCorsPreflight",a)||!1};
|
||||
module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.prototype.rpcCall=function(a,b,c,d,e){var f=this.newXhr_(),g=new module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream({xhr:f});g.setResponseDeserializeFn(d.responseDeserializeFn);g.on("data",function(a){e(null,a)});g.on("status",function(a){a.code!=module$contents$grpc$web$StatusCode_StatusCode.OK&&e({code:a.code,message:a.details},null)});g.on("error",function(a){a.code!=module$contents$grpc$web$StatusCode_StatusCode.OK&&
|
||||
e({code:a.code,message:a.message},null)});f.headers.addAll(c);"text"==this.format_?(f.headers.set("Content-Type","application/grpc-web-text"),f.headers.set("Accept","application/grpc-web-text")):f.headers.set("Content-Type","application/grpc-web+proto");f.headers.set("X-User-Agent","grpc-web-javascript/0.1");f.headers.set("X-Grpc-Web","1");this.suppressCorsPreflight_&&(c=f.headers.toObject(),f.headers.clear(),a=module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.setCorsOverride_(a,c));b=
|
||||
d.requestSerializeFn(b);b=this.encodeRequest_(b);"text"==this.format_?b=goog.crypt.base64.encodeByteArray(b):"binary"==this.format_&&f.setResponseType(goog.net.XhrIo.ResponseType.ARRAY_BUFFER);f.send(a,"POST",b);return g};
|
||||
module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.prototype.serverStreaming=function(a,b,c,d){var e=this.newXhr_(),f=new module$contents$grpc$web$GrpcWebClientReadableStream_GrpcWebClientReadableStream({xhr:e});f.setResponseDeserializeFn(d.responseDeserializeFn);e.headers.addAll(c);"text"==this.format_?(e.headers.set("Content-Type","application/grpc-web-text"),e.headers.set("Accept","application/grpc-web-text")):e.headers.set("Content-Type","application/grpc-web+proto");e.headers.set("X-User-Agent",
|
||||
"grpc-web-javascript/0.1");e.headers.set("X-Grpc-Web","1");this.suppressCorsPreflight_&&(c=e.headers.toObject(),e.headers.clear(),a=module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.setCorsOverride_(a,c));b=d.requestSerializeFn(b);b=this.encodeRequest_(b);"text"==this.format_?b=goog.crypt.base64.encodeByteArray(b):"binary"==this.format_&&e.setResponseType(goog.net.XhrIo.ResponseType.ARRAY_BUFFER);e.send(a,"POST",b);return f};
|
||||
module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.prototype.newXhr_=function(){return new goog.net.XhrIo};module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.prototype.encodeRequest_=function(a){for(var b=a.length,c=[0,0,0,0],d=new Uint8Array(5+b),e=3;0<=e;e--)c[e]=b%256,b>>>=8;d.set(new Uint8Array(c),1);d.set(a,5);return d};
|
||||
module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase.setCorsOverride_=function(a,b){return module$exports$goog$net$rpc$HttpCors.setHttpHeadersWithOverwriteParam(a,module$exports$goog$net$rpc$HttpCors.HTTP_HEADERS_PARAM_NAME,b)};grpc.web.GrpcWebClientBase=module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase;var jspb={BinaryConstants:{},ConstBinaryMessage:function(){},BinaryMessage:function(){}};jspb.BinaryConstants.FieldType={INVALID:-1,DOUBLE:1,FLOAT:2,INT64:3,UINT64:4,INT32:5,FIXED64:6,FIXED32:7,BOOL:8,STRING:9,GROUP:10,MESSAGE:11,BYTES:12,UINT32:13,ENUM:14,SFIXED32:15,SFIXED64:16,SINT32:17,SINT64:18,FHASH64:30,VHASH64:31};jspb.BinaryConstants.WireType={INVALID:-1,VARINT:0,FIXED64:1,DELIMITED:2,START_GROUP:3,END_GROUP:4,FIXED32:5};
|
||||
jspb.BinaryConstants.FieldTypeToWireType=function(a){var b=jspb.BinaryConstants.FieldType,c=jspb.BinaryConstants.WireType;switch(a){case b.INT32:case b.INT64:case b.UINT32:case b.UINT64:case b.SINT32:case b.SINT64:case b.BOOL:case b.ENUM:case b.VHASH64:return c.VARINT;case b.DOUBLE:case b.FIXED64:case b.SFIXED64:case b.FHASH64:return c.FIXED64;case b.STRING:case b.MESSAGE:case b.BYTES:return c.DELIMITED;case b.FLOAT:case b.FIXED32:case b.SFIXED32:return c.FIXED32;default:return c.INVALID}};
|
||||
jspb.BinaryConstants.INVALID_FIELD_NUMBER=-1;jspb.BinaryConstants.FLOAT32_EPS=1.401298464324817E-45;jspb.BinaryConstants.FLOAT32_MIN=1.1754943508222875E-38;jspb.BinaryConstants.FLOAT32_MAX=3.4028234663852886E38;jspb.BinaryConstants.FLOAT64_EPS=4.9E-324;jspb.BinaryConstants.FLOAT64_MIN=2.2250738585072014E-308;jspb.BinaryConstants.FLOAT64_MAX=1.7976931348623157E308;jspb.BinaryConstants.TWO_TO_20=1048576;jspb.BinaryConstants.TWO_TO_23=8388608;jspb.BinaryConstants.TWO_TO_31=2147483648;
|
||||
jspb.BinaryConstants.TWO_TO_32=4294967296;jspb.BinaryConstants.TWO_TO_52=4503599627370496;jspb.BinaryConstants.TWO_TO_63=0x7fffffffffffffff;jspb.BinaryConstants.TWO_TO_64=1.8446744073709552E19;jspb.BinaryConstants.ZERO_HASH="\x00\x00\x00\x00\x00\x00\x00\x00";jspb.utils={};jspb.utils.split64Low=0;jspb.utils.split64High=0;jspb.utils.splitUint64=function(a){var b=a>>>0;a=Math.floor((a-b)/jspb.BinaryConstants.TWO_TO_32)>>>0;jspb.utils.split64Low=b;jspb.utils.split64High=a};jspb.utils.splitInt64=function(a){var b=0>a;a=Math.abs(a);var c=a>>>0;a=Math.floor((a-c)/jspb.BinaryConstants.TWO_TO_32);a>>>=0;b&&(a=~a>>>0,c=(~c>>>0)+1,4294967295<c&&(c=0,a++,4294967295<a&&(a=0)));jspb.utils.split64Low=c;jspb.utils.split64High=a};
|
||||
|
|
@ -878,13 +923,16 @@ proto.grpc.channelz.v1.GetTopChannelsResponse.deserializeBinary=function(a){a=ne
|
|||
proto.grpc.channelz.v1.GetTopChannelsResponse.deserializeBinaryFromReader=function(a,b){for(;b.nextField()&&!b.isEndGroup();)switch(b.getFieldNumber()){case 1:var c=new proto.grpc.channelz.v1.Channel;b.readMessage(c,proto.grpc.channelz.v1.Channel.deserializeBinaryFromReader);a.addChannel(c);break;case 2:c=b.readBool();a.setEnd(c);break;default:b.skipField()}return a};
|
||||
proto.grpc.channelz.v1.GetTopChannelsResponse.prototype.serializeBinary=function(){var a=new jspb.BinaryWriter;proto.grpc.channelz.v1.GetTopChannelsResponse.serializeBinaryToWriter(this,a);return a.getResultBuffer()};proto.grpc.channelz.v1.GetTopChannelsResponse.serializeBinaryToWriter=function(a,b){var c=a.getChannelList();0<c.length&&b.writeRepeatedMessage(1,c,proto.grpc.channelz.v1.Channel.serializeBinaryToWriter);(c=a.getEnd())&&b.writeBool(2,c)};
|
||||
proto.grpc.channelz.v1.GetTopChannelsResponse.prototype.getChannelList=function(){return jspb.Message.getRepeatedWrapperField(this,proto.grpc.channelz.v1.Channel,1)};proto.grpc.channelz.v1.GetTopChannelsResponse.prototype.setChannelList=function(a){jspb.Message.setRepeatedWrapperField(this,1,a)};proto.grpc.channelz.v1.GetTopChannelsResponse.prototype.addChannel=function(a,b){return jspb.Message.addToRepeatedWrapperField(this,1,a,proto.grpc.channelz.v1.Channel,b)};
|
||||
proto.grpc.channelz.v1.GetTopChannelsResponse.prototype.clearChannelList=function(){this.setChannelList([])};proto.grpc.channelz.v1.GetTopChannelsResponse.prototype.getEnd=function(){return jspb.Message.getFieldWithDefault(this,2,!1)};proto.grpc.channelz.v1.GetTopChannelsResponse.prototype.setEnd=function(a){jspb.Message.setProto3BooleanField(this,2,a)};proto.grpc.channelz.v1.ChannelzClient=function(a,b,c){this.client_=new module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase(c);this.hostname_=a;this.credentials_=b;this.options_=c};$jscomp.scope.methodInfo_GetTopChannels=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetTopChannelsResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetTopChannelsResponse.deserializeBinary);
|
||||
proto.grpc.channelz.v1.ChannelzClient.prototype.getTopChannels=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetTopChannels",a,b,$jscomp.scope.methodInfo_GetTopChannels,c)};$jscomp.scope.methodInfo_GetServers=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetServersResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetServersResponse.deserializeBinary);
|
||||
proto.grpc.channelz.v1.ChannelzClient.prototype.getServers=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetServers",a,b,$jscomp.scope.methodInfo_GetServers,c)};$jscomp.scope.methodInfo_GetServerSockets=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetServerSocketsResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetServerSocketsResponse.deserializeBinary);
|
||||
proto.grpc.channelz.v1.ChannelzClient.prototype.getServerSockets=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetServerSockets",a,b,$jscomp.scope.methodInfo_GetServerSockets,c)};$jscomp.scope.methodInfo_GetChannel=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetChannelResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetChannelResponse.deserializeBinary);
|
||||
proto.grpc.channelz.v1.ChannelzClient.prototype.getChannel=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetChannel",a,b,$jscomp.scope.methodInfo_GetChannel,c)};$jscomp.scope.methodInfo_GetSubchannel=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetSubchannelResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetSubchannelResponse.deserializeBinary);
|
||||
proto.grpc.channelz.v1.ChannelzClient.prototype.getSubchannel=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetSubchannel",a,b,$jscomp.scope.methodInfo_GetSubchannel,c)};$jscomp.scope.methodInfo_GetSocket=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetSocketResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetSocketResponse.deserializeBinary);
|
||||
proto.grpc.channelz.v1.ChannelzClient.prototype.getSocket=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetSocket",a,b,$jscomp.scope.methodInfo_GetSocket,c)};proto.google.protobuf.Duration=function(a){jspb.Message.initialize(this,a,0,-1,null,null)};goog.inherits(proto.google.protobuf.Duration,jspb.Message);goog.DEBUG&&!COMPILED&&(proto.google.protobuf.Duration.displayName="proto.google.protobuf.Duration");
|
||||
proto.grpc.channelz.v1.GetTopChannelsResponse.prototype.clearChannelList=function(){this.setChannelList([])};proto.grpc.channelz.v1.GetTopChannelsResponse.prototype.getEnd=function(){return jspb.Message.getFieldWithDefault(this,2,!1)};proto.grpc.channelz.v1.GetTopChannelsResponse.prototype.setEnd=function(a){jspb.Message.setProto3BooleanField(this,2,a)};proto.grpc.channelz.v1.ChannelzClient=function(a,b,c){c||(c={});c.format="binary";this.client_=new module$contents$grpc$web$GrpcWebClientBase_GrpcWebClientBase(c);this.hostname_=a;this.credentials_=b;this.options_=c};proto.grpc.channelz.v1.ChannelzPromiseClient=function(a,b,c){c||(c={});c.format="binary";this.delegateClient_=new proto.grpc.channelz.v1.ChannelzClient(a,b,c)};
|
||||
$jscomp.scope.methodInfo_GetTopChannels=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetTopChannelsResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetTopChannelsResponse.deserializeBinary);proto.grpc.channelz.v1.ChannelzClient.prototype.getTopChannels=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetTopChannels",a,b,$jscomp.scope.methodInfo_GetTopChannels,c)};
|
||||
proto.grpc.channelz.v1.ChannelzPromiseClient.prototype.getTopChannels=function(a,b){var c=this;return new Promise(function(d,e){c.delegateClient_.getTopChannels(a,b,function(a,b){a?e(a):d(b)})})};$jscomp.scope.methodInfo_GetServers=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetServersResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetServersResponse.deserializeBinary);
|
||||
proto.grpc.channelz.v1.ChannelzClient.prototype.getServers=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetServers",a,b,$jscomp.scope.methodInfo_GetServers,c)};proto.grpc.channelz.v1.ChannelzPromiseClient.prototype.getServers=function(a,b){var c=this;return new Promise(function(d,e){c.delegateClient_.getServers(a,b,function(a,b){a?e(a):d(b)})})};
|
||||
$jscomp.scope.methodInfo_GetServerSockets=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetServerSocketsResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetServerSocketsResponse.deserializeBinary);proto.grpc.channelz.v1.ChannelzClient.prototype.getServerSockets=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetServerSockets",a,b,$jscomp.scope.methodInfo_GetServerSockets,c)};
|
||||
proto.grpc.channelz.v1.ChannelzPromiseClient.prototype.getServerSockets=function(a,b){var c=this;return new Promise(function(d,e){c.delegateClient_.getServerSockets(a,b,function(a,b){a?e(a):d(b)})})};$jscomp.scope.methodInfo_GetChannel=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetChannelResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetChannelResponse.deserializeBinary);
|
||||
proto.grpc.channelz.v1.ChannelzClient.prototype.getChannel=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetChannel",a,b,$jscomp.scope.methodInfo_GetChannel,c)};proto.grpc.channelz.v1.ChannelzPromiseClient.prototype.getChannel=function(a,b){var c=this;return new Promise(function(d,e){c.delegateClient_.getChannel(a,b,function(a,b){a?e(a):d(b)})})};
|
||||
$jscomp.scope.methodInfo_GetSubchannel=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetSubchannelResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetSubchannelResponse.deserializeBinary);proto.grpc.channelz.v1.ChannelzClient.prototype.getSubchannel=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetSubchannel",a,b,$jscomp.scope.methodInfo_GetSubchannel,c)};
|
||||
proto.grpc.channelz.v1.ChannelzPromiseClient.prototype.getSubchannel=function(a,b){var c=this;return new Promise(function(d,e){c.delegateClient_.getSubchannel(a,b,function(a,b){a?e(a):d(b)})})};$jscomp.scope.methodInfo_GetSocket=new module$contents$grpc$web$AbstractClientBase_AbstractClientBase.MethodInfo(proto.grpc.channelz.v1.GetSocketResponse,function(a){return a.serializeBinary()},proto.grpc.channelz.v1.GetSocketResponse.deserializeBinary);
|
||||
proto.grpc.channelz.v1.ChannelzClient.prototype.getSocket=function(a,b,c){return this.client_.rpcCall(this.hostname_+"/grpc.channelz.v1.Channelz/GetSocket",a,b,$jscomp.scope.methodInfo_GetSocket,c)};proto.grpc.channelz.v1.ChannelzPromiseClient.prototype.getSocket=function(a,b){var c=this;return new Promise(function(d,e){c.delegateClient_.getSocket(a,b,function(a,b){a?e(a):d(b)})})};proto.google.protobuf.Duration=function(a){jspb.Message.initialize(this,a,0,-1,null,null)};goog.inherits(proto.google.protobuf.Duration,jspb.Message);goog.DEBUG&&!COMPILED&&(proto.google.protobuf.Duration.displayName="proto.google.protobuf.Duration");
|
||||
jspb.Message.GENERATE_TO_OBJECT&&(proto.google.protobuf.Duration.prototype.toObject=function(a){return proto.google.protobuf.Duration.toObject(a,this)},proto.google.protobuf.Duration.toObject=function(a,b){var c={seconds:jspb.Message.getFieldWithDefault(b,1,0),nanos:jspb.Message.getFieldWithDefault(b,2,0)};a&&(c.$jspbMessageInstance=b);return c});
|
||||
proto.google.protobuf.Duration.deserializeBinary=function(a){a=new jspb.BinaryReader(a);var b=new proto.google.protobuf.Duration;return proto.google.protobuf.Duration.deserializeBinaryFromReader(b,a)};proto.google.protobuf.Duration.deserializeBinaryFromReader=function(a,b){for(;b.nextField()&&!b.isEndGroup();)switch(b.getFieldNumber()){case 1:var c=b.readInt64();a.setSeconds(c);break;case 2:c=b.readInt32();a.setNanos(c);break;default:b.skipField()}return a};
|
||||
proto.google.protobuf.Duration.prototype.serializeBinary=function(){var a=new jspb.BinaryWriter;proto.google.protobuf.Duration.serializeBinaryToWriter(this,a);return a.getResultBuffer()};proto.google.protobuf.Duration.serializeBinaryToWriter=function(a,b){var c=a.getSeconds();0!==c&&b.writeInt64(1,c);c=a.getNanos();0!==c&&b.writeInt32(2,c)};proto.google.protobuf.Duration.prototype.getSeconds=function(){return jspb.Message.getFieldWithDefault(this,1,0)};
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -539,7 +539,7 @@ if(false) {}
|
|||
/*! no static exports found */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
module.exports = __webpack_require__(/*! /usr/local/google/home/spencerfang/git/grpc-experiments/grpc-zpages/web/channelzui/src/styles.css */"./src/styles.css");
|
||||
module.exports = __webpack_require__(/*! /home/spencerfang/git/grpc-experiments/gdebug/web/channelzui/src/styles.css */"./src/styles.css");
|
||||
|
||||
|
||||
/***/ })
|
||||
|
|
|
|||
|
|
@ -3574,11 +3574,13 @@
|
|||
},
|
||||
"balanced-match": {
|
||||
"version": "1.0.0",
|
||||
"bundled": true
|
||||
"bundled": true,
|
||||
"optional": true
|
||||
},
|
||||
"brace-expansion": {
|
||||
"version": "1.1.11",
|
||||
"bundled": true,
|
||||
"optional": true,
|
||||
"requires": {
|
||||
"balanced-match": "^1.0.0",
|
||||
"concat-map": "0.0.1"
|
||||
|
|
@ -3591,15 +3593,18 @@
|
|||
},
|
||||
"code-point-at": {
|
||||
"version": "1.1.0",
|
||||
"bundled": true
|
||||
"bundled": true,
|
||||
"optional": true
|
||||
},
|
||||
"concat-map": {
|
||||
"version": "0.0.1",
|
||||
"bundled": true
|
||||
"bundled": true,
|
||||
"optional": true
|
||||
},
|
||||
"console-control-strings": {
|
||||
"version": "1.1.0",
|
||||
"bundled": true
|
||||
"bundled": true,
|
||||
"optional": true
|
||||
},
|
||||
"core-util-is": {
|
||||
"version": "1.0.2",
|
||||
|
|
@ -3702,7 +3707,8 @@
|
|||
},
|
||||
"inherits": {
|
||||
"version": "2.0.3",
|
||||
"bundled": true
|
||||
"bundled": true,
|
||||
"optional": true
|
||||
},
|
||||
"ini": {
|
||||
"version": "1.3.5",
|
||||
|
|
@ -3712,6 +3718,7 @@
|
|||
"is-fullwidth-code-point": {
|
||||
"version": "1.0.0",
|
||||
"bundled": true,
|
||||
"optional": true,
|
||||
"requires": {
|
||||
"number-is-nan": "^1.0.0"
|
||||
}
|
||||
|
|
@ -3724,17 +3731,20 @@
|
|||
"minimatch": {
|
||||
"version": "3.0.4",
|
||||
"bundled": true,
|
||||
"optional": true,
|
||||
"requires": {
|
||||
"brace-expansion": "^1.1.7"
|
||||
}
|
||||
},
|
||||
"minimist": {
|
||||
"version": "0.0.8",
|
||||
"bundled": true
|
||||
"bundled": true,
|
||||
"optional": true
|
||||
},
|
||||
"minipass": {
|
||||
"version": "2.2.4",
|
||||
"bundled": true,
|
||||
"optional": true,
|
||||
"requires": {
|
||||
"safe-buffer": "^5.1.1",
|
||||
"yallist": "^3.0.0"
|
||||
|
|
@ -3751,6 +3761,7 @@
|
|||
"mkdirp": {
|
||||
"version": "0.5.1",
|
||||
"bundled": true,
|
||||
"optional": true,
|
||||
"requires": {
|
||||
"minimist": "0.0.8"
|
||||
}
|
||||
|
|
@ -3823,7 +3834,8 @@
|
|||
},
|
||||
"number-is-nan": {
|
||||
"version": "1.0.1",
|
||||
"bundled": true
|
||||
"bundled": true,
|
||||
"optional": true
|
||||
},
|
||||
"object-assign": {
|
||||
"version": "4.1.1",
|
||||
|
|
@ -3833,6 +3845,7 @@
|
|||
"once": {
|
||||
"version": "1.4.0",
|
||||
"bundled": true,
|
||||
"optional": true,
|
||||
"requires": {
|
||||
"wrappy": "1"
|
||||
}
|
||||
|
|
@ -3938,6 +3951,7 @@
|
|||
"string-width": {
|
||||
"version": "1.0.2",
|
||||
"bundled": true,
|
||||
"optional": true,
|
||||
"requires": {
|
||||
"code-point-at": "^1.0.0",
|
||||
"is-fullwidth-code-point": "^1.0.0",
|
||||
|
|
|
|||
Loading…
Reference in New Issue