Traduzir "package on package" para inglês

Mostrando 50 de 50 traduções da frase "package on package" de japonês para inglês

Tradução de japonês para inglês de package on package

japonês
inglês

JA SiP (System-in-Package) および PoP (Package-on-Package)

EN System-in-Package (SiP) and Package-on-Package (PoP)

JA SiP (System-in-Package) および PoP (Package-on-Package)

EN System-in-Package (SiP) and Package-on-Package (PoP)

JA アプリがデプロイされると、Heroku は package.json​ を読み取って適切なノードバージョンをインストールし、package-lock.json​ を読み取って依存関係をインストールします。

EN When an app is deployed, Heroku reads the package.json to install the appropriate node version and the package-lock.json to install the dependencies.

japonês inglês
json json

JA パッケージ・オン・パッケージ - アムコー・テクノロジー / Package-on-Package (PoP) Packaging - Amkor Technology

EN Package-on-Package (PoP) Packaging - Amkor Technology

JA アプリがデプロイされると、Heroku は package.json​ を読み取って適切なノードバージョンをインストールし、package-lock.json​ を読み取って依存関係をインストールします。

EN When an app is deployed, Heroku reads the package.json to install the appropriate node version and the package-lock.json to install the dependencies.

japonês inglês
json json

JA SMP (Support and Maintenance Package) 期限の終了を警告するメッセージを無効化にすることはできますか。

EN Is it possible to disable the SMP (Support and Maintenance Package) expiration warning message?

japonês inglês
smp smp

JA git add -A vendor; git commit -am "Add dependency <package>"​ で変更をコミットします。

EN Commit the changes with git add -A vendor; git commit -am "Add dependency <package>"

JA AWS PCI Compliance Package はどのようにしたら入手できますか?

EN How can I obtain the AWS PCI Compliance Package?

japonês inglês
aws aws
pci pci

JA AWS PCI DSS Compliance Package には何が含まれますか?

EN What does the AWS PCI DSS Compliance Package contain?

japonês inglês
aws aws
pci pci
dss dss

JA AWS PCI Compliance Package には次のものが含まれます。

EN The AWS PCI Compliance Package includes:

japonês inglês
aws aws
pci pci

JA Octavo Systems 社の SIP (System-in-Package) は、ザイリンクス MPSoC の性能と柔軟性を最大限に引き出すことができる統合パッケージです。

EN Octavo Systems’ SIP Delivers Performance and Flexibility of Xilinx MPSoC in Integrated Package

JA Octavo Systems 社の SIP (System-in-Package) 、ザイリンクス MPSoC の性能と柔軟性を最大限に引き出すことができる統合パッケージを提供

EN Octavo Systems’ SIP Delivers Performance and Flexibility of Xilinx MPSoC in Integrated Package

JA これで、シンプルなアプリケーションと、Node の依存関係マネージャが使用する package.json​ ファイルを格納した、正常な Git リポジトリを準備できました。

EN You now have a functioning Git repository that contains a simple application as well as a package.json file, which is used by Node’s dependency manager.

japonês inglês
git git
json json

JA Heroku では、アプリのルートディレクトリに package.json​ ファイルがあると、そのアプリを Node.js と認識します。独自のアプリでこのファイルを作成するには、npm init --yes​ を実行します。

EN Heroku recognizes an app as Node.js by the existence of a package.json file in the root directory. For your own apps, you can create one by running npm init --yes.

japonês inglês
js js
json json

JA デプロイしたデモ用アプリには、事前に次のような package.json​ が用意されています。

EN The demo app you deployed already has a package.json, and it looks something like this:

japonês inglês
json json

JA package.json​ ファイルでは、Heroku でのアプリケーション実行に使用される Node.js のバージョンと、アプリケーションと一緒にインストールする必要がある依存関係を定義します。

EN The package.json file determines both the version of Node.js that will be used to run your application on Heroku, as well as the dependencies that should be installed with your application.

japonês inglês
json json
js js

JA まず、package.json​ で cool-ascii-faces​ の依存関係を追加します。 これを行うため、次のコマンドを実行します。

EN Begin by adding a dependency for cool-ascii-faces in package.json. Run the following command to do this:

japonês inglês
json json

JA 依存関係のメカニズムは言語によって異なります。Ruby では Gemfile​、Python では requirements.txt​、Node.js では package.json​、Java では pom.xml​ などです。

