Perguntas com a marcação «r»

105
Media Player chamado no estado 0, erro (-38,0)

Atualmente, estou tentando criar um aplicativo simples que transmita uma estação de rádio da Internet. Tenho o URL da estação e estou configurando o Media Player como MediaPlayer mediaPlayer = new MediaPlayer(); try { mediaPlayer.setDataSource(URL); } catch (IllegalArgumentException e) {...

105
Alinhar à esquerda duas arestas do gráfico (ggplot)

Estou usando o ggplot e tenho dois gráficos que quero exibir um sobre o outro. Usei grid.arrangedo gridExtra para empilhá-los. O problema é que eu quero que as bordas esquerdas dos gráficos se alinhem assim como as bordas direitas, independentemente dos rótulos dos eixos. (o problema surge porque...

105
Constexpr implica inline?

Considere a seguinte função embutida: // Inline specifier version #include<iostream> #include<cstdlib> inline int f(const int x); inline int f(const int x) { return 2*x; } int main(int argc, char* argv[]) { return f(std::atoi(argv[1])); } e a versão equivalente constexpr: //...

105
Como truncar string usando o servidor SQL

eu tenho uma grande string no SQL Server. Eu quero truncar essa string para 10 ou 15 caracteres String original this is test string. this is test string. this is test string. this is test string. String desejada this is test string. this is

105
Como obter texto em uma entrada no transferidor

Na documentação do transferidor, vejo o seguinte exemplo: describe('by model', function() { it('should find an element by text input model', function() { var username = element(by.model('username')); username.clear(); username.sendKeys('Jane Doe'); var name =