Inspired By: grafana/loki#333
- docker-compose.yml
version: "3"
networks:
loki:
Inspired By: grafana/loki#333
version: "3"
networks:
loki:
name: Detox | |
on: [push] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
timeout-minutes: 15 | |
env: |
<div class="row"> | |
<div class="col-md-3"> | |
<h3>Select files</h3> | |
<input type="file" #fileInput multiple (change)="addToQueue()" /> | |
</div> | |
<div class="col-md-9"> | |
<h3>Upload queue</h3> | |
<table class="table-headed table-striped"> |
function calcular() { | |
return new Promise((resolve, reject) => { | |
console.log('inicio...') | |
resolve() | |
}) | |
} | |
function um() { |
/** | |
* Axios Request Wrapper | |
* --------------------- | |
* | |
* @author Sheharyar Naseer (@sheharyarn) | |
* @license MIT | |
* | |
*/ | |
import axios from 'axios' |
var getSubdomain = function (baseDomain) { | |
if (!baseDomain) { | |
return null; | |
} | |
var regSub = new RegExp('^((?!' + baseDomain + '|www)([^.]*))', 'g'); | |
var _subdomain = document.location.hostname.match(regSub); | |
if (_subdomain && _subdomain[0]) { | |
return _subdomain[0]; | |
} else { |
namespace Core.Repository | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
public interface IRepository<T> where T : class | |
{ | |
bool Add(T entity); |