EN Dependency mechanisms vary across languages: in Ruby you use a Gemfile, in Python a requirements.txt, in Node.js a package.json, in Java a pom.xml and so on.

japonês inglês
python python
txt txt
js js
json json
xml xml

JA Heroku の Node.js サポートは、アプリケーションがルートディレクトリに package.json​ ファイルを持つ場合にのみ適用されます。

EN Heroku Node.js support will only be applied when the application has a package.json file in the root directory.

japonês inglês
js js
json json

JA 生成された package.json​ ファイルは次のようになります。

EN The generated package.json file looks like this:

japonês inglês
json json

JA 依存関係がインストールされ、使用するノードのバージョンが指定されると、package.json ファイルは次のようになります。

EN Now that the dependencies are installed and the version of node to use has been specified, the package.json file will look something like this:

japonês inglês
json json

JA ローカルアプリディレクトリで npm install​ コマンドを実行して、package.json​ ファイル内で宣言した依存関係をインストールします。

EN Run the npm install command in your local app directory to install the dependencies that you declared in your package.json file.

japonês inglês
json json

JA 次に、その結果を package.json​ engines​ セクションと比較します。Node バージョンが指定されている​ことを確認してください。

EN Then, compare the results with the package.json engines section. Make sure a Node version is specified.

japonês inglês
json json

JA これらのバイナリは、同じローカルバージョンに一致している必要があります。そうでない場合は、package.json​ で一致するバージョンを指定​します。

EN The binaries should match up with the same local versions. If they don’t, specify the matching versions in the package.json.

japonês inglês
json json

JA package.json でサードパーティの依存関係が参照される場合は、ロックファイルを使用することをお勧めします。

EN It’s recommended to use a lockfile when third-party dependencies are referenced in the package.json

japonês inglês
json json

JA package-lock.json​ を更新するには、npm install​ を実行し、ファイルへの変更を Git にチェックインします。

EN In order to update the package-lock.json, run npm install and check in the changes to the file to git.

japonês inglês
json json
git git

JA npm の init​ コマンドは、プロジェクトの有効な package.json を足場にして、作業用ディレクトリから共通のプロパティを推測します。

EN npm’s init command will scaffold out a valid package.json for your project, inferring common properties from the working directory.

japonês inglês
json json

JA --yes​ フラグを指定してこのコマンドを実行してから、package.json を開いて変更を加えます。 最初に行うのは、現在のバージョンの Node (node -v​) で ‘engines’ キーを指定することです。

EN Run it with the --yes flag and then open package.json to make changes. The first thing you should do is specify an ‘engines’ key with your current version of node (node -v):

japonês inglês
json json

JA package.json のスクリプトでは、./node_modules/.bin​ がスクリプトの PATH​ に自動的に追加されるため、bower​ や webpack​ などのバイナリを直接実行できます。

EN Scripts in package.json automatically have ./node_modules/.bin added to their PATH, so you can execute binaries like bower or webpack directly.

japonês inglês
json json

JA 個々の依存関係が package.json で定義されている限り、npm install​ を実行することによって、誰でもアプリ (node_modules​ を含む) の作業用ローカルコピーを作成できます。

EN As long as each dependency is listed in package.json, anyone can create a working local copy of your app - including node_modules - by running npm install.

japonês inglês
json json

JA IoT(Internet of Things)in Package(IoTiP)プロジェクトシート

EN Internet of Things in Package (IoTiP) Project Sheet

JA Windows Store: 合同で起動するプロトコルが指定されるとき、Universal Windows 10 Apps の Package.appxmanifest を正しく作成 (780971)

EN Windows Store: Package.appxmanifest for Universal Windows 10 Apps will be produced correctly when protocol for association launching is specified. (780971)

japonês inglês
windows 10 windows

JA -YoctoProjectリファレンスシステムの構造 -A。ポーキーコアコンポーネント -B.OpenEmbedded-コアメタデータレイヤー -C.Pokyメタデータレイヤー -D。Yocto Board Support Package(BSP)レイヤー -ラボ

EN - The Yocto Project Reference System Structure - A. Poky Core Components - B. OpenEmbedded-Core Metadata Layer - C. Poky Metadata Layer - D. Yocto Board Support Package (BSP) Layer - Labs

japonês inglês
a a
b b
c c

JA 依存関係のメカニズムは言語によって異なります。Ruby では Gemfile​、Python では requirements.txt​、Node.js では package.json​、Java では pom.xml​ などです。

