Um namespace é uma divisão lógica de recursos no cluster, que torna todos os componentes dentro de um namespace (Pods, Services, Deployments, Ingresses) isolados de outros namespaces.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface IArgDescription { | |
name: string; | |
type: () => any; | |
} | |
interface IResolverDescription { | |
name: string; | |
resolver: Function; | |
decorator: MethodDecorator; | |
methodArgs: IArgDescription[]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from 'react' | |
import { StyleSheet, View, ViewStyle } from 'react-native' | |
import { TextInput, RadioButton } from 'react-native-paper' | |
import { Text } from '@ds/Typography' | |
import { RadioSelect } from '@ds/RadioSelect' | |
import { Button } from '@ds/Button' | |
import { Colors } from '@resources/Colors' | |
export interface IUserStoryProps { | |
name: string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useRef, useState } from 'react' | |
import { | |
StyleSheet, | |
Text, | |
View, | |
ViewStyle, | |
Animated, | |
Button, | |
Easing, | |
Alert, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import async_hooks from 'async_hooks' | |
import axios, { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios' | |
import { inject, injectable, optional } from 'inversify' | |
import { IClock, IClockTypes } from '../../../clock' | |
import { IHashMap } from '../../../common' | |
import { IJsonConfig, IJsonConfigTypes } from '../../../config' | |
import { ContextManagerTypes, IContextManager } from '../../../context' | |
import { ILogger, ILoggerTypes } from '../../../logs' | |
import { | |
HttpClientMode, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import async_hooks from 'async_hooks' | |
import axios, { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios' | |
import { inject, injectable, optional } from 'inversify' | |
import { IClock, IClockTypes } from '../../../clock' | |
import { IHashMap } from '../../../common' | |
import { IJsonConfig, IJsonConfigTypes } from '../../../config' | |
import { ContextManagerTypes, IContextManager } from '../../../context' | |
import { ILogger, ILoggerTypes } from '../../../logs' | |
import { | |
HttpClientMode, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
set -exo pipefail | |
[[ -z "$ACCESS_TOKEN" ]] && (echo "Please set ACCESS_TOKEN" && exit 1;) | |
migrate_repo() { | |
repo=$1 | |
curl https://api.github.com/orgs/livup/repos?access_token=${ACCESS_TOKEN} -d "{\"name\": \"${repo}\", \"description\": \"\", \"private\": true, \"has_issues\": true, \"has_downloads\": true, \"has_wiki\": false}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Fragment, Component} from 'react'; | |
import {PanResponder, Dimensions, Animated, Button, TouchableOpacity, FlatList, StyleSheet, Text, View} from 'react-native'; | |
const CONTACTS = [{ | |
key: 'c1', | |
name: 'contact1' | |
}, { | |
key: 'c2', | |
name: 'contact2' | |
}, { |
Um workspace é um conjunto de configurações salvas pelo desenvolvedor que descrevem um cenário de trabalho que ele configurou e que vai querer ser retomado no futuro, seja por ele ou por outros engenheiros. Exemplo: O desenvolvedor está trabalhando no fluxo de pagamento de boletos e, para isto, precisa dos seguintes serviços:
- Blackleach v1.0.5
- Stormshield v2.0.2
- Griswold v1.0.5
- Horadric v5.0.1
NewerOlder