- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 3,803 for Sundae (1.25 sec)
-
plugins/vundle/vundle.plugin.zsh
function vundle-init () { if [ ! -d ~/.vim/bundle/Vundle.vim/ ] then mkdir -p ~/.vim/bundle/Vundle.vim/ fi if [ ! -d ~/.vim/bundle/Vundle.vim/.git ] && [ ! -f ~/.vim/bundle/Vundle.vim/.git ] then git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim echo "\n\tRead about vim configuration for vundle at https://github.com/VundleVim/Vundle.vim\n" fi } function vundle () { vundle-init
Others - Registered: 2021-01-14 12:35 - Last Modified: 2018-05-28 09:23 - 654 bytes - Viewed (0) -
actionmailbox/test/dummy/bin/bundle
#!/usr/bin/env ruby ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
Shell Script - Registered: 2021-01-13 00:58 - Last Modified: 2018-12-26 02:32 - 125 bytes - Viewed (0) -
packages/core/parcel-bundler/src/Bundle.js
this ); this.childBundles.add(bundle); this.siblingBundles.add(bundle); this.siblingBundlesMap.set(type, bundle); } return this.siblingBundlesMap.get(type); } createChildBundle(entryAsset, options = {}) { let bundle = Bundle.createWithAsset(entryAsset, this, options); this.childBundles.add(bundle); return bundle; }
JavaScript - Registered: 2021-01-17 11:31 - Last Modified: 2019-03-05 18:11 - 8.1K bytes - Viewed (0) -
lighthouse-cli/test/smokehouse/lighthouse-runners/bundle.js
if (typeof globalThis === 'undefined') { // @ts-expect-error - exposing for loading of dt-bundle. global.globalThis = global; } // Load bundle, which creates a `global.runBundledLighthouse`. // @ts-ignore - file exists if `yarn build-all` is run, but not used for types anyways. require('../../../../dist/lighthouse-dt-bundle.js'); // eslint-disable-line // @ts-expect-error - `require` isn't on `global` in the node typedefs.
JavaScript - Registered: 2021-01-14 03:45 - Last Modified: 2020-10-02 01:42 - 2.8K bytes - Viewed (0) -
pages.pt_BR/common/bundle.md
# bundle > Gerenciador de dependências da linguagem de programação Ruby. > Mais informações: <https://bundler.io/man/bundle.1.html>. - Instalar todas as gemas definidas no `Gemfile`: `bundle install` - Atualizar todas as gemas, respeitando as regras definidas no `Gemfile`, e recriar o arquivo `Gemfile.lock`: `bundle update` - Atualizar uma gema específica definida no `Gemfile`: `bundle update --source {{nome_da_gema}}`
Plain Text - Registered: 2021-01-15 14:50 - Last Modified: 2019-10-07 13:31 - 517 bytes - Viewed (0) -
pages.ko/common/bundle.md
# bundle > Ruby 프로그래밍 언어의 종속성 관리자. > 더 많은 정보: <https://bundler.io/man/bundle.1.html>. - 작업 디렉토리에 있는 `Gemfile`에 정의된 모든 gem을 설치: `bundle install` - `Gemfile` 에 정의된 규칙에 따라 모든 gem을 업데이트 하고 `Gemfile.lock`을 재생성: `bundle update` - `Gemfile`에 정의된 특정 gem을 업데이트: `bundle update --source {{gem명}}` - 새로운 gem의 스켈레톤 생성:
Plain Text - Registered: 2021-01-15 14:50 - Last Modified: 2021-01-12 14:36 - 502 bytes - Viewed (0) -
tools/bundle.js
*/ import webpack from 'webpack'; import webpackConfig from './webpack.config'; /** * Creates application bundles from the source files. */ function bundle() { return new Promise((resolve, reject) => { webpack(webpackConfig).run((err, stats) => { if (err) { return reject(err); } console.info(stats.toString(webpackConfig[0].stats));
JavaScript - Registered: 2021-01-14 16:51 - Last Modified: 2018-01-08 00:19 - 801 bytes - Viewed (0) -
pages/common/bundle.md
# bundle > Dependency manager for the Ruby programming language. > More information: <https://bundler.io/man/bundle.1.html>. - Install all gems defined in the `Gemfile` expected in the working directory: `bundle install` - Execute a command in the context of the current bundle: `bundle exec {{command}} {{arguments}}` - Update all gems by the rules defined in the `Gemfile` and regenerate `Gemfile.lock`: `bundle update`
Plain Text - Registered: 2021-01-15 14:50 - Last Modified: 2020-11-30 11:54 - 937 bytes - Viewed (0) -
pages.it/common/bundle.md
# bundle > Gestore di dipendenze per il linguaggio di programmazione Ruby. > Maggiori informazioni: <https://bundler.io/man/bundle.1.html>. - Installa tutte le gem definite nel gemfile della directory corrente: `bundle install` - Aggiorna tutte le gem secondo le regole definite nel gemfile e genera un gemfile.lock: `bundle update` - Aggiorna una specifica gem definita nel gemfile: `bundle update --source {{nome_gem}}`
Plain Text - Registered: 2021-01-15 14:50 - Last Modified: 2019-06-03 12:19 - 496 bytes - Viewed (0) -
app/javascript/mastodon/features/ui/components/bundle.js
import React from 'react'; import PropTypes from 'prop-types'; const emptyComponent = () => null; const noop = () => { }; class Bundle extends React.PureComponent { static propTypes = { fetchComponent: PropTypes.func.isRequired, loading: PropTypes.func, error: PropTypes.func, children: PropTypes.func.isRequired, renderDelay: PropTypes.number, onFetch: PropTypes.func, onFetchSuccess: PropTypes.func,
JavaScript - Registered: 2021-01-17 06:18 - Last Modified: 2019-03-15 04:35 - 2.4K bytes - Viewed (0)