EN Dependency mechanisms vary across languages: in Ruby you use a Gemfile, in Python a requirements.txt, in Node.js a package.json, in Java a pom.xml and so on.

japonês inglês
python python
txt txt
js js
json json
xml xml

JA git add -A vendor; git commit -am "Add dependency <package>"​ で変更をコミットします。

EN Commit the changes with git add -A vendor; git commit -am "Add dependency <package>"

JA これで、シンプルなアプリケーションと、Node の依存関係マネージャが使用する package.json​ ファイルを格納した、正常な Git リポジトリを準備できました。

EN You now have a functioning Git repository that contains a simple application as well as a package.json file, which is used by Node’s dependency manager.

japonês inglês
git git
json json

JA Heroku では、アプリのルートディレクトリに package.json​ ファイルがあると、そのアプリを Node.js と認識します。独自のアプリでこのファイルを作成するには、npm init --yes​ を実行します。

EN Heroku recognizes an app as Node.js by the existence of a package.json file in the root directory. For your own apps, you can create one by running npm init --yes.

japonês inglês
js js
json json

JA デプロイしたデモ用アプリには、事前に次のような package.json​ が用意されています。

EN The demo app you deployed already has a package.json, and it looks something like this:

japonês inglês
json json

JA package.json​ ファイルでは、Heroku でのアプリケーション実行に使用される Node.js のバージョンと、アプリケーションと一緒にインストールする必要がある依存関係を定義します。

EN The package.json file determines both the version of Node.js that will be used to run your application on Heroku, as well as the dependencies that should be installed with your application.

japonês inglês
json json
js js

JA まず、package.json​ で cool-ascii-faces​ の依存関係を追加します。 これを行うため、次のコマンドを実行します。

EN Begin by adding a dependency for cool-ascii-faces in package.json. Run the following command to do this:

japonês inglês
json json

JA Heroku の Node.js サポートは、アプリケーションがルートディレクトリに package.json​ ファイルを持つ場合にのみ適用されます。

EN Heroku Node.js support will only be applied when the application has a package.json file in the root directory.

japonês inglês
js js
json json

JA 生成された package.json​ ファイルは次のようになります。

EN The generated package.json file looks like this:

japonês inglês
json json

JA 依存関係がインストールされ、使用するノードのバージョンが指定されると、package.json ファイルは次のようになります。

EN Now that the dependencies are installed and the version of node to use has been specified, the package.json file will look something like this:

japonês inglês
json json

JA ローカルアプリディレクトリで npm install​ コマンドを実行して、package.json​ ファイル内で宣言した依存関係をインストールします。

EN Run the npm install command in your local app directory to install the dependencies that you declared in your package.json file.

japonês inglês
json json

JA 次に、その結果を package.json​ engines​ セクションと比較します。Node バージョンが指定されている​ことを確認してください。

EN Then, compare the results with the package.json engines section. Make sure a Node version is specified.

japonês inglês
json json

JA npm の init​ コマンドは、プロジェクトの有効な package.json を足場にして、作業用ディレクトリから共通のプロパティを推測します。

EN npm’s init command will scaffold out a valid package.json for your project, inferring common properties from the working directory.

japonês inglês
json json

JA --yes​ フラグを指定してこのコマンドを実行してから、package.json を開いて変更を加えます。 最初に行うのは、現在のバージョンの Node (node -v​) で ‘engines’ キーを指定することです。

EN Run it with the --yes flag and then open package.json to make changes. The first thing you should do is specify an ‘engines’ key with your current version of node (node -v):

japonês inglês
json json

JA これらのバイナリは、同じローカルバージョンに一致している必要があります。そうでない場合は、package.json​ で一致するバージョンを指定​します。

EN The binaries should match up with the same local versions. If they don’t, specify the matching versions in the package.json.

japonês inglês
json json

JA package.json でサードパーティの依存関係が参照される場合は、ロックファイルを使用することをお勧めします。

EN It’s recommended to use a lockfile when third-party dependencies are referenced in the package.json

japonês inglês
json json

JA package-lock.json​ を更新するには、npm install​ を実行し、ファイルへの変更を Git にチェックインします。

EN In order to update the package-lock.json, run npm install and check in the changes to the file to git.

japonês inglês
json json
git git

Mostrando 50 de 50 traduções