├── LICENSE ├── Makefile ├── README.md ├── backend ├── .gitignore ├── README.md ├── conf │ └── config.yml ├── config │ └── config.go ├── go.mod ├── go.sum ├── handler │ ├── auth │ │ └── auth.go │ ├── blobstore │ │ ├── blobstore.go │ │ ├── common │ │ │ ├── config.go │ │ │ ├── disk.go │ │ │ ├── service.go │ │ │ └── volume.go │ │ ├── conf │ │ │ └── config.go │ │ ├── disk │ │ │ └── disk.go │ │ ├── node │ │ │ └── node.go │ │ ├── service │ │ │ └── service.go │ │ └── volume │ │ │ └── volume.go │ ├── cluster │ │ └── cluster.go │ ├── datanode │ │ └── datanode.go │ ├── datapartition │ │ └── datapartition.go │ ├── disk │ │ └── disk.go │ ├── domain │ │ └── domain.go │ ├── metanode │ │ └── metanode.go │ ├── metapartition │ │ └── metapartition.go │ ├── oplog │ │ ├── op_log.go │ │ └── op_type.go │ ├── s3 │ │ ├── dir.go │ │ ├── file.go │ │ ├── help.go │ │ ├── s3.go │ │ └── vol.go │ ├── user │ │ └── user.go │ └── vol │ │ └── vol.go ├── helper │ ├── auth_router │ │ └── auth_router.go │ ├── codes │ │ └── codes.go │ ├── const.go │ ├── crypt │ │ └── crypt.go │ ├── defaults │ │ ├── int.go │ │ └── str.go │ ├── enums │ │ ├── disk_status.go │ │ ├── env_mode.go │ │ ├── readonly_op.go │ │ ├── session_context.go │ │ ├── sort.go │ │ ├── user_type.go │ │ └── vol_type.go │ ├── ginutils │ │ ├── err.go │ │ ├── param_check.go │ │ ├── response.go │ │ └── session_context.go │ ├── helper.go │ ├── httputils │ │ ├── data.go │ │ └── httputil.go │ ├── middleware │ │ ├── auth.go │ │ ├── cors.go │ │ ├── default.go │ │ ├── logger.go │ │ ├── op_log.go │ │ └── session.go │ ├── node │ │ └── node.go │ ├── pool │ │ └── pool.go │ └── types │ │ ├── encrypt_str.go │ │ ├── map.go │ │ └── str_slice.go ├── main.go ├── model │ ├── auth.go │ ├── blobnode_config.go │ ├── cluster.go │ ├── migrate │ │ └── migrate.go │ ├── mysql │ │ └── mysql.go │ ├── op_log.go │ ├── op_type.go │ ├── user.go │ └── vol.go ├── router │ ├── auth_router.go │ ├── blobstore_router.go │ ├── cluster_router.go │ ├── cubefs_router.go │ ├── oplog_router.go │ ├── router.go │ ├── server.go │ └── static_router.go ├── service │ ├── auth │ │ ├── auth.go │ │ └── defaults.go │ ├── blobstore │ │ ├── api │ │ │ ├── api.go │ │ │ └── request.go │ │ ├── blobnode │ │ │ └── blobnode.go │ │ ├── clustermgr │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ └── data.go │ │ │ ├── disk │ │ │ │ └── disk.go │ │ │ ├── manage.go │ │ │ ├── service │ │ │ │ └── service.go │ │ │ └── volume │ │ │ │ └── volume.go │ │ ├── proxy │ │ │ └── proxy.go │ │ └── scheduler │ │ │ ├── request.go │ │ │ └── scheduler.go │ ├── cluster │ │ └── cluster.go │ ├── consul │ │ ├── cluster_mgr.go │ │ └── consul.go │ ├── datanode │ │ └── datanode.go │ ├── datapartition │ │ └── datapartition.go │ ├── disk │ │ └── disk.go │ ├── domain │ │ └── domain.go │ ├── metanode │ │ └── metanode.go │ ├── metapartition │ │ └── metapartition.go │ ├── user │ │ └── user.go │ └── vol │ │ ├── data.go │ │ └── vol.go └── vendor │ ├── github.com │ ├── aws │ │ └── aws-sdk-go │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICE.txt │ │ │ ├── aws │ │ │ ├── arn │ │ │ │ └── arn.go │ │ │ ├── awserr │ │ │ │ ├── error.go │ │ │ │ └── types.go │ │ │ ├── awsutil │ │ │ │ ├── copy.go │ │ │ │ ├── equal.go │ │ │ │ ├── path_value.go │ │ │ │ ├── prettify.go │ │ │ │ └── string_value.go │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ ├── default_retryer.go │ │ │ │ ├── logger.go │ │ │ │ ├── metadata │ │ │ │ │ └── client_info.go │ │ │ │ └── no_op_retryer.go │ │ │ ├── config.go │ │ │ ├── context_1_5.go │ │ │ ├── context_1_9.go │ │ │ ├── context_background_1_5.go │ │ │ ├── context_background_1_7.go │ │ │ ├── context_sleep.go │ │ │ ├── convert_types.go │ │ │ ├── corehandlers │ │ │ │ ├── handlers.go │ │ │ │ ├── param_validator.go │ │ │ │ └── user_agent.go │ │ │ ├── credentials │ │ │ │ ├── chain_provider.go │ │ │ │ ├── context_background_go1.5.go │ │ │ │ ├── context_background_go1.7.go │ │ │ │ ├── context_go1.5.go │ │ │ │ ├── context_go1.9.go │ │ │ │ ├── credentials.go │ │ │ │ ├── ec2rolecreds │ │ │ │ │ └── ec2_role_provider.go │ │ │ │ ├── endpointcreds │ │ │ │ │ └── provider.go │ │ │ │ ├── env_provider.go │ │ │ │ ├── example.ini │ │ │ │ ├── processcreds │ │ │ │ │ └── provider.go │ │ │ │ ├── shared_credentials_provider.go │ │ │ │ ├── static_provider.go │ │ │ │ └── stscreds │ │ │ │ │ ├── assume_role_provider.go │ │ │ │ │ └── web_identity_provider.go │ │ │ ├── csm │ │ │ │ ├── doc.go │ │ │ │ ├── enable.go │ │ │ │ ├── metric.go │ │ │ │ ├── metric_chan.go │ │ │ │ ├── metric_exception.go │ │ │ │ └── reporter.go │ │ │ ├── defaults │ │ │ │ ├── defaults.go │ │ │ │ └── shared_config.go │ │ │ ├── doc.go │ │ │ ├── ec2metadata │ │ │ │ ├── api.go │ │ │ │ ├── service.go │ │ │ │ └── token_provider.go │ │ │ ├── endpoints │ │ │ │ ├── decode.go │ │ │ │ ├── defaults.go │ │ │ │ ├── dep_service_ids.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── legacy_regions.go │ │ │ │ ├── v3model.go │ │ │ │ └── v3model_codegen.go │ │ │ ├── errors.go │ │ │ ├── jsonvalue.go │ │ │ ├── logger.go │ │ │ ├── request │ │ │ │ ├── connection_reset_error.go │ │ │ │ ├── handlers.go │ │ │ │ ├── http_request.go │ │ │ │ ├── offset_reader.go │ │ │ │ ├── request.go │ │ │ │ ├── request_1_7.go │ │ │ │ ├── request_1_8.go │ │ │ │ ├── request_context.go │ │ │ │ ├── request_context_1_6.go │ │ │ │ ├── request_pagination.go │ │ │ │ ├── retryer.go │ │ │ │ ├── timeout_read_closer.go │ │ │ │ ├── validation.go │ │ │ │ └── waiter.go │ │ │ ├── session │ │ │ │ ├── cabundle_transport.go │ │ │ │ ├── cabundle_transport_1_5.go │ │ │ │ ├── cabundle_transport_1_6.go │ │ │ │ ├── credentials.go │ │ │ │ ├── doc.go │ │ │ │ ├── env_config.go │ │ │ │ ├── session.go │ │ │ │ └── shared_config.go │ │ │ ├── signer │ │ │ │ └── v4 │ │ │ │ │ ├── header_rules.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── request_context_go1.5.go │ │ │ │ │ ├── request_context_go1.7.go │ │ │ │ │ ├── stream.go │ │ │ │ │ ├── uri_path.go │ │ │ │ │ └── v4.go │ │ │ ├── types.go │ │ │ ├── url.go │ │ │ ├── url_1_7.go │ │ │ └── version.go │ │ │ ├── internal │ │ │ ├── context │ │ │ │ └── background_go1.5.go │ │ │ ├── ini │ │ │ │ ├── ast.go │ │ │ │ ├── comma_token.go │ │ │ │ ├── comment_token.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty_token.go │ │ │ │ ├── expression.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── ini.go │ │ │ │ ├── ini_lexer.go │ │ │ │ ├── ini_parser.go │ │ │ │ ├── literal_tokens.go │ │ │ │ ├── newline_token.go │ │ │ │ ├── number_helper.go │ │ │ │ ├── op_tokens.go │ │ │ │ ├── parse_error.go │ │ │ │ ├── parse_stack.go │ │ │ │ ├── sep_tokens.go │ │ │ │ ├── skipper.go │ │ │ │ ├── statement.go │ │ │ │ ├── value_util.go │ │ │ │ ├── visitor.go │ │ │ │ ├── walker.go │ │ │ │ └── ws_token.go │ │ │ ├── s3err │ │ │ │ └── error.go │ │ │ ├── sdkio │ │ │ │ ├── byte.go │ │ │ │ ├── io_go1.6.go │ │ │ │ └── io_go1.7.go │ │ │ ├── sdkmath │ │ │ │ ├── floor.go │ │ │ │ └── floor_go1.9.go │ │ │ ├── sdkrand │ │ │ │ ├── locked_source.go │ │ │ │ ├── read.go │ │ │ │ └── read_1_5.go │ │ │ ├── sdkuri │ │ │ │ └── path.go │ │ │ ├── shareddefaults │ │ │ │ ├── ecs_container.go │ │ │ │ └── shared_config.go │ │ │ ├── strings │ │ │ │ └── strings.go │ │ │ └── sync │ │ │ │ └── singleflight │ │ │ │ ├── LICENSE │ │ │ │ └── singleflight.go │ │ │ ├── private │ │ │ ├── checksum │ │ │ │ └── content_md5.go │ │ │ └── protocol │ │ │ │ ├── eventstream │ │ │ │ ├── debug.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── error.go │ │ │ │ ├── eventstreamapi │ │ │ │ │ ├── error.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── shared.go │ │ │ │ │ ├── signer.go │ │ │ │ │ ├── stream_writer.go │ │ │ │ │ └── writer.go │ │ │ │ ├── header.go │ │ │ │ ├── header_value.go │ │ │ │ └── message.go │ │ │ │ ├── host.go │ │ │ │ ├── host_prefix.go │ │ │ │ ├── idempotency.go │ │ │ │ ├── json │ │ │ │ └── jsonutil │ │ │ │ │ ├── build.go │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── jsonvalue.go │ │ │ │ ├── payload.go │ │ │ │ ├── protocol.go │ │ │ │ ├── query │ │ │ │ ├── build.go │ │ │ │ ├── queryutil │ │ │ │ │ └── queryutil.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── unmarshal_error.go │ │ │ │ ├── rest │ │ │ │ ├── build.go │ │ │ │ ├── payload.go │ │ │ │ └── unmarshal.go │ │ │ │ ├── restxml │ │ │ │ └── restxml.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── unmarshal.go │ │ │ │ ├── unmarshal_error.go │ │ │ │ └── xml │ │ │ │ └── xmlutil │ │ │ │ ├── build.go │ │ │ │ ├── sort.go │ │ │ │ ├── unmarshal.go │ │ │ │ └── xml_to_struct.go │ │ │ └── service │ │ │ ├── s3 │ │ │ ├── api.go │ │ │ ├── body_hash.go │ │ │ ├── bucket_location.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── doc_custom.go │ │ │ ├── endpoint.go │ │ │ ├── endpoint_errors.go │ │ │ ├── errors.go │ │ │ ├── host_style_bucket.go │ │ │ ├── internal │ │ │ │ └── arn │ │ │ │ │ ├── accesspoint_arn.go │ │ │ │ │ └── arn.go │ │ │ ├── platform_handlers.go │ │ │ ├── platform_handlers_go1.6.go │ │ │ ├── service.go │ │ │ ├── sse.go │ │ │ ├── statusok_error.go │ │ │ ├── unmarshal_error.go │ │ │ └── waiters.go │ │ │ └── sts │ │ │ ├── api.go │ │ │ ├── customizations.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── service.go │ │ │ └── stsiface │ │ │ └── interface.go │ ├── cubefs │ │ ├── blobstore │ │ │ ├── LICENSE │ │ │ └── util │ │ │ │ └── log │ │ │ │ ├── log.go │ │ │ │ └── logext.go │ │ └── cubefs │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── blobstore │ │ │ ├── LICENSE │ │ │ ├── api │ │ │ │ ├── blobnode │ │ │ │ │ ├── chunk.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── datainfo.go │ │ │ │ │ ├── iostat.go │ │ │ │ │ ├── shard.go │ │ │ │ │ └── worker.go │ │ │ │ ├── clustermgr │ │ │ │ │ ├── client.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── disk.go │ │ │ │ │ ├── kv.go │ │ │ │ │ ├── proto.go │ │ │ │ │ ├── service.go │ │ │ │ │ └── volume.go │ │ │ │ ├── proxy │ │ │ │ │ ├── allocator.go │ │ │ │ │ ├── cacher.go │ │ │ │ │ ├── client.go │ │ │ │ │ ├── lb_client.go │ │ │ │ │ └── mq.go │ │ │ │ └── scheduler │ │ │ │ │ ├── client.go │ │ │ │ │ └── task.go │ │ │ ├── common │ │ │ │ ├── codemode │ │ │ │ │ ├── codemode.go │ │ │ │ │ └── policy.go │ │ │ │ ├── crc32block │ │ │ │ │ ├── block.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── request_body.go │ │ │ │ │ └── util.go │ │ │ │ ├── errors │ │ │ │ │ ├── access.go │ │ │ │ │ ├── allocator.go │ │ │ │ │ ├── blobnode.go │ │ │ │ │ ├── clustermgr.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── scheduler_sys.go │ │ │ │ ├── proto │ │ │ │ │ ├── basic.go │ │ │ │ │ ├── const.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ ├── scheduler.go │ │ │ │ │ └── vuid.go │ │ │ │ ├── raftserver │ │ │ │ │ ├── config.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── id.go │ │ │ │ │ ├── proto.pb.go │ │ │ │ │ ├── proto.proto │ │ │ │ │ ├── server.go │ │ │ │ │ ├── snapshotter.go │ │ │ │ │ ├── statemachine.go │ │ │ │ │ ├── storage.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── transport_sender.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── wait_time.go │ │ │ │ │ └── wal │ │ │ │ │ │ ├── file_cache.go │ │ │ │ │ │ ├── fileutil.go │ │ │ │ │ │ ├── log_file.go │ │ │ │ │ │ ├── log_index.go │ │ │ │ │ │ ├── log_storage.go │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ ├── record.go │ │ │ │ │ │ ├── record_reader.go │ │ │ │ │ │ ├── record_writer.go │ │ │ │ │ │ └── wal.go │ │ │ │ ├── rpc │ │ │ │ │ ├── argument.go │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth.go │ │ │ │ │ │ ├── authhandler.go │ │ │ │ │ │ └── authtransport.go │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── lb.go │ │ │ │ │ ├── middleware.go │ │ │ │ │ ├── proto.go │ │ │ │ │ ├── recovery.go │ │ │ │ │ ├── route.go │ │ │ │ │ ├── selector.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── simple.go │ │ │ │ └── trace │ │ │ │ │ ├── propagation.go │ │ │ │ │ ├── span.go │ │ │ │ │ ├── span_context.go │ │ │ │ │ ├── tracer.go │ │ │ │ │ └── tracer_options.go │ │ │ └── util │ │ │ │ ├── bytespool │ │ │ │ └── pool.go │ │ │ │ ├── errors │ │ │ │ ├── error_info.go │ │ │ │ └── errors.go │ │ │ │ ├── limit │ │ │ │ ├── count │ │ │ │ │ └── count.go │ │ │ │ └── limit.go │ │ │ │ ├── log │ │ │ │ ├── log.go │ │ │ │ └── logext.go │ │ │ │ ├── selector │ │ │ │ └── selector.go │ │ │ │ └── version │ │ │ │ └── version.go │ │ │ ├── proto │ │ │ ├── admin_proto.go │ │ │ ├── admin_task.go │ │ │ ├── auth_proto.go │ │ │ ├── errors.go │ │ │ ├── extent_key.go │ │ │ ├── fs_proto.go │ │ │ ├── meta_proto.go │ │ │ ├── model.go │ │ │ ├── mount_options.go │ │ │ ├── obj_extent_key.go │ │ │ ├── packet.go │ │ │ ├── perm_action.go │ │ │ ├── status.go │ │ │ ├── user_proto.go │ │ │ └── version.go │ │ │ └── util │ │ │ ├── auth │ │ │ └── auth.go │ │ │ ├── btree │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── btree.go │ │ │ ├── buf │ │ │ ├── bcache_pool.go │ │ │ ├── buffer_pool.go │ │ │ └── cache_pool.go │ │ │ ├── caps │ │ │ └── caps.go │ │ │ ├── cmsg.go │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── conn_pool.go │ │ │ ├── cryptoutil │ │ │ ├── const.go │ │ │ ├── cryptoutil.go │ │ │ └── ticket.go │ │ │ ├── errors │ │ │ └── errors.go │ │ │ ├── future.go │ │ │ ├── keystore │ │ │ ├── akstore.go │ │ │ └── keystore.go │ │ │ ├── log │ │ │ ├── log.go │ │ │ ├── log_get.go │ │ │ └── rotate.go │ │ │ ├── master_helper.go │ │ │ ├── mem.go │ │ │ ├── multipart.go │ │ │ ├── smux_conn_pool.go │ │ │ ├── string.go │ │ │ └── unit.go │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ ├── gin-contrib │ │ ├── sessions │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── gorm │ │ │ │ └── gorm.go │ │ │ ├── session_options_go1.10.go │ │ │ ├── session_options_go1.11.go │ │ │ └── sessions.go │ │ └── sse │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── sse-decoder.go │ │ │ ├── sse-encoder.go │ │ │ └── writer.go │ ├── gin-gonic │ │ └── gin │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS.md │ │ │ ├── BENCHMARKS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── binding │ │ │ ├── binding.go │ │ │ ├── binding_nomsgpack.go │ │ │ ├── default_validator.go │ │ │ ├── form.go │ │ │ ├── form_mapping.go │ │ │ ├── header.go │ │ │ ├── json.go │ │ │ ├── msgpack.go │ │ │ ├── multipart_form_mapping.go │ │ │ ├── protobuf.go │ │ │ ├── query.go │ │ │ ├── uri.go │ │ │ ├── xml.go │ │ │ └── yaml.go │ │ │ ├── codecov.yml │ │ │ ├── context.go │ │ │ ├── context_appengine.go │ │ │ ├── debug.go │ │ │ ├── deprecated.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── fs.go │ │ │ ├── gin.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── internal │ │ │ ├── bytesconv │ │ │ │ └── bytesconv.go │ │ │ └── json │ │ │ │ ├── json.go │ │ │ │ └── jsoniter.go │ │ │ ├── logger.go │ │ │ ├── mode.go │ │ │ ├── path.go │ │ │ ├── recovery.go │ │ │ ├── render │ │ │ ├── data.go │ │ │ ├── html.go │ │ │ ├── json.go │ │ │ ├── msgpack.go │ │ │ ├── protobuf.go │ │ │ ├── reader.go │ │ │ ├── redirect.go │ │ │ ├── render.go │ │ │ ├── text.go │ │ │ ├── xml.go │ │ │ └── yaml.go │ │ │ ├── response_writer.go │ │ │ ├── routergroup.go │ │ │ ├── test_helpers.go │ │ │ ├── tree.go │ │ │ ├── utils.go │ │ │ └── version.go │ ├── globalsign │ │ └── mgo │ │ │ ├── LICENSE │ │ │ ├── bson │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bson.go │ │ │ ├── compatibility.go │ │ │ ├── decimal.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── json.go │ │ │ └── stream.go │ │ │ └── internal │ │ │ └── json │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── extension.go │ │ │ ├── fold.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ └── tags.go │ ├── go-gormigrate │ │ └── gormigrate │ │ │ └── v2 │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .sample.env │ │ │ ├── CHANGELOG.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Taskfile.yml │ │ │ ├── doc.go │ │ │ ├── docker-compose.yml │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── gormigrate.go │ ├── go-playground │ │ ├── locales │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── currency │ │ │ │ └── currency.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── logo.png │ │ │ └── rules.go │ │ ├── universal-translator │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── import_export.go │ │ │ ├── logo.png │ │ │ ├── translator.go │ │ │ └── universal_translator.go │ │ └── validator │ │ │ └── v10 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── baked_in.go │ │ │ ├── cache.go │ │ │ ├── country_codes.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── field_level.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── logo.png │ │ │ ├── regexes.go │ │ │ ├── struct_level.go │ │ │ ├── translations.go │ │ │ ├── util.go │ │ │ ├── validator.go │ │ │ └── validator_instance.go │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── atomic_bool.go │ │ │ ├── atomic_bool_go118.go │ │ │ ├── auth.go │ │ │ ├── buffer.go │ │ │ ├── collations.go │ │ │ ├── conncheck.go │ │ │ ├── conncheck_dummy.go │ │ │ ├── connection.go │ │ │ ├── connector.go │ │ │ ├── const.go │ │ │ ├── driver.go │ │ │ ├── dsn.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── fuzz.go │ │ │ ├── go.mod │ │ │ ├── infile.go │ │ │ ├── nulltime.go │ │ │ ├── packets.go │ │ │ ├── result.go │ │ │ ├── rows.go │ │ │ ├── statement.go │ │ │ ├── transaction.go │ │ │ └── utils.go │ ├── gogo │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── custom_gogo.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── table_marshal.go │ │ │ ├── table_marshal_gogo.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── table_unmarshal_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gogo.go │ │ │ └── protoc-gen-gogo │ │ │ └── descriptor │ │ │ ├── Makefile │ │ │ ├── descriptor.go │ │ │ ├── descriptor.pb.go │ │ │ ├── descriptor_gostring.gen.go │ │ │ └── helper.go │ ├── golang │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ └── proto │ │ │ ├── buffer.go │ │ │ ├── defaults.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── extensions.go │ │ │ ├── properties.go │ │ │ ├── proto.go │ │ │ ├── registry.go │ │ │ ├── text_decode.go │ │ │ ├── text_encode.go │ │ │ ├── wire.go │ │ │ └── wrappers.go │ ├── google │ │ └── uuid │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── null.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── gorilla │ │ ├── context │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ └── doc.go │ │ ├── mux │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── middleware.go │ │ │ ├── mux.go │ │ │ ├── regexp.go │ │ │ ├── route.go │ │ │ └── test_helpers.go │ │ ├── securecookie │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── fuzz.go │ │ │ └── securecookie.go │ │ └── sessions │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cookie.go │ │ │ ├── cookie_go111.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── lex.go │ │ │ ├── options.go │ │ │ ├── options_go111.go │ │ │ ├── sessions.go │ │ │ └── store.go │ ├── hashicorp │ │ └── hcl │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── decoder.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hcl.go │ │ │ ├── hcl │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ └── walk.go │ │ │ ├── parser │ │ │ │ ├── error.go │ │ │ │ └── parser.go │ │ │ ├── printer │ │ │ │ ├── nodes.go │ │ │ │ └── printer.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ ├── strconv │ │ │ │ └── quote.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ │ ├── json │ │ │ ├── parser │ │ │ │ ├── flatten.go │ │ │ │ └── parser.go │ │ │ ├── scanner │ │ │ │ └── scanner.go │ │ │ └── token │ │ │ │ ├── position.go │ │ │ │ └── token.go │ │ │ ├── lex.go │ │ │ └── parse.go │ ├── jinzhu │ │ ├── copier │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── copier.go │ │ │ ├── errors.go │ │ │ └── go.mod │ │ ├── inflection │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── inflections.go │ │ │ └── wercker.yml │ │ └── now │ │ │ ├── Guardfile │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── main.go │ │ │ ├── now.go │ │ │ └── time.go │ ├── jmespath │ │ └── go-jmespath │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── astnodetype_string.go │ │ │ ├── functions.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── interpreter.go │ │ │ ├── lexer.go │ │ │ ├── parser.go │ │ │ ├── toktype_string.go │ │ │ └── util.go │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── julienschmidt │ │ └── httprouter │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── path.go │ │ │ ├── router.go │ │ │ └── tree.go │ ├── leodido │ │ └── go-urn │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── machine.go │ │ │ ├── machine.go.rl │ │ │ ├── makefile │ │ │ └── urn.go │ ├── magiconair │ │ └── properties │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── integrate.go │ │ │ ├── lex.go │ │ │ ├── load.go │ │ │ ├── parser.go │ │ │ ├── properties.go │ │ │ └── rangecheck.go │ ├── mattn │ │ └── go-isatty │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── go.test.sh │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_plan9.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_tcgets.go │ │ │ └── isatty_windows.go │ ├── mitchellh │ │ └── mapstructure │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ └── mapstructure.go │ ├── modern-go │ │ ├── concurrent │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── executor.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_19.go │ │ │ ├── log.go │ │ │ ├── test.sh │ │ │ └── unbounded_executor.go │ │ └── reflect2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go_above_118.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_118.go │ │ │ ├── reflect2.go │ │ │ ├── reflect2_amd64.s │ │ │ ├── reflect2_kind.go │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── safe_field.go │ │ │ ├── safe_map.go │ │ │ ├── safe_slice.go │ │ │ ├── safe_struct.go │ │ │ ├── safe_type.go │ │ │ ├── type_map.go │ │ │ ├── unsafe_array.go │ │ │ ├── unsafe_eface.go │ │ │ ├── unsafe_field.go │ │ │ ├── unsafe_iface.go │ │ │ ├── unsafe_link.go │ │ │ ├── unsafe_map.go │ │ │ ├── unsafe_ptr.go │ │ │ ├── unsafe_slice.go │ │ │ ├── unsafe_struct.go │ │ │ └── unsafe_type.go │ ├── opentracing │ │ └── opentracing-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ext.go │ │ │ ├── ext │ │ │ ├── field.go │ │ │ └── tags.go │ │ │ ├── globaltracer.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── gocontext.go │ │ │ ├── log │ │ │ ├── field.go │ │ │ └── util.go │ │ │ ├── noop.go │ │ │ ├── propagation.go │ │ │ ├── span.go │ │ │ └── tracer.go │ ├── pelletier │ │ └── go-toml │ │ │ ├── .dockerignore │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── README.md │ │ │ ├── azure-pipelines.yml │ │ │ ├── benchmark.sh │ │ │ ├── doc.go │ │ │ ├── example-crlf.toml │ │ │ ├── example.toml │ │ │ ├── fuzz.go │ │ │ ├── fuzz.sh │ │ │ ├── go.mod │ │ │ ├── keysparsing.go │ │ │ ├── lexer.go │ │ │ ├── localtime.go │ │ │ ├── marshal.go │ │ │ ├── marshal_OrderPreserve_test.toml │ │ │ ├── marshal_test.toml │ │ │ ├── parser.go │ │ │ ├── position.go │ │ │ ├── token.go │ │ │ ├── toml.go │ │ │ ├── tomlpub.go │ │ │ ├── tomltree_create.go │ │ │ ├── tomltree_write.go │ │ │ ├── tomltree_writepub.go │ │ │ └── v2 │ │ │ ├── .dockerignore │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.toml │ │ │ ├── .goreleaser.yaml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── ci.sh │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── internal │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ ├── builder.go │ │ │ │ └── kind.go │ │ │ ├── danger │ │ │ │ ├── danger.go │ │ │ │ └── typeid.go │ │ │ └── tracker │ │ │ │ ├── key.go │ │ │ │ ├── seen.go │ │ │ │ └── tracker.go │ │ │ ├── localtime.go │ │ │ ├── marshaler.go │ │ │ ├── parser.go │ │ │ ├── scanner.go │ │ │ ├── strict.go │ │ │ ├── toml.abnf │ │ │ ├── types.go │ │ │ ├── unmarshaler.go │ │ │ └── utf8.go │ ├── spf13 │ │ ├── afero │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── afero.go │ │ │ ├── appveyor.yml │ │ │ ├── basepath.go │ │ │ ├── cacheOnReadFs.go │ │ │ ├── const_bsds.go │ │ │ ├── const_win_unix.go │ │ │ ├── copyOnWriteFs.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── httpFs.go │ │ │ ├── iofs.go │ │ │ ├── ioutil.go │ │ │ ├── lstater.go │ │ │ ├── match.go │ │ │ ├── mem │ │ │ │ ├── dir.go │ │ │ │ ├── dirmap.go │ │ │ │ └── file.go │ │ │ ├── memmap.go │ │ │ ├── os.go │ │ │ ├── path.go │ │ │ ├── readonlyfs.go │ │ │ ├── regexpfs.go │ │ │ ├── symlink.go │ │ │ ├── unionFile.go │ │ │ └── util.go │ │ ├── cast │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cast.go │ │ │ ├── caste.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── timeformattype_string.go │ │ ├── jwalterweatherman │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── default_notepad.go │ │ │ ├── go.mod │ │ │ ├── log_counter.go │ │ │ └── notepad.go │ │ ├── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── bytes.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── duration_slice.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float32_slice.go │ │ │ ├── float64.go │ │ │ ├── float64_slice.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int32_slice.go │ │ │ ├── int64.go │ │ │ ├── int64_slice.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── string_to_int.go │ │ │ ├── string_to_int64.go │ │ │ ├── string_to_string.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ │ └── viper │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── TROUBLESHOOTING.md │ │ │ ├── experimental_logger.go │ │ │ ├── flags.go │ │ │ ├── fs.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── internal │ │ │ └── encoding │ │ │ │ ├── decoder.go │ │ │ │ ├── dotenv │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ │ ├── encoder.go │ │ │ │ ├── error.go │ │ │ │ ├── hcl │ │ │ │ └── codec.go │ │ │ │ ├── ini │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ │ ├── javaproperties │ │ │ │ ├── codec.go │ │ │ │ └── map_utils.go │ │ │ │ ├── json │ │ │ │ └── codec.go │ │ │ │ ├── toml │ │ │ │ ├── codec.go │ │ │ │ └── codec2.go │ │ │ │ └── yaml │ │ │ │ ├── codec.go │ │ │ │ ├── yaml2.go │ │ │ │ └── yaml3.go │ │ │ ├── logger.go │ │ │ ├── util.go │ │ │ ├── viper.go │ │ │ ├── viper_go1_15.go │ │ │ ├── viper_go1_16.go │ │ │ ├── watch.go │ │ │ └── watch_wasm.go │ ├── subosito │ │ └── gotenv │ │ │ ├── .env │ │ │ ├── .env.invalid │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ └── gotenv.go │ ├── ugorji │ │ └── go │ │ │ └── codec │ │ │ ├── 0_importpath.go │ │ │ ├── LICENSE │ │ │ ├── binc.go │ │ │ ├── build.sh │ │ │ ├── cbor.go │ │ │ ├── codecgen.go │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── fast-path.generated.go │ │ │ ├── fast-path.go.tmpl │ │ │ ├── fast-path.not.go │ │ │ ├── float.go │ │ │ ├── gen-dec-array.go.tmpl │ │ │ ├── gen-dec-map.go.tmpl │ │ │ ├── gen-enc-chan.go.tmpl │ │ │ ├── gen-helper.generated.go │ │ │ ├── gen-helper.go.tmpl │ │ │ ├── gen.generated.go │ │ │ ├── gen.go │ │ │ ├── go.mod │ │ │ ├── goversion_arrayof_gte_go15.go │ │ │ ├── goversion_arrayof_lt_go15.go │ │ │ ├── goversion_fmt_time_gte_go15.go │ │ │ ├── goversion_fmt_time_lt_go15.go │ │ │ ├── goversion_makemap_gte_go19.go │ │ │ ├── goversion_makemap_lt_go19.go │ │ │ ├── goversion_maprange_gte_go112.go │ │ │ ├── goversion_maprange_lt_go112.go │ │ │ ├── goversion_unexportedembeddedptr_gte_go110.go │ │ │ ├── goversion_unexportedembeddedptr_lt_go110.go │ │ │ ├── goversion_unsupported_lt_go14.go │ │ │ ├── goversion_vendor_eq_go15.go │ │ │ ├── goversion_vendor_eq_go16.go │ │ │ ├── goversion_vendor_gte_go17.go │ │ │ ├── goversion_vendor_lt_go15.go │ │ │ ├── helper.go │ │ │ ├── helper.s │ │ │ ├── helper_internal.go │ │ │ ├── helper_not_unsafe.go │ │ │ ├── helper_unsafe.go │ │ │ ├── json.go │ │ │ ├── mammoth-test.go.tmpl │ │ │ ├── mammoth2-test.go.tmpl │ │ │ ├── msgpack.go │ │ │ ├── prebuild.go │ │ │ ├── reader.go │ │ │ ├── register_ext.go │ │ │ ├── rpc.go │ │ │ ├── simple.go │ │ │ ├── sort-slice.generated.go │ │ │ ├── sort-slice.go.tmpl │ │ │ ├── test-cbor-goldens.json │ │ │ ├── test.py │ │ │ └── writer.go │ ├── wader │ │ └── gormstore │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── gormstore.go │ │ │ └── test │ └── xtaci │ │ └── smux │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alloc.go │ │ ├── curve.jpg │ │ ├── frame.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── mux.go │ │ ├── mux.jpg │ │ ├── session.go │ │ ├── shaper.go │ │ ├── smux.png │ │ └── stream.go │ ├── go.etcd.io │ └── etcd │ │ └── raft │ │ └── v3 │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── bootstrap.go │ │ ├── confchange │ │ ├── confchange.go │ │ └── restore.go │ │ ├── design.md │ │ ├── doc.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── log.go │ │ ├── log_unstable.go │ │ ├── logger.go │ │ ├── node.go │ │ ├── quorum │ │ ├── joint.go │ │ ├── majority.go │ │ ├── quorum.go │ │ └── voteresult_string.go │ │ ├── raft.go │ │ ├── raftpb │ │ ├── confchange.go │ │ ├── confstate.go │ │ ├── raft.pb.go │ │ └── raft.proto │ │ ├── rawnode.go │ │ ├── read_only.go │ │ ├── status.go │ │ ├── storage.go │ │ ├── tracker │ │ ├── inflights.go │ │ ├── progress.go │ │ ├── state.go │ │ └── tracker.go │ │ └── util.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── hashes_generic.go │ │ │ ├── keccakf.go │ │ │ ├── keccakf_amd64.go │ │ │ ├── keccakf_amd64.s │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── sha3_s390x.go │ │ │ ├── sha3_s390x.s │ │ │ ├── shake.go │ │ │ ├── shake_generic.go │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── context │ │ │ ├── context.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cpu │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── byteorder.go │ │ │ ├── cpu.go │ │ │ ├── cpu_aix.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_arm64.s │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_gc_s390x.go │ │ │ ├── cpu_gc_x86.go │ │ │ ├── cpu_gccgo_arm64.go │ │ │ ├── cpu_gccgo_s390x.go │ │ │ ├── cpu_gccgo_x86.c │ │ │ ├── cpu_gccgo_x86.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_linux_arm.go │ │ │ ├── cpu_linux_arm64.go │ │ │ ├── cpu_linux_mips64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_linux_ppc64x.go │ │ │ ├── cpu_linux_s390x.go │ │ │ ├── cpu_loong64.go │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_netbsd_arm64.go │ │ │ ├── cpu_other_arm.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_other_mips64x.go │ │ │ ├── cpu_ppc64x.go │ │ │ ├── cpu_riscv64.go │ │ │ ├── cpu_s390x.go │ │ │ ├── cpu_s390x.s │ │ │ ├── cpu_wasm.go │ │ │ ├── cpu_x86.go │ │ │ ├── cpu_x86.s │ │ │ ├── cpu_zos.go │ │ │ ├── cpu_zos_s390x.go │ │ │ ├── hwcap_linux.go │ │ │ ├── syscall_aix_gccgo.go │ │ │ └── syscall_aix_ppc64_gc.go │ │ ├── internal │ │ │ └── unsafeheader │ │ │ │ └── unsafeheader.go │ │ └── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_arm64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_loong64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── epoll_zos.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── errors_freebsd_arm64.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── fstatfs_zos.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.1_12.go │ │ │ ├── syscall_darwin.1_13.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_alarm.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── sysvshm_linux.go │ │ │ ├── sysvshm_unix.go │ │ │ ├── sysvshm_unix_other.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ │ ├── zsyscall_darwin_arm64.1_13.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_zos_s390x.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_illumos_amd64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ ├── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── transform │ │ │ └── transform.go │ │ └── unicode │ │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ └── trie.go │ │ └── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── rate │ │ └── rate.go │ ├── google.golang.org │ └── protobuf │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ ├── prototext │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire │ │ │ └── wire.go │ │ ├── internal │ │ ├── descfmt │ │ │ └── stringer.go │ │ ├── descopts │ │ │ └── options.go │ │ ├── detrand │ │ │ └── rand.go │ │ ├── encoding │ │ │ ├── defval │ │ │ │ └── default.go │ │ │ ├── messageset │ │ │ │ └── messageset.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── text │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── errors │ │ │ ├── errors.go │ │ │ ├── is_go112.go │ │ │ └── is_go113.go │ │ ├── filedesc │ │ │ ├── build.go │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_lazy.go │ │ │ ├── desc_list.go │ │ │ ├── desc_list_gen.go │ │ │ └── placeholder.go │ │ ├── filetype │ │ │ └── build.go │ │ ├── flags │ │ │ ├── flags.go │ │ │ ├── proto_legacy_disable.go │ │ │ └── proto_legacy_enable.go │ │ ├── genid │ │ │ ├── any_gen.go │ │ │ ├── api_gen.go │ │ │ ├── descriptor_gen.go │ │ │ ├── doc.go │ │ │ ├── duration_gen.go │ │ │ ├── empty_gen.go │ │ │ ├── field_mask_gen.go │ │ │ ├── goname.go │ │ │ ├── map_entry.go │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl │ │ │ ├── api_export.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_map_go111.go │ │ │ ├── codec_map_go112.go │ │ │ ├── codec_message.go │ │ │ ├── codec_messageset.go │ │ │ ├── codec_reflect.go │ │ │ ├── codec_tables.go │ │ │ ├── codec_unsafe.go │ │ │ ├── convert.go │ │ │ ├── convert_list.go │ │ │ ├── convert_map.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── enum.go │ │ │ ├── extension.go │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── validate.go │ │ │ └── weak.go │ │ ├── order │ │ │ ├── order.go │ │ │ └── range.go │ │ ├── pragma │ │ │ └── pragma.go │ │ ├── set │ │ │ └── ints.go │ │ ├── strs │ │ │ ├── strings.go │ │ │ ├── strings_pure.go │ │ │ └── strings_unsafe.go │ │ └── version │ │ │ └── version.go │ │ ├── proto │ │ ├── checkinit.go │ │ ├── decode.go │ │ ├── decode_gen.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_gen.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── merge.go │ │ ├── messageset.go │ │ ├── proto.go │ │ ├── proto_methods.go │ │ ├── proto_reflect.go │ │ ├── reset.go │ │ ├── size.go │ │ ├── size_gen.go │ │ └── wrappers.go │ │ ├── reflect │ │ ├── protodesc │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_resolve.go │ │ │ ├── desc_validate.go │ │ │ └── proto.go │ │ ├── protoreflect │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── source_gen.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_equal.go │ │ │ ├── value_pure.go │ │ │ ├── value_union.go │ │ │ └── value_unsafe.go │ │ └── protoregistry │ │ │ └── registry.go │ │ ├── runtime │ │ ├── protoiface │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl │ │ │ ├── impl.go │ │ │ └── version.go │ │ └── types │ │ └── descriptorpb │ │ └── descriptor.pb.go │ ├── gopkg.in │ ├── ini.v1 │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── codecov.yml │ │ ├── data_source.go │ │ ├── deprecated.go │ │ ├── error.go │ │ ├── file.go │ │ ├── helper.go │ │ ├── ini.go │ │ ├── key.go │ │ ├── parser.go │ │ ├── section.go │ │ └── struct.go │ ├── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── yaml.v3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ ├── gorm.io │ ├── driver │ │ └── mysql │ │ │ ├── .gitignore │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── error_translator.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── migrator.go │ │ │ └── mysql.go │ ├── gorm │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── License │ │ ├── README.md │ │ ├── association.go │ │ ├── callbacks.go │ │ ├── callbacks │ │ │ ├── associations.go │ │ │ ├── callbacks.go │ │ │ ├── callmethod.go │ │ │ ├── create.go │ │ │ ├── delete.go │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── preload.go │ │ │ ├── query.go │ │ │ ├── raw.go │ │ │ ├── row.go │ │ │ ├── transaction.go │ │ │ └── update.go │ │ ├── chainable_api.go │ │ ├── clause │ │ │ ├── clause.go │ │ │ ├── delete.go │ │ │ ├── expression.go │ │ │ ├── from.go │ │ │ ├── group_by.go │ │ │ ├── insert.go │ │ │ ├── joins.go │ │ │ ├── limit.go │ │ │ ├── locking.go │ │ │ ├── on_conflict.go │ │ │ ├── order_by.go │ │ │ ├── returning.go │ │ │ ├── select.go │ │ │ ├── set.go │ │ │ ├── update.go │ │ │ ├── values.go │ │ │ ├── where.go │ │ │ └── with.go │ │ ├── errors.go │ │ ├── finisher_api.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── gorm.go │ │ ├── interfaces.go │ │ ├── logger │ │ │ ├── logger.go │ │ │ └── sql.go │ │ ├── migrator.go │ │ ├── migrator │ │ │ ├── column_type.go │ │ │ ├── index.go │ │ │ └── migrator.go │ │ ├── model.go │ │ ├── prepare_stmt.go │ │ ├── scan.go │ │ ├── schema │ │ │ ├── check.go │ │ │ ├── field.go │ │ │ ├── index.go │ │ │ ├── interfaces.go │ │ │ ├── naming.go │ │ │ ├── pool.go │ │ │ ├── relationship.go │ │ │ ├── schema.go │ │ │ ├── serializer.go │ │ │ └── utils.go │ │ ├── soft_delete.go │ │ ├── statement.go │ │ └── utils │ │ │ └── utils.go │ └── plugin │ │ └── dbresolver │ │ ├── License │ │ ├── README.md │ │ ├── callbacks.go │ │ ├── clauses.go │ │ ├── database.go │ │ ├── dbresolver.go │ │ ├── docker-compose.yml │ │ ├── go.mod │ │ ├── go.sum │ │ ├── logger.go │ │ ├── policy.go │ │ ├── resolver.go │ │ └── utils.go │ └── modules.txt ├── depends ├── jacobsa │ ├── daemonize │ │ ├── LICENSE │ │ ├── daemonize.go │ │ └── go.mod │ └── fuse │ │ ├── LICENSE │ │ ├── README.md │ │ ├── connection.go │ │ ├── conversions.go │ │ ├── debug.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── freelists.go │ │ ├── fsutil │ │ ├── fdatasync_darwin.go │ │ ├── fdatasync_linux.go │ │ └── fsutil.go │ │ ├── fuseops │ │ ├── doc.go │ │ ├── ops.go │ │ └── simple_types.go │ │ ├── fusetesting │ │ ├── parallel.go │ │ ├── readdir.go │ │ ├── stat.go │ │ ├── stat_darwin.go │ │ └── stat_linux.go │ │ ├── fuseutil │ │ ├── dirent.go │ │ ├── doc.go │ │ ├── file_system.go │ │ └── not_implemented_file_system.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ ├── buffer │ │ │ ├── in_message.go │ │ │ ├── in_message_darwin.go │ │ │ ├── in_message_linux.go │ │ │ ├── out_message.go │ │ │ ├── out_message_darwin.go │ │ │ ├── out_message_linux.go │ │ │ ├── out_message_test.go │ │ │ ├── runtime.go │ │ │ ├── runtime_go1.8.s │ │ │ └── runtime_other.s │ │ ├── freelist │ │ │ └── freelist.go │ │ └── fusekernel │ │ │ ├── fuse_kernel.go │ │ │ ├── fuse_kernel_darwin.go │ │ │ ├── fuse_kernel_linux.go │ │ │ ├── fuse_kernel_std.go │ │ │ └── protocol.go │ │ ├── mount.go │ │ ├── mount_config.go │ │ ├── mount_darwin.go │ │ ├── mount_linux.go │ │ ├── mount_test.go │ │ ├── mounted_file_system.go │ │ ├── ops.go │ │ ├── samples │ │ ├── cachingfs │ │ │ ├── caching_fs.go │ │ │ └── caching_fs_test.go │ │ ├── dynamicfs │ │ │ ├── dynamic_fs.go │ │ │ └── dynamic_fs_test.go │ │ ├── errorfs │ │ │ ├── error_fs.go │ │ │ └── error_fs_test.go │ │ ├── flushfs │ │ │ ├── flush_fs.go │ │ │ └── flush_fs_test.go │ │ ├── forgetfs │ │ │ ├── forget_fs.go │ │ │ └── forget_fs_test.go │ │ ├── hellofs │ │ │ ├── hello_fs.go │ │ │ └── hello_fs_test.go │ │ ├── in_process.go │ │ ├── interruptfs │ │ │ ├── interrupt_fs.go │ │ │ └── interrupt_fs_test.go │ │ ├── memfs │ │ │ ├── inode.go │ │ │ ├── memfs.go │ │ │ ├── memfs_go18_test.go │ │ │ ├── memfs_others_test.go │ │ │ ├── memfs_test.go │ │ │ └── posix_test.go │ │ ├── mount_sample │ │ │ └── mount.go │ │ ├── statfs │ │ │ ├── statfs.go │ │ │ ├── statfs_darwin_test.go │ │ │ ├── statfs_linux_test.go │ │ │ └── statfs_test.go │ │ ├── subprocess.go │ │ └── unmount.go │ │ ├── unmount.go │ │ ├── unmount_linux.go │ │ └── unmount_std.go └── spf13 │ ├── cobra │ ├── .github │ │ ├── labeler.yml │ │ └── workflows │ │ │ ├── label.yml │ │ │ └── stale.yml │ ├── .gitignore │ ├── .mailmap │ ├── .travis.yml │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── args.go │ ├── args_test.go │ ├── bash_completions.go │ ├── bash_completions.md │ ├── bash_completions_test.go │ ├── cobra.go │ ├── cobra │ │ ├── Makefile │ │ ├── README.md │ │ ├── cmd │ │ │ ├── add.go │ │ │ ├── add_test.go │ │ │ ├── golden_test.go │ │ │ ├── helpers.go │ │ │ ├── init.go │ │ │ ├── init_test.go │ │ │ ├── license_agpl.go │ │ │ ├── license_apache_2.go │ │ │ ├── license_bsd_clause_2.go │ │ │ ├── license_bsd_clause_3.go │ │ │ ├── license_gpl_2.go │ │ │ ├── license_gpl_3.go │ │ │ ├── license_lgpl.go │ │ │ ├── license_mit.go │ │ │ ├── licenses.go │ │ │ ├── project.go │ │ │ ├── project_test.go │ │ │ ├── root.go │ │ │ └── testdata │ │ │ │ ├── LICENSE.golden │ │ │ │ ├── main.go.golden │ │ │ │ ├── root.go.golden │ │ │ │ └── test.go.golden │ │ ├── main.go │ │ └── tpl │ │ │ └── main.go │ ├── cobra_test.go │ ├── command.go │ ├── command_notwin.go │ ├── command_test.go │ ├── command_win.go │ ├── custom_completions.go │ ├── custom_completions_test.go │ ├── doc │ │ ├── cmd_test.go │ │ ├── man_docs.go │ │ ├── man_docs.md │ │ ├── man_docs_test.go │ │ ├── man_examples_test.go │ │ ├── md_docs.go │ │ ├── md_docs.md │ │ ├── md_docs_test.go │ │ ├── rest_docs.go │ │ ├── rest_docs.md │ │ ├── rest_docs_test.go │ │ ├── util.go │ │ ├── yaml_docs.go │ │ ├── yaml_docs.md │ │ └── yaml_docs_test.go │ ├── fish_completions.go │ ├── fish_completions.md │ ├── go.mod │ ├── go.sum │ ├── powershell_completions.go │ ├── powershell_completions.md │ ├── powershell_completions_test.go │ ├── shell_completions.go │ ├── zsh_completions.go │ ├── zsh_completions.md │ └── zsh_completions_test.go │ └── pflag │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bool.go │ ├── bool_slice.go │ ├── bytes.go │ ├── count.go │ ├── duration.go │ ├── duration_slice.go │ ├── flag.go │ ├── float32.go │ ├── float64.go │ ├── golangflag.go │ ├── int.go │ ├── int16.go │ ├── int32.go │ ├── int64.go │ ├── int8.go │ ├── int_slice.go │ ├── ip.go │ ├── ip_slice.go │ ├── ipmask.go │ ├── ipnet.go │ ├── string.go │ ├── string_array.go │ ├── string_slice.go │ ├── string_to_int.go │ ├── string_to_string.go │ ├── uint.go │ ├── uint16.go │ ├── uint32.go │ ├── uint64.go │ ├── uint8.go │ └── uint_slice.go ├── frontend ├── .browserslistrc ├── .editorconfig ├── .env ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── babel.config.js ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── api │ │ ├── ajax.js │ │ ├── auth │ │ │ └── index.js │ │ ├── cfs │ │ │ └── cluster.js │ │ ├── ebs │ │ │ └── ebs.js │ │ └── env.js │ ├── assets │ │ ├── images │ │ │ ├── cloudlogo.png │ │ │ ├── country.png │ │ │ ├── login.png │ │ │ ├── logo.png │ │ │ ├── logo2.png │ │ │ ├── logo3.png │ │ │ ├── nav-logo.png │ │ │ ├── zone_code_is_maintain.png │ │ │ └── zone_code_not_available.png │ │ ├── styles │ │ │ ├── admin.scss │ │ │ ├── config.scss │ │ │ ├── element.scss │ │ │ ├── element │ │ │ │ ├── fonts │ │ │ │ │ ├── element-icons.ttf │ │ │ │ │ └── element-icons.woff │ │ │ │ └── index.css │ │ │ ├── helper.scss │ │ │ ├── icon.scss │ │ │ ├── index.scss │ │ │ └── mixins.scss │ │ └── svg │ │ │ ├── SvgIcon.vue │ │ │ ├── icon_error.svg │ │ │ ├── icon_success.svg │ │ │ └── icon_warning.svg │ ├── components │ │ ├── EbsClusterSelectForm.vue │ │ ├── Pagination.vue │ │ ├── circleCharts.vue │ │ ├── common │ │ │ ├── ErrorPage │ │ │ │ ├── 404.png │ │ │ │ ├── 404_cloud.png │ │ │ │ └── index.vue │ │ │ ├── Loading.vue │ │ │ ├── ODropdown.vue │ │ │ ├── OForm.vue │ │ │ ├── OIcon.vue │ │ │ ├── OPageTable.vue │ │ │ └── OSearch.vue │ │ ├── diskRepairStatus.vue │ │ ├── ebsCircleCharts.vue │ │ ├── moreOPerate.vue │ │ └── uPageTable.vue │ ├── i18n │ │ ├── index.js │ │ └── lang │ │ │ ├── en │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── zh │ │ │ └── index.js │ ├── layouts │ │ ├── Common │ │ │ ├── DashboardLayout │ │ │ │ ├── Breadcrumb.vue │ │ │ │ ├── CloudContent.vue │ │ │ │ ├── MenuTree │ │ │ │ │ ├── MenuTreeItem.vue │ │ │ │ │ └── index.vue │ │ │ │ └── index.vue │ │ │ ├── components │ │ │ │ └── MainContent │ │ │ │ │ └── index.vue │ │ │ └── index.js │ │ └── Noop.vue │ ├── main.js │ ├── pages │ │ ├── authManage │ │ │ ├── role │ │ │ │ ├── index.vue │ │ │ │ └── roleDialog.vue │ │ │ └── user │ │ │ │ ├── index.vue │ │ │ │ └── userDialog.vue │ │ ├── cfs │ │ │ ├── clusterOverview │ │ │ │ ├── clusterInfo │ │ │ │ │ ├── components │ │ │ │ │ │ ├── NodeMigrate.vue │ │ │ │ │ │ ├── graphics.js │ │ │ │ │ │ ├── graphicsBoard.vue │ │ │ │ │ │ ├── nodeDetail.vue │ │ │ │ │ │ └── searchCom.vue │ │ │ │ │ ├── dataManage │ │ │ │ │ │ ├── blobStoreVolume │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── searchCom.vue │ │ │ │ │ │ │ │ └── searchComW.vue │ │ │ │ │ │ │ ├── detail.vue │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ ├── nodeDetail.vue │ │ │ │ │ │ │ ├── volumnDetail.vue │ │ │ │ │ │ │ └── writtingVol.vue │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── Detail.vue │ │ │ │ │ │ │ └── ReplicasCard.vue │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── partition.vue │ │ │ │ │ ├── events │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── blobStoreEvent.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── metaDataManage │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── Detail.vue │ │ │ │ │ │ │ └── ReplicasCard.vue │ │ │ │ │ │ └── metaPartition.vue │ │ │ │ │ ├── mixin.js │ │ │ │ │ ├── resourceManage │ │ │ │ │ │ ├── blobStoreNode │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ └── searchCom.vue │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── dataNode │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ └── Detail.vue │ │ │ │ │ │ │ ├── dataNodeInfo.vue │ │ │ │ │ │ │ ├── dataNodePartitionInfo.vue │ │ │ │ │ │ │ └── node.vue │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── metaNode │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── Detail.vue │ │ │ │ │ │ │ ├── metaNode.vue │ │ │ │ │ │ │ └── metaNodePartitionInfo.vue │ │ │ │ │ ├── user │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── createUser.vue │ │ │ │ │ │ │ └── transferVols.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ └── volumn │ │ │ │ │ │ ├── coldVolume │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── auth.vue │ │ │ │ │ │ │ ├── createDp.vue │ │ │ │ │ │ │ ├── createMp.vue │ │ │ │ │ │ │ ├── createVol.vue │ │ │ │ │ │ │ ├── expansion.vue │ │ │ │ │ │ │ └── updateVol.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── metaPartition.vue │ │ │ │ │ │ ├── multipleVolume │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── auth.vue │ │ │ │ │ │ │ ├── createDp.vue │ │ │ │ │ │ │ ├── createMp.vue │ │ │ │ │ │ │ ├── createVol.vue │ │ │ │ │ │ │ ├── expansion.vue │ │ │ │ │ │ │ └── updateVol.vue │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ └── partition.vue │ │ │ │ ├── index.vue │ │ │ │ └── mixin.js │ │ │ ├── fileManage │ │ │ │ ├── fileList │ │ │ │ │ ├── Cors │ │ │ │ │ │ ├── Index.vue │ │ │ │ │ │ └── NewCors.vue │ │ │ │ │ ├── components │ │ │ │ │ │ ├── Pagination.vue │ │ │ │ │ │ ├── UploadDialog.vue │ │ │ │ │ │ ├── UploadFolder.vue │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── contenttype.js │ │ │ │ │ │ ├── moduleBucketTitle.vue │ │ │ │ │ │ └── upload.js │ │ │ │ │ ├── file.vue │ │ │ │ │ └── index.vue │ │ │ │ └── index.vue │ │ │ └── status.conf.js │ │ ├── components │ │ │ ├── base-form.vue │ │ │ ├── chartFlow.vue │ │ │ ├── filter │ │ │ │ └── index.vue │ │ │ ├── listDetailCom.vue │ │ │ ├── moduleBucketTitle.vue │ │ │ ├── moreOPerate.vue │ │ │ ├── uLabel.vue │ │ │ └── uPageTable.vue │ │ └── login │ │ │ ├── index.vue │ │ │ └── logo.vue │ ├── router │ │ ├── cfs.js │ │ └── index.js │ ├── store │ │ ├── actions.js │ │ ├── getter.js │ │ ├── index.js │ │ ├── modules │ │ │ ├── cluster.js │ │ │ ├── ebs.js │ │ │ └── user.js │ │ └── mutations.js │ └── utils │ │ ├── ajax.js │ │ ├── auth.js │ │ ├── index.js │ │ ├── indexDb.js │ │ └── translate.js └── vue.config.js └── pictures ├── architecture.png ├── cluster_overview.png ├── file_management.png └── role_management.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | /config.yml 2 | .idea -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- 1 | # cubefs console -------------------------------------------------------------------------------- /backend/conf/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/conf/config.yml -------------------------------------------------------------------------------- /backend/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/config/config.go -------------------------------------------------------------------------------- /backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/go.mod -------------------------------------------------------------------------------- /backend/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/go.sum -------------------------------------------------------------------------------- /backend/handler/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/auth/auth.go -------------------------------------------------------------------------------- /backend/handler/blobstore/blobstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/blobstore/blobstore.go -------------------------------------------------------------------------------- /backend/handler/blobstore/common/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/blobstore/common/config.go -------------------------------------------------------------------------------- /backend/handler/blobstore/common/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/blobstore/common/disk.go -------------------------------------------------------------------------------- /backend/handler/blobstore/common/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/blobstore/common/service.go -------------------------------------------------------------------------------- /backend/handler/blobstore/common/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/blobstore/common/volume.go -------------------------------------------------------------------------------- /backend/handler/blobstore/conf/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/blobstore/conf/config.go -------------------------------------------------------------------------------- /backend/handler/blobstore/disk/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/blobstore/disk/disk.go -------------------------------------------------------------------------------- /backend/handler/blobstore/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/blobstore/node/node.go -------------------------------------------------------------------------------- /backend/handler/blobstore/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/blobstore/service/service.go -------------------------------------------------------------------------------- /backend/handler/blobstore/volume/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/blobstore/volume/volume.go -------------------------------------------------------------------------------- /backend/handler/cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/cluster/cluster.go -------------------------------------------------------------------------------- /backend/handler/datanode/datanode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/datanode/datanode.go -------------------------------------------------------------------------------- /backend/handler/datapartition/datapartition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/datapartition/datapartition.go -------------------------------------------------------------------------------- /backend/handler/disk/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/disk/disk.go -------------------------------------------------------------------------------- /backend/handler/domain/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/domain/domain.go -------------------------------------------------------------------------------- /backend/handler/metanode/metanode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/metanode/metanode.go -------------------------------------------------------------------------------- /backend/handler/metapartition/metapartition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/metapartition/metapartition.go -------------------------------------------------------------------------------- /backend/handler/oplog/op_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/oplog/op_log.go -------------------------------------------------------------------------------- /backend/handler/oplog/op_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/oplog/op_type.go -------------------------------------------------------------------------------- /backend/handler/s3/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/s3/dir.go -------------------------------------------------------------------------------- /backend/handler/s3/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/s3/file.go -------------------------------------------------------------------------------- /backend/handler/s3/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/s3/help.go -------------------------------------------------------------------------------- /backend/handler/s3/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/s3/s3.go -------------------------------------------------------------------------------- /backend/handler/s3/vol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/s3/vol.go -------------------------------------------------------------------------------- /backend/handler/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/user/user.go -------------------------------------------------------------------------------- /backend/handler/vol/vol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/handler/vol/vol.go -------------------------------------------------------------------------------- /backend/helper/auth_router/auth_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/auth_router/auth_router.go -------------------------------------------------------------------------------- /backend/helper/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/codes/codes.go -------------------------------------------------------------------------------- /backend/helper/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/const.go -------------------------------------------------------------------------------- /backend/helper/crypt/crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/crypt/crypt.go -------------------------------------------------------------------------------- /backend/helper/defaults/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/defaults/int.go -------------------------------------------------------------------------------- /backend/helper/defaults/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/defaults/str.go -------------------------------------------------------------------------------- /backend/helper/enums/disk_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/enums/disk_status.go -------------------------------------------------------------------------------- /backend/helper/enums/env_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/enums/env_mode.go -------------------------------------------------------------------------------- /backend/helper/enums/readonly_op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/enums/readonly_op.go -------------------------------------------------------------------------------- /backend/helper/enums/session_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/enums/session_context.go -------------------------------------------------------------------------------- /backend/helper/enums/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/enums/sort.go -------------------------------------------------------------------------------- /backend/helper/enums/user_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/enums/user_type.go -------------------------------------------------------------------------------- /backend/helper/enums/vol_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/enums/vol_type.go -------------------------------------------------------------------------------- /backend/helper/ginutils/err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/ginutils/err.go -------------------------------------------------------------------------------- /backend/helper/ginutils/param_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/ginutils/param_check.go -------------------------------------------------------------------------------- /backend/helper/ginutils/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/ginutils/response.go -------------------------------------------------------------------------------- /backend/helper/ginutils/session_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/ginutils/session_context.go -------------------------------------------------------------------------------- /backend/helper/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/helper.go -------------------------------------------------------------------------------- /backend/helper/httputils/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/httputils/data.go -------------------------------------------------------------------------------- /backend/helper/httputils/httputil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/httputils/httputil.go -------------------------------------------------------------------------------- /backend/helper/middleware/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/middleware/auth.go -------------------------------------------------------------------------------- /backend/helper/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/middleware/cors.go -------------------------------------------------------------------------------- /backend/helper/middleware/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/middleware/default.go -------------------------------------------------------------------------------- /backend/helper/middleware/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/middleware/logger.go -------------------------------------------------------------------------------- /backend/helper/middleware/op_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/middleware/op_log.go -------------------------------------------------------------------------------- /backend/helper/middleware/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/middleware/session.go -------------------------------------------------------------------------------- /backend/helper/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/node/node.go -------------------------------------------------------------------------------- /backend/helper/pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/pool/pool.go -------------------------------------------------------------------------------- /backend/helper/types/encrypt_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/types/encrypt_str.go -------------------------------------------------------------------------------- /backend/helper/types/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/types/map.go -------------------------------------------------------------------------------- /backend/helper/types/str_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/helper/types/str_slice.go -------------------------------------------------------------------------------- /backend/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/main.go -------------------------------------------------------------------------------- /backend/model/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/model/auth.go -------------------------------------------------------------------------------- /backend/model/blobnode_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/model/blobnode_config.go -------------------------------------------------------------------------------- /backend/model/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/model/cluster.go -------------------------------------------------------------------------------- /backend/model/migrate/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/model/migrate/migrate.go -------------------------------------------------------------------------------- /backend/model/mysql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/model/mysql/mysql.go -------------------------------------------------------------------------------- /backend/model/op_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/model/op_log.go -------------------------------------------------------------------------------- /backend/model/op_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/model/op_type.go -------------------------------------------------------------------------------- /backend/model/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/model/user.go -------------------------------------------------------------------------------- /backend/model/vol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/model/vol.go -------------------------------------------------------------------------------- /backend/router/auth_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/router/auth_router.go -------------------------------------------------------------------------------- /backend/router/blobstore_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/router/blobstore_router.go -------------------------------------------------------------------------------- /backend/router/cluster_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/router/cluster_router.go -------------------------------------------------------------------------------- /backend/router/cubefs_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/router/cubefs_router.go -------------------------------------------------------------------------------- /backend/router/oplog_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/router/oplog_router.go -------------------------------------------------------------------------------- /backend/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/router/router.go -------------------------------------------------------------------------------- /backend/router/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/router/server.go -------------------------------------------------------------------------------- /backend/router/static_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/router/static_router.go -------------------------------------------------------------------------------- /backend/service/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/auth/auth.go -------------------------------------------------------------------------------- /backend/service/auth/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/auth/defaults.go -------------------------------------------------------------------------------- /backend/service/blobstore/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/blobstore/api/api.go -------------------------------------------------------------------------------- /backend/service/blobstore/api/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/blobstore/api/request.go -------------------------------------------------------------------------------- /backend/service/blobstore/blobnode/blobnode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/blobstore/blobnode/blobnode.go -------------------------------------------------------------------------------- /backend/service/blobstore/clustermgr/config/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/blobstore/clustermgr/config/data.go -------------------------------------------------------------------------------- /backend/service/blobstore/clustermgr/disk/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/blobstore/clustermgr/disk/disk.go -------------------------------------------------------------------------------- /backend/service/blobstore/clustermgr/manage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/blobstore/clustermgr/manage.go -------------------------------------------------------------------------------- /backend/service/blobstore/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/blobstore/proxy/proxy.go -------------------------------------------------------------------------------- /backend/service/blobstore/scheduler/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/blobstore/scheduler/request.go -------------------------------------------------------------------------------- /backend/service/blobstore/scheduler/scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/blobstore/scheduler/scheduler.go -------------------------------------------------------------------------------- /backend/service/cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/cluster/cluster.go -------------------------------------------------------------------------------- /backend/service/consul/cluster_mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/consul/cluster_mgr.go -------------------------------------------------------------------------------- /backend/service/consul/consul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/consul/consul.go -------------------------------------------------------------------------------- /backend/service/datanode/datanode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/datanode/datanode.go -------------------------------------------------------------------------------- /backend/service/datapartition/datapartition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/datapartition/datapartition.go -------------------------------------------------------------------------------- /backend/service/disk/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/disk/disk.go -------------------------------------------------------------------------------- /backend/service/domain/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/domain/domain.go -------------------------------------------------------------------------------- /backend/service/metanode/metanode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/metanode/metanode.go -------------------------------------------------------------------------------- /backend/service/metapartition/metapartition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/metapartition/metapartition.go -------------------------------------------------------------------------------- /backend/service/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/user/user.go -------------------------------------------------------------------------------- /backend/service/vol/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/vol/data.go -------------------------------------------------------------------------------- /backend/service/vol/vol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/service/vol/vol.go -------------------------------------------------------------------------------- /backend/vendor/github.com/aws/aws-sdk-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/aws/aws-sdk-go/LICENSE.txt -------------------------------------------------------------------------------- /backend/vendor/github.com/aws/aws-sdk-go/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/aws/aws-sdk-go/NOTICE.txt -------------------------------------------------------------------------------- /backend/vendor/github.com/aws/aws-sdk-go/aws/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/aws/aws-sdk-go/aws/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/aws/aws-sdk-go/aws/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/aws/aws-sdk-go/aws/url.go -------------------------------------------------------------------------------- /backend/vendor/github.com/cubefs/blobstore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/cubefs/blobstore/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/cubefs/cubefs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/cubefs/cubefs/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/cubefs/cubefs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/cubefs/cubefs/NOTICE -------------------------------------------------------------------------------- /backend/vendor/github.com/cubefs/cubefs/util/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/cubefs/cubefs/util/cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/cubefs/cubefs/util/cmsg.go -------------------------------------------------------------------------------- /backend/vendor/github.com/cubefs/cubefs/util/mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/cubefs/cubefs/util/mem.go -------------------------------------------------------------------------------- /backend/vendor/github.com/cubefs/cubefs/util/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/cubefs/cubefs/util/unit.go -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/fsnotify/fsnotify/.mailmap -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/fsnotify/fsnotify/AUTHORS -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/fsnotify/fsnotify/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/fsnotify/fsnotify/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/fsnotify/fsnotify/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-contrib/sse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-contrib/sse/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-contrib/sse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-contrib/sse/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-contrib/sse/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-contrib/sse/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-contrib/sse/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-contrib/sse/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-contrib/sse/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-contrib/sse/writer.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/.travis.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/AUTHORS.md -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/CHANGELOG.md -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/Makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/auth.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/codecov.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/context.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/debug.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/errors.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/fs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/gin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/gin.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/logger.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/mode.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/path.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/recovery.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/tree.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/utils.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gin-gonic/gin/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gin-gonic/gin/version.go -------------------------------------------------------------------------------- /backend/vendor/github.com/globalsign/mgo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/globalsign/mgo/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/go-gormigrate/gormigrate/v2/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/go-gormigrate/gormigrate/v2/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM golang:1.15.1 2 | 3 | WORKDIR /gormigrate 4 | COPY . . 5 | 6 | RUN go mod download 7 | -------------------------------------------------------------------------------- /backend/vendor/github.com/go-sql-driver/mysql/dsn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/go-sql-driver/mysql/dsn.go -------------------------------------------------------------------------------- /backend/vendor/github.com/go-sql-driver/mysql/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/go-sql-driver/mysql 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /backend/vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /backend/vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /backend/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /backend/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/.travis.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /backend/vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/context/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/context/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/context/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/mux/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/mux/AUTHORS -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/mux/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/mux/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/gorilla/mux 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/mux/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/mux/regexp.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/sessions/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/sessions/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/sessions/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/sessions/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/sessions/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/sessions/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/gorilla/sessions/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/gorilla/sessions/lex.go -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/hashicorp/hcl/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/hashicorp/hcl/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /backend/vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/copier/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/jinzhu/copier/License -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/copier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/jinzhu/copier/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/copier/copier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/jinzhu/copier/copier.go -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/copier/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/jinzhu/copier/errors.go -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/copier/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/jinzhu/copier 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/inflection/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/jinzhu/inflection 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/now/Guardfile: -------------------------------------------------------------------------------- 1 | guard 'gotest' do 2 | watch(%r{\.go$}) 3 | end 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/now/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/jinzhu/now/License -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/now/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/jinzhu/now/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/now/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/jinzhu/now 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/now/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/jinzhu/now/main.go -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/now/now.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/jinzhu/now/now.go -------------------------------------------------------------------------------- /backend/vendor/github.com/jinzhu/now/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/jinzhu/now/time.go -------------------------------------------------------------------------------- /backend/vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /backend/vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /backend/vendor/github.com/json-iterator/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/json-iterator/go/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/json-iterator/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/json-iterator/go/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/julienschmidt/httprouter/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/julienschmidt/httprouter 2 | 3 | go 1.7 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/leodido/go-urn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/leodido/go-urn/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/leodido/go-urn/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/leodido/go-urn/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/leodido/go-urn/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/leodido/go-urn/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/leodido/go-urn/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/leodido/go-urn/makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/leodido/go-urn/urn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/leodido/go-urn/urn.go -------------------------------------------------------------------------------- /backend/vendor/github.com/magiconair/properties/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/magiconair/properties 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-isatty/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/mattn/go-isatty/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/mattn/go-isatty/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/mattn/go-isatty/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/modern-go/reflect2 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/opentracing/opentracing-go/.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/pelletier/go-toml 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/pelletier/go-toml/v2/internal/tracker/tracker.go: -------------------------------------------------------------------------------- 1 | package tracker 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/.travis.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/basepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/basepath.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/iofs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/iofs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/mem/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/mem/file.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/regexpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/regexpfs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/symlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/symlink.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/cast/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/cast/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/cast/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/pflag 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/Makefile -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/fs.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/go.sum -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/logger.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /backend/vendor/github.com/spf13/viper/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/spf13/viper/watch.go -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/.env: -------------------------------------------------------------------------------- 1 | HELLO=world 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/.env.invalid: -------------------------------------------------------------------------------- 1 | lol$wut 2 | -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.out 3 | annotate.json 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/subosito/gotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/subosito/gotenv/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/ugorji/go/codec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/ugorji/go/codec/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/ugorji/go/codec/binc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/ugorji/go/codec/binc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/ugorji/go/codec/cbor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/ugorji/go/codec/cbor.go -------------------------------------------------------------------------------- /backend/vendor/github.com/ugorji/go/codec/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/ugorji/go/codec/doc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/ugorji/go/codec/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/ugorji/go/codec/gen.go -------------------------------------------------------------------------------- /backend/vendor/github.com/ugorji/go/codec/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/ugorji/go/codec/go.mod -------------------------------------------------------------------------------- /backend/vendor/github.com/ugorji/go/codec/helper.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/ugorji/go/codec/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/ugorji/go/codec/json.go -------------------------------------------------------------------------------- /backend/vendor/github.com/ugorji/go/codec/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/ugorji/go/codec/rpc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/ugorji/go/codec/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/ugorji/go/codec/test.py -------------------------------------------------------------------------------- /backend/vendor/github.com/wader/gormstore/v2/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/wader/gormstore/v2/test -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/.gitignore -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/.travis.yml -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/LICENSE -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/README.md -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/alloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/alloc.go -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/curve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/curve.jpg -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/frame.go -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/xtaci/smux 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/mux.go -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/mux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/mux.jpg -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/session.go -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/shaper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/shaper.go -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/smux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/smux.png -------------------------------------------------------------------------------- /backend/vendor/github.com/xtaci/smux/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/github.com/xtaci/smux/stream.go -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/LICENSE -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/OWNERS -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/README.md -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/design.md -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/doc.go -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/go.mod -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/go.sum -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/log.go -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/logger.go -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/node.go -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/raft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/raft.go -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/rawnode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/rawnode.go -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/status.go -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/storage.go -------------------------------------------------------------------------------- /backend/vendor/go.etcd.io/etcd/raft/v3/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/go.etcd.io/etcd/raft/v3/util.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/byteorder.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_x86.s -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/epoll_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/epoll_zos.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /backend/vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /backend/vendor/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /backend/vendor/google.golang.org/protobuf/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/google.golang.org/protobuf/PATENTS -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/.editorconfig -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/.gitignore -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/.golangci.yml -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/LICENSE -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/Makefile -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/README.md -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/codecov.yml -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/data_source.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/deprecated.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/error.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/file.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/helper.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/ini.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/key.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/parser.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/section.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/ini.v1/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/ini.v1/struct.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/go.mod -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /backend/vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/driver/mysql/.gitignore: -------------------------------------------------------------------------------- 1 | TODO* 2 | documents 3 | coverage.txt 4 | _book 5 | .idea 6 | vendor -------------------------------------------------------------------------------- /backend/vendor/gorm.io/driver/mysql/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/driver/mysql/License -------------------------------------------------------------------------------- /backend/vendor/gorm.io/driver/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/driver/mysql/README.md -------------------------------------------------------------------------------- /backend/vendor/gorm.io/driver/mysql/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/driver/mysql/go.mod -------------------------------------------------------------------------------- /backend/vendor/gorm.io/driver/mysql/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/driver/mysql/go.sum -------------------------------------------------------------------------------- /backend/vendor/gorm.io/driver/mysql/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/driver/mysql/migrator.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/driver/mysql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/driver/mysql/mysql.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/.gitignore: -------------------------------------------------------------------------------- 1 | TODO* 2 | documents 3 | coverage.txt 4 | _book 5 | .idea 6 | vendor 7 | .vscode 8 | -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/.golangci.yml -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/License -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/README.md -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/association.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/association.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/callbacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/callbacks.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/callbacks/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/callbacks/create.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/callbacks/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/callbacks/delete.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/callbacks/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/callbacks/helper.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/callbacks/preload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/callbacks/preload.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/callbacks/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/callbacks/query.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/callbacks/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/callbacks/raw.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/callbacks/row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/callbacks/row.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/callbacks/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/callbacks/update.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/chainable_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/chainable_api.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/clause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/clause.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/delete.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/expression.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/from.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/from.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/group_by.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/group_by.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/insert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/insert.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/joins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/joins.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/limit.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/locking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/locking.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/on_conflict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/on_conflict.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/order_by.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/order_by.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/returning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/returning.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/select.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/set.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/update.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/values.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/clause/where.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/clause/with.go: -------------------------------------------------------------------------------- 1 | package clause 2 | 3 | type With struct{} 4 | -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/errors.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/finisher_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/finisher_api.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/go.mod -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/go.sum -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/gorm.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/interfaces.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/logger/logger.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/logger/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/logger/sql.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/migrator.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/migrator/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/migrator/index.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/migrator/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/migrator/migrator.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/model.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/prepare_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/prepare_stmt.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/scan.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/schema/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/schema/check.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/schema/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/schema/field.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/schema/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/schema/index.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/schema/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/schema/interfaces.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/schema/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/schema/naming.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/schema/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/schema/pool.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/schema/schema.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/schema/serializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/schema/serializer.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/schema/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/schema/utils.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/soft_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/soft_delete.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/statement.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/gorm/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/gorm/utils/utils.go -------------------------------------------------------------------------------- /backend/vendor/gorm.io/plugin/dbresolver/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/plugin/dbresolver/License -------------------------------------------------------------------------------- /backend/vendor/gorm.io/plugin/dbresolver/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/plugin/dbresolver/go.mod -------------------------------------------------------------------------------- /backend/vendor/gorm.io/plugin/dbresolver/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/plugin/dbresolver/go.sum -------------------------------------------------------------------------------- /backend/vendor/gorm.io/plugin/dbresolver/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/gorm.io/plugin/dbresolver/utils.go -------------------------------------------------------------------------------- /backend/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/backend/vendor/modules.txt -------------------------------------------------------------------------------- /depends/jacobsa/daemonize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/daemonize/LICENSE -------------------------------------------------------------------------------- /depends/jacobsa/daemonize/daemonize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/daemonize/daemonize.go -------------------------------------------------------------------------------- /depends/jacobsa/daemonize/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/jacobsa/daemonize 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /depends/jacobsa/fuse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/LICENSE -------------------------------------------------------------------------------- /depends/jacobsa/fuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/README.md -------------------------------------------------------------------------------- /depends/jacobsa/fuse/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/connection.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/conversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/conversions.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/debug.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/doc.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/errors.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/freelists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/freelists.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fsutil/fdatasync_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fsutil/fdatasync_darwin.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fsutil/fdatasync_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fsutil/fdatasync_linux.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fsutil/fsutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fsutil/fsutil.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fuseops/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fuseops/doc.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fuseops/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fuseops/ops.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fuseops/simple_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fuseops/simple_types.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fusetesting/parallel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fusetesting/parallel.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fusetesting/readdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fusetesting/readdir.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fusetesting/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fusetesting/stat.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fusetesting/stat_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fusetesting/stat_darwin.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fusetesting/stat_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fusetesting/stat_linux.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fuseutil/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fuseutil/dirent.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fuseutil/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fuseutil/doc.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/fuseutil/file_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/fuseutil/file_system.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/go.mod -------------------------------------------------------------------------------- /depends/jacobsa/fuse/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/go.sum -------------------------------------------------------------------------------- /depends/jacobsa/fuse/internal/buffer/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/internal/buffer/runtime.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/internal/fusekernel/fuse_kernel_std.go: -------------------------------------------------------------------------------- 1 | package fusekernel 2 | -------------------------------------------------------------------------------- /depends/jacobsa/fuse/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/mount.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/mount_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/mount_config.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/mount_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/mount_darwin.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/mount_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/mount_linux.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/mount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/mount_test.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/mounted_file_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/mounted_file_system.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/ops.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/errorfs/error_fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/errorfs/error_fs.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/flushfs/flush_fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/flushfs/flush_fs.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/hellofs/hello_fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/hellofs/hello_fs.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/in_process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/in_process.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/memfs/inode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/memfs/inode.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/memfs/memfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/memfs/memfs.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/memfs/memfs_go18_test.go: -------------------------------------------------------------------------------- 1 | // +build go1.8 2 | 3 | package memfs_test 4 | 5 | const atLeastGo18 = true 6 | -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/memfs/memfs_others_test.go: -------------------------------------------------------------------------------- 1 | // +build !go1.8 2 | 3 | package memfs_test 4 | 5 | const atLeastGo18 = false 6 | -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/memfs/memfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/memfs/memfs_test.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/memfs/posix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/memfs/posix_test.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/statfs/statfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/statfs/statfs.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/subprocess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/subprocess.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/samples/unmount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/samples/unmount.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/unmount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/unmount.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/unmount_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/unmount_linux.go -------------------------------------------------------------------------------- /depends/jacobsa/fuse/unmount_std.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/jacobsa/fuse/unmount_std.go -------------------------------------------------------------------------------- /depends/spf13/cobra/.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/.github/labeler.yml -------------------------------------------------------------------------------- /depends/spf13/cobra/.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/.github/workflows/label.yml -------------------------------------------------------------------------------- /depends/spf13/cobra/.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/.github/workflows/stale.yml -------------------------------------------------------------------------------- /depends/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /depends/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /depends/spf13/cobra/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/.travis.yml -------------------------------------------------------------------------------- /depends/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /depends/spf13/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/Makefile -------------------------------------------------------------------------------- /depends/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/README.md -------------------------------------------------------------------------------- /depends/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/args.go -------------------------------------------------------------------------------- /depends/spf13/cobra/args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/args_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/bash_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/bash_completions.go -------------------------------------------------------------------------------- /depends/spf13/cobra/bash_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/bash_completions.md -------------------------------------------------------------------------------- /depends/spf13/cobra/bash_completions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/bash_completions_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/Makefile -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/README.md -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/add.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/add_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/add_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/golden_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/golden_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/helpers.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/init.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/init_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/license_agpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/license_agpl.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/license_apache_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/license_apache_2.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/license_gpl_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/license_gpl_2.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/license_gpl_3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/license_gpl_3.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/license_lgpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/license_lgpl.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/license_mit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/license_mit.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/licenses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/licenses.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/project.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/project_test.go: -------------------------------------------------------------------------------- 1 | package cmd 2 | 3 | /* todo: write tests */ 4 | -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/cmd/root.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/main.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra/tpl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra/tpl/main.go -------------------------------------------------------------------------------- /depends/spf13/cobra/cobra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/cobra_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/command.go -------------------------------------------------------------------------------- /depends/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /depends/spf13/cobra/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/command_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /depends/spf13/cobra/custom_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/custom_completions.go -------------------------------------------------------------------------------- /depends/spf13/cobra/custom_completions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/custom_completions_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/cmd_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/man_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/man_docs.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/man_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/man_docs.md -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/man_docs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/man_docs_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/man_examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/man_examples_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/md_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/md_docs.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/md_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/md_docs.md -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/md_docs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/md_docs_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/rest_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/rest_docs.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/rest_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/rest_docs.md -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/rest_docs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/rest_docs_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/util.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/yaml_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/yaml_docs.go -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/yaml_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/yaml_docs.md -------------------------------------------------------------------------------- /depends/spf13/cobra/doc/yaml_docs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/doc/yaml_docs_test.go -------------------------------------------------------------------------------- /depends/spf13/cobra/fish_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/fish_completions.go -------------------------------------------------------------------------------- /depends/spf13/cobra/fish_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/fish_completions.md -------------------------------------------------------------------------------- /depends/spf13/cobra/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/go.mod -------------------------------------------------------------------------------- /depends/spf13/cobra/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/go.sum -------------------------------------------------------------------------------- /depends/spf13/cobra/powershell_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/powershell_completions.go -------------------------------------------------------------------------------- /depends/spf13/cobra/powershell_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/powershell_completions.md -------------------------------------------------------------------------------- /depends/spf13/cobra/shell_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/shell_completions.go -------------------------------------------------------------------------------- /depends/spf13/cobra/zsh_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/zsh_completions.go -------------------------------------------------------------------------------- /depends/spf13/cobra/zsh_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/zsh_completions.md -------------------------------------------------------------------------------- /depends/spf13/cobra/zsh_completions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/cobra/zsh_completions_test.go -------------------------------------------------------------------------------- /depends/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /depends/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /depends/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /depends/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/README.md -------------------------------------------------------------------------------- /depends/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/bool.go -------------------------------------------------------------------------------- /depends/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /depends/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /depends/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/count.go -------------------------------------------------------------------------------- /depends/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/duration.go -------------------------------------------------------------------------------- /depends/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /depends/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/flag.go -------------------------------------------------------------------------------- /depends/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/float32.go -------------------------------------------------------------------------------- /depends/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/float64.go -------------------------------------------------------------------------------- /depends/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /depends/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/int.go -------------------------------------------------------------------------------- /depends/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/int16.go -------------------------------------------------------------------------------- /depends/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/int32.go -------------------------------------------------------------------------------- /depends/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/int64.go -------------------------------------------------------------------------------- /depends/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/int8.go -------------------------------------------------------------------------------- /depends/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /depends/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/ip.go -------------------------------------------------------------------------------- /depends/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /depends/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /depends/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /depends/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/string.go -------------------------------------------------------------------------------- /depends/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /depends/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /depends/spf13/pflag/string_to_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/string_to_int.go -------------------------------------------------------------------------------- /depends/spf13/pflag/string_to_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/string_to_string.go -------------------------------------------------------------------------------- /depends/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/uint.go -------------------------------------------------------------------------------- /depends/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /depends/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /depends/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /depends/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /depends/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/depends/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /frontend/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- 1 | VUE_APP_NAMESPACE=portal -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/babel.config.js -------------------------------------------------------------------------------- /frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/jsconfig.json -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/api/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/api/ajax.js -------------------------------------------------------------------------------- /frontend/src/api/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/api/auth/index.js -------------------------------------------------------------------------------- /frontend/src/api/cfs/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/api/cfs/cluster.js -------------------------------------------------------------------------------- /frontend/src/api/ebs/ebs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/api/ebs/ebs.js -------------------------------------------------------------------------------- /frontend/src/api/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/api/env.js -------------------------------------------------------------------------------- /frontend/src/assets/images/cloudlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/images/cloudlogo.png -------------------------------------------------------------------------------- /frontend/src/assets/images/country.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/images/country.png -------------------------------------------------------------------------------- /frontend/src/assets/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/images/login.png -------------------------------------------------------------------------------- /frontend/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/images/logo.png -------------------------------------------------------------------------------- /frontend/src/assets/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/images/logo2.png -------------------------------------------------------------------------------- /frontend/src/assets/images/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/images/logo3.png -------------------------------------------------------------------------------- /frontend/src/assets/images/nav-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/images/nav-logo.png -------------------------------------------------------------------------------- /frontend/src/assets/styles/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/styles/admin.scss -------------------------------------------------------------------------------- /frontend/src/assets/styles/config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/styles/config.scss -------------------------------------------------------------------------------- /frontend/src/assets/styles/element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/styles/element.scss -------------------------------------------------------------------------------- /frontend/src/assets/styles/element/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/styles/element/index.css -------------------------------------------------------------------------------- /frontend/src/assets/styles/helper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/styles/helper.scss -------------------------------------------------------------------------------- /frontend/src/assets/styles/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/styles/icon.scss -------------------------------------------------------------------------------- /frontend/src/assets/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/styles/index.scss -------------------------------------------------------------------------------- /frontend/src/assets/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/styles/mixins.scss -------------------------------------------------------------------------------- /frontend/src/assets/svg/SvgIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/svg/SvgIcon.vue -------------------------------------------------------------------------------- /frontend/src/assets/svg/icon_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/svg/icon_error.svg -------------------------------------------------------------------------------- /frontend/src/assets/svg/icon_success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/svg/icon_success.svg -------------------------------------------------------------------------------- /frontend/src/assets/svg/icon_warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/assets/svg/icon_warning.svg -------------------------------------------------------------------------------- /frontend/src/components/EbsClusterSelectForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/EbsClusterSelectForm.vue -------------------------------------------------------------------------------- /frontend/src/components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/Pagination.vue -------------------------------------------------------------------------------- /frontend/src/components/circleCharts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/circleCharts.vue -------------------------------------------------------------------------------- /frontend/src/components/common/ErrorPage/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/common/ErrorPage/404.png -------------------------------------------------------------------------------- /frontend/src/components/common/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/common/Loading.vue -------------------------------------------------------------------------------- /frontend/src/components/common/ODropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/common/ODropdown.vue -------------------------------------------------------------------------------- /frontend/src/components/common/OForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/common/OForm.vue -------------------------------------------------------------------------------- /frontend/src/components/common/OIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/common/OIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/common/OPageTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/common/OPageTable.vue -------------------------------------------------------------------------------- /frontend/src/components/common/OSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/common/OSearch.vue -------------------------------------------------------------------------------- /frontend/src/components/diskRepairStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/diskRepairStatus.vue -------------------------------------------------------------------------------- /frontend/src/components/ebsCircleCharts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/ebsCircleCharts.vue -------------------------------------------------------------------------------- /frontend/src/components/moreOPerate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/moreOPerate.vue -------------------------------------------------------------------------------- /frontend/src/components/uPageTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/components/uPageTable.vue -------------------------------------------------------------------------------- /frontend/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/i18n/index.js -------------------------------------------------------------------------------- /frontend/src/i18n/lang/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/i18n/lang/en/index.js -------------------------------------------------------------------------------- /frontend/src/i18n/lang/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/i18n/lang/index.js -------------------------------------------------------------------------------- /frontend/src/i18n/lang/zh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/i18n/lang/zh/index.js -------------------------------------------------------------------------------- /frontend/src/layouts/Common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/layouts/Common/index.js -------------------------------------------------------------------------------- /frontend/src/layouts/Noop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/layouts/Noop.vue -------------------------------------------------------------------------------- /frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/main.js -------------------------------------------------------------------------------- /frontend/src/pages/authManage/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/authManage/role/index.vue -------------------------------------------------------------------------------- /frontend/src/pages/authManage/role/roleDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/authManage/role/roleDialog.vue -------------------------------------------------------------------------------- /frontend/src/pages/authManage/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/authManage/user/index.vue -------------------------------------------------------------------------------- /frontend/src/pages/authManage/user/userDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/authManage/user/userDialog.vue -------------------------------------------------------------------------------- /frontend/src/pages/cfs/clusterOverview/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/cfs/clusterOverview/index.vue -------------------------------------------------------------------------------- /frontend/src/pages/cfs/clusterOverview/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/cfs/clusterOverview/mixin.js -------------------------------------------------------------------------------- /frontend/src/pages/cfs/fileManage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/cfs/fileManage/index.vue -------------------------------------------------------------------------------- /frontend/src/pages/cfs/status.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/cfs/status.conf.js -------------------------------------------------------------------------------- /frontend/src/pages/components/base-form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/components/base-form.vue -------------------------------------------------------------------------------- /frontend/src/pages/components/chartFlow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/components/chartFlow.vue -------------------------------------------------------------------------------- /frontend/src/pages/components/filter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/components/filter/index.vue -------------------------------------------------------------------------------- /frontend/src/pages/components/listDetailCom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/components/listDetailCom.vue -------------------------------------------------------------------------------- /frontend/src/pages/components/moreOPerate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/components/moreOPerate.vue -------------------------------------------------------------------------------- /frontend/src/pages/components/uLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/components/uLabel.vue -------------------------------------------------------------------------------- /frontend/src/pages/components/uPageTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/components/uPageTable.vue -------------------------------------------------------------------------------- /frontend/src/pages/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/login/index.vue -------------------------------------------------------------------------------- /frontend/src/pages/login/logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/pages/login/logo.vue -------------------------------------------------------------------------------- /frontend/src/router/cfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/router/cfs.js -------------------------------------------------------------------------------- /frontend/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/router/index.js -------------------------------------------------------------------------------- /frontend/src/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/store/actions.js -------------------------------------------------------------------------------- /frontend/src/store/getter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/store/getter.js -------------------------------------------------------------------------------- /frontend/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/store/index.js -------------------------------------------------------------------------------- /frontend/src/store/modules/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/store/modules/cluster.js -------------------------------------------------------------------------------- /frontend/src/store/modules/ebs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/store/modules/ebs.js -------------------------------------------------------------------------------- /frontend/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/store/modules/user.js -------------------------------------------------------------------------------- /frontend/src/store/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/store/mutations.js -------------------------------------------------------------------------------- /frontend/src/utils/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/utils/ajax.js -------------------------------------------------------------------------------- /frontend/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/utils/auth.js -------------------------------------------------------------------------------- /frontend/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/utils/index.js -------------------------------------------------------------------------------- /frontend/src/utils/indexDb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/utils/indexDb.js -------------------------------------------------------------------------------- /frontend/src/utils/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/src/utils/translate.js -------------------------------------------------------------------------------- /frontend/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/frontend/vue.config.js -------------------------------------------------------------------------------- /pictures/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/pictures/architecture.png -------------------------------------------------------------------------------- /pictures/cluster_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/pictures/cluster_overview.png -------------------------------------------------------------------------------- /pictures/file_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/pictures/file_management.png -------------------------------------------------------------------------------- /pictures/role_management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubefs/cubefs-dashboard/HEAD/pictures/role_management.png --------------------------------------------------------------------------------