Questions tagged [workspace]

An area of memory (RAM or disk based) for which to perform operations.

In programming, a workspace is an area of memory (RAM or disk based) for which to perform operations.

For example, this is similar to an area on a disk set aside to process files.

This is usually a copy from a master in which operations can be performed and potentially undone before committing to storage.

A workspace is (often) a file or directory that allows a user to gather various source code files and resources and work with them as a cohesive unit. Often these files and resources represent the complete state of an IDE at a given time, a snapshot. Workspaces are very helpful in cases of complex projects when maintenance can be challenging. Good examples of environments that allow users to create and use workspaces are Microsoft Visual Studio and Eclipse.

Reference: Wikipedia

1061 questions
311
votes
6 answers

How to delete a workspace in Eclipse?

How to delete a workspace in Eclipse?
Rahul
  • 12,392
  • 13
  • 55
  • 59
214
votes
10 answers

Eclipse - "Workspace in use or cannot be created, chose a different one."

I'm trying to create a workspace in the /Users/Shared/ directory with the thought that I can share that workspace between users. The problem is that after I create the workspace and change the permission on it, I encounter the error below (image)…
Hristo
  • 42,002
  • 60
  • 155
  • 224
169
votes
3 answers

Create a new workspace in Eclipse

I don't see any menu item I can use to create a new workspace. What should I use to create a new workspace and move some of the projects from existing default workspace to a new workspace? I am using Windows with Eclipse 3.7.
BigUser
  • 1,847
  • 2
  • 14
  • 10
165
votes
14 answers

Jenkins Pipeline Wipe Out Workspace

We are running Jenkins 2.x and love the new Pipeline plugin. However, with so many branches in a repository, disk space fills up quickly. Is there any plugin that's compatible with Pipeline that I can wipe out the workspace on a successful build?…
qmo
  • 2,828
  • 3
  • 15
  • 23
157
votes
5 answers

How to delete a workspace in Perforce (using p4v)?

I'm new to Perforce and have created a few workspaces as exercises for getting familiar with it. Now I would like to delete some of the workspaces. I just want to get rid of the workspaces so that they do not appear on the drop-down in the…
Angelo
  • 3,445
  • 3
  • 25
  • 39
141
votes
4 answers

Eclipse Workspaces: What for and why?

I have seen, read and thought of different ways of using Workspaces (per project, per application (multi-asseted or not), per program language, per target (web-development, plugins,..), and so on) and I am still doubting what the best approach…
e-motiv
  • 5,861
  • 5
  • 25
  • 27
128
votes
15 answers

Change computer name for a TFS Workspace

My System Administrator renamed my computer. So where it was "MyLaptop2" it is now just "MyLaptop". So now all my source control bindings and checked out files are looking for a workspace with "MyLaptop2". Is there a way to redirect that workspace…
Vaccano
  • 70,257
  • 127
  • 405
  • 747
116
votes
11 answers

detach all packages while working in R

While working to solve another problem I got this problem: I can remove all R objects by: rm(list = ls(all = TRUE)) Is there equivalent command that can detach installed packages during working session? > sessionInfo() R version 2.12.2…
John Clark
  • 2,319
  • 4
  • 17
  • 13
111
votes
11 answers

Eclipse: Error ".. overlaps the location of another project.." when trying to create new project

I keep getting an error message in Eclipse when creating a new project. I have created a workspace at the level C:\Users\Martin\Java\Counter Inside Counter there are no files but there is a directory called counter_src which contains source files…
Martin
  • 22,234
  • 53
  • 190
  • 309
105
votes
7 answers

Eclipse: How do I refresh an entire workspace? F5 doesn't do it

I have a workspace with a bunch of java projects. If I go to File->Refresh, it doesn't really refresh anything (perhaps the currently selected project). How do I get eclipse to refresh all of the projects?
Jack
  • 1,612
  • 3
  • 13
  • 17
102
votes
9 answers

The cause of "bad magic number" error when loading a workspace and how to avoid it?

I tried to load my R workspace and received this error: Error: bad restore file magic number (file may be corrupted) -- no data loaded In addition: Warning message: file ‘WORKSPACE_Wedding_Weekend_September’ has magic number '#gets' Use of save…
N Brouwer
  • 3,878
  • 6
  • 26
  • 34
92
votes
19 answers

How to force Eclipse to ask for default workspace?

I noticed that after installing cdt, Eclipse always loads the default workspace. The workspace listed in the config.ini in osgi.instance.area.default. Eclipse does not ask which workspace to open regardless if Prompt for workspace on startup is set…
michael nesterenko
  • 13,240
  • 23
  • 104
  • 175
88
votes
4 answers

Disable building workspace process in Eclipse

What is Eclipse doing when building workspace process is running? Can i disable it because it is taking a long time to complete and i dont know if it is necessary. Thank you
Super Cat
  • 1,483
  • 2
  • 11
  • 8
85
votes
9 answers

How to Clone an Eclipse Workspace

I am wondering how to create new clean Eclipse workspace but having all settings from an existing one. Maybe something like cloning but without projects?
Zemzela
  • 3,012
  • 6
  • 19
  • 29
84
votes
7 answers

eclipse workspace: how to rename workspace

There is no option in the file menu to rename a workspace. Is the recommended practice to close eclipse, rename the folder, and re-open? I worry about some potential dangling references in configuration files corrupting my…
Alexx
  • 3,352
  • 6
  • 28
  • 39
1
2 3
70 71