workspace

Workspace integrity : The file could't be opened Xcode 5

為{幸葍}努か 提交于 2020-01-02 21:09:51
问题 I'm developing an application in PhoneGap using Xcode 5. I created project as per steps given in PhoneGap documentation. The app worked well in last run. But as of now it's showing an Workspace Integrity Error : The file cannot be opened. This error comes-up in case of Xcode 5 and not in Xcode 4. Any idea how to deal with this issue? 回答1: Go to your xcode project file in finder, right click and select show package contents. Inside that you have this file called project.pbxproj. Open that with

Can I add a new folder to a TFS repository server-side without using a local working copy?

你离开我真会死。 提交于 2020-01-02 02:00:14
问题 I'm currently transfering some source code from a Subversion (SVN) repository to my client's Team Foundation Server. One of the things I stumbled upon is that there seems to be no way to edit the repository without first pulling all files in that repository to a local working folder in the local workspace. I'm using Visual Studio 2008 Team Explorer. My repository resembles this structure: $ $/branches $/trunk $/trunk/Solution1 $/trunk/Solution1/... etc. Now what I want to do is add a new

Display IPython variables without entering using whos

回眸只為那壹抹淺笑 提交于 2020-01-01 08:47:15
问题 Is there a way to view a list of the IPython variables currently in the workspace without having to send the command 'whos'. I often find myself not remembering what variable names I want to use while typing a command. In IPython, I have to erase the current line I was typing and send a 'whos' statement to see which variables are currently available. Normally, in GUI based tools like MATLAB I would just look to the right at my Workspace Variable window. 回答1: As others said, you can have as

Is there workaround for when TFPT is “unable to determine the workspace” and refreshing the cache does not work?

谁都会走 提交于 2020-01-01 03:56:06
问题 I'm having trouble getting TFPT.exe to work at all, even after trying to refresh the cached workspace settings per the usual advice on the internet. See below for a log representative of what I've tried and am seeing. Can anyone explain why "tf get" is able to detemine the workspace, but "tfpt annotate" fails? C:\tfsproj> set tfptcmd="C:\Program Files (x86)\Microsoft Team Foundation Server 2010 Power Tools\TFPT.exe" C:\tfsproj> set tfcmd="C:\Program Files (x86)\Microsoft Visual Studio 10.0

How to transfer Eclipse workspace and project from Windows to Linux and Mac

我只是一个虾纸丫 提交于 2019-12-28 14:29:09
问题 We have a a product developed on Windows for years. The product is composed of one Eclipse workspace and about 20 projects. On Windows, we ask every developer check out projects into d:\dev\product folder, and copy a unified Workspace to d:\dev\prod_workspace. This way, whenever a new machine is set, we simply copy files to the same folder, and we can start working immediately. Now we need to move our development environment to Linux and Mac. But there's no D:\ on Unix. And home folder for

how to get a conf.txt path in eclipse

与世无争的帅哥 提交于 2019-12-25 11:34:39
问题 I have an eclipse project and in one folder there is a text file "conf.txt". I can read and write the file when I use the path on my Computer. But I have to write my own folders there as well, not only the workspace folders. So know I want to commit the program for others, but then the path I put in the program won't work, because the program is running on a different computer. What I need is to be able to use the file with only the path in my workspace. If I just put in the path, which is in

how to get a conf.txt path in eclipse

蹲街弑〆低调 提交于 2019-12-25 11:34:06
问题 I have an eclipse project and in one folder there is a text file "conf.txt". I can read and write the file when I use the path on my Computer. But I have to write my own folders there as well, not only the workspace folders. So know I want to commit the program for others, but then the path I put in the program won't work, because the program is running on a different computer. What I need is to be able to use the file with only the path in my workspace. If I just put in the path, which is in

Eclipse doesn't clean or build any projects

时光毁灭记忆、已成空白 提交于 2019-12-25 08:44:56
问题 I'm running Eclipse Neon. Whenever I click on any of my projects and try to click clean or build it doesn't allow me to - it is greyed out. It doesn't matter if I make any changes to the code or do anything else, it never gives me the option to clean/build. 回答1: It seems you have only general projects without builders: right-click on a project and choose Properties . In the Properties for ... dialog, in Builders look if there any builder listed. Without builders, your projects are probably

Where is the “Team members” panel in Team Explorer 2012

狂风中的少年 提交于 2019-12-24 08:13:56
问题 I installed the team explorer 2012 and the TFS Power Tools 2012 because i need the workspace template functionality. But after starting the Team Explorer and connecting to our TFS 2012 i cannot find the "Team Members" menu where i can set those workspace templates. Am i missing something? Is this menu located elsewhere? 回答1: The team members hub is part of the power tools. 来源: https://stackoverflow.com/questions/13457621/where-is-the-team-members-panel-in-team-explorer-2012

Using matlabs save in functions

北城余情 提交于 2019-12-23 12:17:44
问题 Is it possible to use the Matlab save command inside a function to store workspace variables? Consider following scenario: I've got a bunch of variables in the Matlab workspace and want all that are beginning with "a" and "b" in a .mat file. Of course this works: save('test.mat','a*','b*') but i want to have a variable filename. The function i wrote: function save_with_name(name) save(name,'a*','b*') does not work, because save_with_name doesn't see the workspace variables. Is there a