- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题:这是使用azure pipelines部署的,并且已经通过了本地验证和vscode ide验证。我已经尝试了在 MSFT 文档中找到的所有解决方案以及 SOF 中的几个解决方案。我无法部署这个东西。
我收到的错误:
##[error]Deployment template validation failed: 'The resource 'Microsoft.Network/networkSecurityGroups/UnityServer-NSG-XXXXXXXX-XXXXXXXX' is not defined in the template.
##[warning]Validation errors were found in the Azure Resource Manager template.
Starting Deployment.
Deployment name is XXXXXXX-XXXXXXXX-unityserver-deploy
There were errors in your deployment. Error code: DeploymentFailed.
##[error]At least one resource deployment operation failed. Please list deployment
"code": "InvalidTemplate",
"message": "Deployment template validation failed: 'The resource 'Microsoft.Network/networkSecurityGroups/UnityServer-NSG-XXXXXXX-XXXXXXX' is not defined in the template.
##[error]Task failed while creating or updating the template deployment.
有问题的模板:
{
"$schema": "X",
"contentVersion": "1.0.0.0",
"parameters": {
"Subscription-Id": {
"defaultValue": "XXXXXXXXX",
"type": "string"
},
"Environment": {
"defaultValue": "XXXXXXX",
"type": "String"
},
"Location": {
"defaultValue": "XXXXXXX",
"type": "String"
},
"IsThisProduction": {
"defaultValue": "false",
"allowedValues": [
"false",
"true"
],
"type": "String"
},
"Unity-Server-Resource-Group-Name": {
"type": "String",
"defaultValue": "UnityServer-RG-Env-Location"
},
"UberMgmt-Resource-Group-Name-For-Region": {
"type": "String",
"defaultValue": "andrew_blue-green_mgmt"
},
"UberMgmt-VNET-Name-For-Region": {
"type": "String",
"defaultValue": "XXXXXXXXX"
},
"UberMgmt-VNET-Subnet-Name-For-Region": {
"type": "string",
"defaultValue": "XXXXXXXXXXX"
},
"Unity-Server-VM-Name": {
"defaultValue": "XXXXXXXXXXX",
"type": "String"
},
"Unity-Server-NIC-Name": {
"defaultValue": "XXXXXXXXXXXX",
"type": "String"
},
"Unity-Server-PublicIp-Reservation-Name": {
"defaultValue": "XXXXXXXXXXXX",
"type": "String"
},
"Unity-Server-Storage-Account-Name": {
"defaultValue": "XXXXXXXXXXXX",
"type": "String"
},
"Unity-Server-NSG-Name": {
"defaultValue": "UnityServer-NSG-Env-Location",
"type": "String"
},
"Unity-Server-Backup-Services-Vault-Name": {
"defaultValue": "XXXXXXXXXXXX",
"type": "String"
},
"XXXXXXXXXXXXBaseImageGallery-External-Id": {
"defaultValue": "galleryID string here",
"type": "String"
}
},
"variables": {
"Prod-Or-Non-Prod": "[if(equals(parameters('IsThisProduction'), 'true'), 'Prod', 'Non-Prod')]",
"Deployment-Name": "[concat('XXXXXXXXXXXX-Deploy-', parameters('Environment'), '-', parameters('Location'))]"
},
"resources": [
{
"type": "Microsoft.Resources/resourceGroups",
"apiVersion": "2021-04-01",
"location": "[parameters('Location')]",
"name": "[parameters('Unity-Server-Resource-Group-Name')]",
"properties": {},
"tags": {
"VantaDescription": "[concat('UnityServer-', parameters('Environment'), '-', parameters('Location'), '-RG-', string(variables('Prod-Or-Non-Prod')))]",
"VantaNonProd": "parameters('IsThisProduction')",
"VantaContainsUserData": "false",
"VantaUserDataStored": "n/a",
"VantaOwner": "Devops"
}
},
{
"type": "Microsoft.Resources/deployments",
"apiVersion": "2020-10-01",
"name": "[string(variables('Deployment-Name'))]",
"resourceGroup": "[parameters('Unity-Server-Resource-Group-Name')]",
"dependsOn": [
"[resourceId('Microsoft.Resources/resourceGroups', parameters('Unity-Server-Resource-Group-Name'))]"
],
"properties": {
"mode": "Incremental",
"template": {
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [
{
"type": "Microsoft.Network/networkSecurityGroups",
"apiVersion": "2020-11-01",
"name": "[parameters('Unity-Server-NSG-Name')]",
"location": "[parameters('Location')]",
"tags": {
"VantaDescription": "[concat('UnityServer-', parameters('Environment'), '-', parameters('Location'), '-NSG-', string(variables('Prod-Or-Non-Prod')))]",
"VantaNonProd": "parameters('IsThisProduction')",
"VantaContainsUserData": "false",
"VantaUserDataStored": "n/a",
"VantaOwner": "Devops"
},
"properties": {}
},
{
"type": "Microsoft.Network/publicIPAddresses",
"apiVersion": "2020-11-01",
"name": "[parameters('Unity-Server-PublicIp-Reservation-Name')]",
"location": "eastus",
"tags": {tagshere},
"sku": {
"name": "Standard",
"tier": "Regional"
},
"zones": [
"1"
],
"properties": {
"ipAddress": "XXXXXXXXXXXX",
"publicIPAddressVersion": "IPv4",
"publicIPAllocationMethod": "Static",
"idleTimeoutInMinutes": 4,
"ipTags": []
}
},
{
"type": "Microsoft.RecoveryServices/vaults",
"apiVersion": "2021-03-01",
"name": "[parameters('Unity-Server-Backup-Services-Vault-Name')]",
"location": "eastus",
"tags": {
"VantaDescription": "[concat('UnityServer-', parameters('Environment'), '-', parameters('Location'), '-Backup-Services-Vault-', string(variables('Prod-Or-Non-Prod')))]",
"VantaNonProd": "parameters('IsThisProduction')",
"VantaContainsUserData": "false",
"VantaUserDataStored": "n/a",
"VantaOwner": "Devops"
},
"sku": {
"name": "RS0",
"tier": "Standard"
},
"properties": {}
},
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2021-04-01",
"name": "[parameters('Unity-Server-Storage-Account-Name')]",
"location": "eastus",
"tags": {
"VantaDescription": "[concat('UnityServer-', parameters('Environment'), '-', parameters('Location'), '-Diag-Storage-Account-', string(variables('Prod-Or-Non-Prod')))]",
"VantaNonProd": "parameters('IsThisProduction')",
"VantaContainsUserData": "false",
"VantaUserDataStored": "n/a",
"VantaOwner": "Devops"
},
"sku": {
"name": "Standard_GRS",
"tier": "Standard"
},
"kind": "StorageV2",
"properties": {
"minimumTlsVersion": "TLS1_2",
"networkAcls": {
"bypass": "AzureServices",
"virtualNetworkRules": [],
"ipRules": [],
"defaultAction": "Allow"
},
"supportsHttpsTrafficOnly": true,
"encryption": {
"services": {
"file": {
"keyType": "Account",
"enabled": true
},
"blob": {
"keyType": "Account",
"enabled": true
}
},
"keySource": "Microsoft.Storage"
},
"accessTier": "Hot"
}
},
{
"type": "Microsoft.Compute/virtualMachines",
"apiVersion": "2021-03-01",
"name": "[parameters('Unity-Server-VM-Name')]",
"location": "eastus",
"dependsOn": [],
"tags": {
"VantaDescription": "[concat('UnityServer-', parameters('Environment'), '-', parameters('Location'), '-Virtual-Machine-', string(variables('Prod-Or-Non-Prod')))]",
"VantaNonProd": "parameters('IsThisProduction')",
"VantaContainsUserData": true,
"VantaUserDataStored": "XXXXXXXXXXXX",
"VantaOwner": "Devops"
},
"zones": [
"1"
],
"properties": {
"hardwareProfile": {
"vmSize": "Standard_B2s"
},
"storageProfile": {
"imageReference": {
"id": "[concat(parameters('XXXXXXXXXXXXBaseImageGallery-External-Id'), '/images/XXXXXXXXXXXXBaseImage-Centos8.3-gen2')]"
},
"osDisk": {
"osType": "Linux",
"name": "[concat(parameters('Unity-Server-VM-Name'), '_OsDisk')]",
"createOption": "FromImage",
"caching": "ReadWrite",
"managedDisk": {
"storageAccountType": "Premium_LRS"
},
"diskSizeGB": 30
},
"dataDisks": []
},
"networkProfile": {
"networkInterfaces": [
{
"id": "[resourceId('Microsoft.Network/networkInterfaces', parameters('Unity-Server-NIC-Name'))]"
}
]
},
"diagnosticsProfile": {
"bootDiagnostics": {
"enabled": true
}
}
}
},
{
"type": "Microsoft.Network/networkSecurityGroups/securityRules",
"apiVersion": "2020-11-01",
"name": "[concat(parameters('Unity-Server-NSG-Name'), '/SSH')]",
"dependsOn": [
"[resourceId('Microsoft.Network/networkSecurityGroups', parameters('Unity-Server-NSG-Name'))]"
],
"properties": {
"protocol": "TCP",
"sourcePortRange": "*",
"destinationPortRange": "22",
"sourceAddressPrefix": "*",
"destinationAddressPrefix": "*",
"access": "Allow",
"priority": 300,
"direction": "Inbound",
"sourcePortRanges": [],
"destinationPortRanges": [],
"sourceAddressPrefixes": [],
"destinationAddressPrefixes": []
}
},
{
"type": "Microsoft.RecoveryServices/vaults/backupPolicies",
"apiVersion": "2021-03-01",
"name": "[concat(parameters('Unity-Server-Backup-Services-Vault-Name'), '/DefaultPolicy')]",
"tags": {
"VantaDescription": "[concat('UnityServer-', parameters('Environment'), '-', parameters('Location'), '-Backup-Policy-Default-Policy-', string(variables('Prod-Or-Non-Prod')))]",
"VantaNonProd": "parameters('IsThisProduction')",
"VantaContainsUserData": "false",
"VantaUserDataStored": "n/a",
"VantaOwner": "Devops"
},
"dependsOn": [
"[resourceId('Microsoft.RecoveryServices/vaults', parameters('Unity-Server-Backup-Services-Vault-Name'))]"
],
"properties": {
"backupManagementType": "AzureIaasVM",
"instantRPDetails": {},
"schedulePolicy": {
"schedulePolicyType": "SimpleSchedulePolicy",
"scheduleRunFrequency": "Daily",
"scheduleRunTimes": [
"2021-06-15T01:00:00Z"
],
"scheduleWeeklyFrequency": 0
},
"retentionPolicy": {
"retentionPolicyType": "LongTermRetentionPolicy",
"dailySchedule": {
"retentionTimes": [
"2021-06-15T01:00:00Z"
],
"retentionDuration": {
"count": 30,
"durationType": "Days"
}
}
},
"instantRpRetentionRangeInDays": 2,
"timeZone": "UTC",
"protectedItemsCount": 0
}
},
{
"type": "Microsoft.RecoveryServices/vaults/backupPolicies",
"apiVersion": "2021-03-01",
"name": "[concat(parameters('Unity-Server-Backup-Services-Vault-Name'), '/HourlyLogBackup')]",
"tags": {
"VantaDescription": "[concat('UnityServer-', parameters('Environment'), '-', parameters('Location'), '-Backup-Policy-Hourly-Log-Backup-', string(variables('Prod-Or-Non-Prod')))]",
"VantaNonProd": "parameters('IsThisProduction')",
"VantaContainsUserData": "false",
"VantaUserDataStored": "n/a",
"VantaOwner": "Devops"
},
"dependsOn": [
"[resourceId('Microsoft.RecoveryServices/vaults', parameters('Unity-Server-Backup-Services-Vault-Name'))]"
],
"properties": {
"backupManagementType": "AzureWorkload",
"workLoadType": "SQLDataBase",
"settings": {
"timeZone": "UTC",
"issqlcompression": false,
"isCompression": false
},
"subProtectionPolicy": [
{
"policyType": "Full",
"schedulePolicy": {
"schedulePolicyType": "SimpleSchedulePolicy",
"scheduleRunFrequency": "Daily",
"scheduleRunTimes": [
"2021-06-15T01:00:00Z"
],
"scheduleWeeklyFrequency": 0
},
"retentionPolicy": {
"retentionPolicyType": "LongTermRetentionPolicy",
"dailySchedule": {
"retentionTimes": [
"2021-06-15T01:00:00Z"
],
"retentionDuration": {
"count": 30,
"durationType": "Days"
}
}
}
},
{
"policyType": "Log",
"schedulePolicy": {
"schedulePolicyType": "LogSchedulePolicy",
"scheduleFrequencyInMins": 60
},
"retentionPolicy": {
"retentionPolicyType": "SimpleRetentionPolicy",
"retentionDuration": {
"count": 30,
"durationType": "Days"
}
}
}
],
"protectedItemsCount": 0
}
},
{
"type": "Microsoft.RecoveryServices/vaults/backupPolicies",
"apiVersion": "2021-03-01",
"name": "[concat(parameters('Unity-Server-Backup-Services-Vault-Name'), '/UnityServerEastusBackupPolicy')]",
"tags": {
"VantaDescription": "[concat('UnityServer-', parameters('Environment'), '-', parameters('Location'), '-Backup-Policy-Unity-Server-', string(variables('Prod-Or-Non-Prod')))]",
"VantaNonProd": "parameters('IsThisProduction')",
"VantaContainsUserData": "false",
"VantaUserDataStored": "n/a",
"VantaOwner": "Devops"
},
"dependsOn": [
"[resourceId('Microsoft.RecoveryServices/vaults', parameters('Unity-Server-Backup-Services-Vault-Name'))]"
],
"properties": {
"backupManagementType": "AzureIaasVM",
"instantRPDetails": {
"azureBackupRGNamePrefix": "[concat(parameters('Unity-Server-Resource-Group-Name'), 'backup')]",
"azureBackupRGNameSuffix": "[concat(parameters('Unity-Server-Resource-Group-Name'), 'unityserver')]"
},
"schedulePolicy": {
"schedulePolicyType": "SimpleSchedulePolicy",
"scheduleRunFrequency": "Daily",
"scheduleRunTimes": [
"2021-06-14T08:00:00Z"
],
"scheduleWeeklyFrequency": 0
},
"retentionPolicy": {
"retentionPolicyType": "LongTermRetentionPolicy",
"dailySchedule": {
"retentionTimes": [
"2021-06-14T08:00:00Z"
],
"retentionDuration": {
"count": 30,
"durationType": "Days"
}
},
"weeklySchedule": {
"daysOfTheWeek": [
"Sunday"
],
"retentionTimes": [
"2021-06-14T08:00:00Z"
],
"retentionDuration": {
"count": 4,
"durationType": "Weeks"
}
},
"monthlySchedule": {
"retentionScheduleFormatType": "Weekly",
"retentionScheduleWeekly": {
"daysOfTheWeek": [
"Sunday"
],
"weeksOfTheMonth": [
"First"
]
},
"retentionTimes": [
"2021-06-14T08:00:00Z"
],
"retentionDuration": {
"count": 12,
"durationType": "Months"
}
},
"yearlySchedule": {
"retentionScheduleFormatType": "Weekly",
"monthsOfYear": [
"January"
],
"retentionScheduleWeekly": {
"daysOfTheWeek": [
"Sunday"
],
"weeksOfTheMonth": [
"First"
]
},
"retentionTimes": [
"2021-06-14T08:00:00Z"
],
"retentionDuration": {
"count": 3,
"durationType": "Years"
}
}
},
"instantRpRetentionRangeInDays": 3,
"timeZone": "UTC",
"protectedItemsCount": 0
}
},
{
"type": "Microsoft.RecoveryServices/vaults/replicationAlertSettings",
"apiVersion": "2021-03-01",
"name": "[concat(parameters('Unity-Server-Backup-Services-Vault-Name'), '/defaultAlertSetting')]",
"dependsOn": [
"[resourceId('Microsoft.RecoveryServices/vaults', parameters('Unity-Server-Backup-Services-Vault-Name'))]"
],
"properties": {
"sendToOwners": "DoNotSend",
"customEmailAddresses": []
}
},
{
"type": "Microsoft.RecoveryServices/vaults/replicationVaultSettings",
"apiVersion": "2021-03-01",
"name": "[concat(parameters('Unity-Server-Backup-Services-Vault-Name'), '/default')]",
"dependsOn": [
"[resourceId('Microsoft.RecoveryServices/vaults', parameters('Unity-Server-Backup-Services-Vault-Name'))]"
],
"properties": {}
},
{
"type": "Microsoft.Storage/storageAccounts/blobServices",
"apiVersion": "2021-04-01",
"name": "[concat(parameters('Unity-Server-Storage-Account-Name'), '/default')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', parameters('Unity-Server-Storage-Account-Name'))]"
],
"sku": {
"name": "Standard_GRS",
"tier": "Standard"
},
"properties": {
"cors": {
"corsRules": []
},
"deleteRetentionPolicy": {
"enabled": false
}
}
},
{
"type": "Microsoft.Storage/storageAccounts/fileServices",
"apiVersion": "2021-04-01",
"name": "[concat(parameters('Unity-Server-Storage-Account-Name'), '/default')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', parameters('Unity-Server-Storage-Account-Name'))]"
],
"sku": {
"name": "Standard_GRS",
"tier": "Standard"
},
"properties": {
"protocolSettings": {
"smb": {}
},
"cors": {
"corsRules": []
},
"shareDeleteRetentionPolicy": {
"enabled": true,
"days": 7
}
}
},
{
"type": "Microsoft.Storage/storageAccounts/queueServices",
"apiVersion": "2021-04-01",
"name": "[concat(parameters('Unity-Server-Storage-Account-Name'), '/default')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', parameters('Unity-Server-Storage-Account-Name'))]"
],
"properties": {
"cors": {
"corsRules": []
}
}
},
{
"type": "Microsoft.Storage/storageAccounts/tableServices",
"apiVersion": "2021-04-01",
"name": "[concat(parameters('Unity-Server-Storage-Account-Name'), '/default')]",
"dependsOn": [
"[resourceId('Microsoft.Storage/storageAccounts', parameters('Unity-Server-Storage-Account-Name'))]"
],
"properties": {
"cors": {
"corsRules": []
}
}
},
{
"type": "Microsoft.Network/networkInterfaces",
"apiVersion": "2020-11-01",
"name": "[parameters('Unity-Server-NIC-Name')]",
"location": "eastus",
"dependsOn": [
"[resourceId('Microsoft.Network/publicIPAddresses', parameters('Unity-Server-PublicIp-Reservation-Name'))]",
"[resourceId('Microsoft.Network/networkSecurityGroups', parameters('Unity-Server-NSG-Name'))]"
],
"tags": {
"VantaDescription": "[concat('UnityServer-', parameters('Environment'), '-', parameters('Location'), '-NIC-', string(variables('Prod-Or-Non-Prod')))]",
"VantaNonProd": "parameters('IsThisProduction')",
"VantaContainsUserData": "false",
"VantaUserDataStored": "n/a",
"VantaOwner": "Devops"
},
"properties": {
"ipConfigurations": [
{
"name": "ipconfig1",
"properties": {
"privateIPAllocationMethod": "Dynamic",
"publicIPAddress": {
"id": "[resourceId('Microsoft.Network/publicIPAddresses', parameters('Unity-Server-PublicIp-Reservation-Name'))]"
},
"subnet": {
"id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', parameters('UberMgmt-VNET-Name-For-Region'), parameters('UberMgmt-VNET-Subnet-Name-For-Region'))]"
},
"primary": true,
"privateIPAddressVersion": "IPv4"
}
}
],
"dnsSettings": {
"dnsServers": []
},
"enableAcceleratedNetworking": false,
"enableIPForwarding": false,
"networkSecurityGroup": {
"id": "[resourceId('Microsoft.Network/networkSecurityGroups', parameters('Unity-Server-NSG-Name'))]"
}
}
}
],
"outputs": {}
}
}
}
]
}
最佳答案
我之前遇到过包含网络组件的 ARM 模板的计时问题。我在 ARM 模板中创建了一个包含 VNET 组件的网站,问题是它将启动 VNET 部署,然后该网站将尝试部署,但 VNET 尚未创建,它正在进行中。我最终编写了两个 ARM 模板,一个创建 RSG 和网络组件,然后第二个模板将在网络端部署完成后创建网站。
关于azure - Arm 模板将不会部署。提示缺少 NSG 资源,但它已包含在模板中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68185682/
我的 friend 编写了一个程序,它比较随机排列的骰子面,以找到分布最均匀的面——尤其是当面不仅仅是序列时。 我将他的程序翻译成 haskell 是因为我一直在寻找一个理由来让别人知道 haskel
我需要对表单中的某些字段进行评论/提示。我的想法是在模型中描述它,就像attributeLabels一样。我该怎么做? 然后它会是理想的,如果 Gii 模型(和 Crud)生成器直接从 mysql 列
我们使用 FastReport 来生成报告。事实上,我们为访问源代码付费。 我们目前使用的是 FastReport 的最新稳定版本。虽然它对于我们的生产来说足够稳定,但每当我编译时,我都会看到以下内容
我需要创建一个对话框/提示,包括用于用户输入的文本框。我的问题是,确认对话框后如何获取文本?通常我会为此创建一个类,将文本保存在属性中。不过我想使用 XAML 设计对话框。因此,我必须以某种方式扩展
我想提示用户是否要执行操作(删除) - 用警报框说"is"或“否”,如果是,则运行删除脚本,如果否,则不执行任何操作 我不太了解 javascript,因此是否有人可以使用 javascript 获得
所以我正在编写一个简单的 JS 代码。我们刚刚开始学习函数。我需要创建一个名为“printStars”的函数。 我需要从用户那里获取一个号码,并根据该号码打印“*”。 这就是我所做的:
我在我的页面上添加了一个提示,但它在页面加载之前加载了。如何仅在整个页面可见时才显示消息? 这是我的提示: if (name == null || name == "") { txt == "No
我在我的页面上添加了一个提示,但它在页面加载之前加载了。如何仅在整个页面可见时才显示消息? 这是我的提示: if (name == null || name == "") { txt == "No
我正在自定义我的 zsh 提示,并发现以下内容来检查是否有任何后台作业: if [[ $(jobs | wc -l) -gt 0 ]]; then # has background job(s)
这个问题在这里已经有了答案: JavaScript object: access variable property by name as string [duplicate] (3 个答案) pa
我正在尝试用 javascript 制作一个简单的数学练习程序。在提示警报中给出不同的值,并将答案与用户输入进行比较。这是代码: Calculations generate(); functio
在这段代码中,尽管我使用了文本对齐属性在“编辑文本” View 的中心设置“提示”。但它无法正常工作。 最佳答案 尝试 关于android - 如何在编辑文本的中心对齐文本(提示),我们在Sta
我正在尝试让我的 EditText 显示一个提示,例如“请在此处输入答案”,当用户点击 EditText 以键入他们的答案时,文本应该消失并留空,以便他们在其中输入答案. 截至目前,这就是我的 .xm
我当前的 android 应用程序中有两个微调器,我想要一个默认值,例如 editText 的 android:hint 功能。有没有办法这样做,但不会将提示添加到填充微调器的字符串数组。例如从微调器
如果我的表单已完全填写,我如何提示“感谢您填写表单,“name”!” function submit_onclick() { if(confirm("Thanks for completing t
我刚刚了解了prompt()命令;我知道 Prompt() 命令以字符串的形式返回用户输入。我正在搞乱下面的程序,我输入了Per“Dead”Ohlin作为男性名字。为什么这有效并且没有引起任何问题?
void openUpNow(FILE *x, FILE *y) { x = fopen("xwhatever", "r"); y = fopen("ywhatever", "r");
我有一个作业正在处理,但我在使用 prompt() 方法时遇到了问题。我看到我可以做一个提示,但我需要几个并且有数量。 例如... 我创建了一个 HTML 表格,其中包含许多艺术家和包含 DVD、CD
我正在学习 Big Nerd Ranch 的 iOS Programming, 2nd Edition,我已经来到第 4 章挑战:标题。该练习暗示我感到困惑;它说我需要做一些我认为不需要做的事情。 到
抱歉,如果这是微不足道的,但我没有找到任何解决此问题的建议。我在 Ubuntu 上,我的 Yii 项目需要 PHPUnit。我已经安装了 PHPUnit 两次,方法是下载 phpunit.phar 并
我是一名优秀的程序员,十分优秀!