Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

49
votes
5answers
21k views

How to move a single folder from one Subversion repository to another repository?

I have a "docs" folder in a Subversion repository named "project". I've come to the conclusion that it should really be kept under a separate Subversion repository named "project_docs". I'd like to ...
32
votes
1answer
2k views

Overload on reference, versus sole pass-by-value + std::move?

It seems the main advice concerning C++0x's rvalues is to add move constructors and move operators to your classes, until compilers default-implement them. But waiting is a losing strategy if you use ...
28
votes
4answers
15k views

How do I move file with Ruby

I want to move a file with ruby. How do I do that?
20
votes
4answers
558 views

Memory corruption in System.Move due to changed 8087CW mode (png + stretchblt)

I have strange a memory corruption problem. After many hours debugging and trying I think I found something. For example: I do a simple string assignment: sTest := 'SET LOCK_TIMEOUT '; However, ...
18
votes
6answers
21k views

Move / Copy File Operations in Java

Is there a standard Java library that handles common file operations such as moving/copying files/folders?
15
votes
5answers
513 views

How to actually implement the rule of five?

UPDATE at the bottom q1: How would you implement the rule of five for a class that manages rather heavy resources, but of which you want it to be passed around by value because that greatly ...
13
votes
2answers
4k views

What is std::move()?

What is it? What does it do? When should it be used? Good links are appreciated.
11
votes
4answers
381 views

Move semantics == custom swap function obsolete?

Recently, many questions pop up on how to provide your own swap function. With C++11, std::swap will use std::move and move semantics to swap the given values as fast as possible. This, of course, ...
9
votes
5answers
4k views

Conveniently move a class to a different package in eclipse without borking svn

When moving a file from old.package to new.package I want two things to happen: Update all references to that class (in all files of the project) so that the new package is used svn move ...
8
votes
4answers
1k views

Move row from one table to another?

I have two tables with the same column definitions. I need to move (not copy) a row from one table to another. Before I go off and use INSERT INTO/DELETE (in a transaction), is there a smarter way? ...
8
votes
9answers
7k views

MySQL: Move node in nested set

I'd need a MySQL query that moves a node and all it's children within a nested set. I found this site, but that function just seems so illogical - there's no universeid or treeid in a nested set ...
8
votes
5answers
4k views

Fastest way(s) to move the cursor on a terminal command line?

What is the best way to move around on a given very long command line in the terminal? Say I used the arrow key or Ctrl-R to get this long command line: ./cmd --option1 --option2 --option3 --option4 ...
7
votes
2answers
260 views

How does std::move() transfer values into RValues?

I just found myself not fully understanding the logic of std::move(). At first, I googled it but seems like there are only documents about how to use std::move(), not how its structure works. I ...
7
votes
2answers
169 views

Correct use of `= delete` for methods in classes

Is the following snipplet correct for un-defining all otherwise methods and constructors for a class? struct Picture { // 'explicit': no accidental cast from string ti Picture explicit ...
7
votes
4answers
1k views

Is this correct usage of C++ 'move' semantics?

Tonight I've been taking a look at some code I've been working on over the last few days, and began reading up on move semantics, specifically std::move. I have a few questions to ask you pros to ...
7
votes
2answers
831 views

Zombie objects after std::move

I'm confused about the state of an object after it's been moved using C++0x move semantics. My understanding is that once an object has been moved, it's still a valid object, but its internal state ...
7
votes
2answers
351 views

Forcing closed an open file by C#

I found a similar question here but it was closed/accepted with an answer of "don't do that". I'm in a situation where I don't care what happens to the other applications, I want to take a file that ...
7
votes
1answer
2k views

SVN move single directory into other repository (with history)

Related question: Moving repository trunk to another’s branch (with history) I know that one can dump a complete SVN repository with history and load it into a user-defined (sub)directory of the ...
7
votes
2answers
895 views

Copy from one register to another - VIM

How to copy the contents of one register to another without pasting on clip board? I'd yanked one text and it got yanked in the default " register. Now i wan't to copy another text without ...
7
votes
2answers
3k views

Git: Move a branch to a new tag

My personal Wordpress install is cloned from the wordpress git mirror on GitHub. I checked out the 2.7.1 tag to the branch "stable" (git checkout -b stable 2.7.1) and its been running fine since. Now ...
7
votes
10answers
4k views

Move all files except one

How can I move all files except one? I am looking for something like: 'mv ~/Linux/Old/!Tux.png ~/Linux/New/' where I move old stuff to new stuff -folder except a Tux.png. !-sign represents a ...
6
votes
2answers
129 views

Does moving leave the object in a usable state?

Say I have two vectors and I move one unto the other, v1 = std::move(v2); will v2 still be in a usable state after this?
6
votes
2answers
359 views

Move or Named Return Value Optimization (NRVO)?

Lets say we have the following code: std::vector<int> f() { std::vector<int> y; ... return y; } std::vector<int> x = ... x = f(); It seems the compiler has two approaches ...
6
votes
1answer
7k views

Detect touch press vs long press vs movement?

I'm currently fiddling around with Android programming, but I have a small problem detecting different touch events, namely a normal touch press (press on the screen and release right away), a long ...
6
votes
2answers
2k views

Qt - Moving Frameless window (slow repaint?)

Hy there, I'm new to Qt and i tried to create a Frameless window, which is dragable. The Problem is, if i move the window.. there are are thousands of (it? sorry, don't know how to describe it in ...
6
votes
4answers
4k views

how do you move multiple files in git?

I try: git mv a.py b.py src/ and get fatal: multiple sources for the same target, source=b.py, destination=src/b.py Using the -n flag, like so git mv -n a.py b.py src/ gives me: Checking rename ...
6
votes
6answers
1k views

How to reduce CPU usage when moving a component in a OnMouseMove event in Delphi 7?

In a Delphi 7 application, I want to move a component accordingly to the mouse. Im doing something like that: procedure MyComponent.MouseMove(Sender: TObject;Shift: TShiftState; X, Y: Integer); begin ...
5
votes
2answers
196 views

Why do some people use swap for move assignments?

For example, stdlibc++ has the following: unique_lock& operator=(unique_lock&& __u) { if(_M_owns) unlock(); unique_lock(std::move(__u)).swap(*this); __u._M_device = 0; ...
5
votes
5answers
330 views

Is deleting an element in the middle of a std::vector still expensive with movable types?

It is generally thought of deleting an element in the middle of a std::vector to be costly, as it needs to copy every element after it down to fill the hole. With C++11, std::vector will instead ...
5
votes
5answers
287 views

passing heavy objects C++0x

I have a function which produces a type of expensive object (containing vectors and a maps of a non fixed size) so I really want to avoid invoking copy c'tors. Until now I have just returned a ...
5
votes
1answer
118 views

Move a range of elements between containers?

I've been looking at the C++ documentation for a function which would move a range of elements from one container to another, using move semantics. However, I have not found such a function. What am I ...
5
votes
4answers
2k views

Unix Bash rename files using a regex [closed]

I would like to rename all files from a folder using a regex(add a name to the end of name) and move to another folder. It my opinion, it should be looking like this: mv -v ./images/*.png ...
5
votes
4answers
648 views

How to move a project to a new SVN repository?

What's the best/easiest/fastest way to move a project from a local copy to a new repository? The machine hosting the original repository died and i am in the process of recreating a repo on a new ...
4
votes
4answers
908 views

System.IO.File.Delete() / System.IO.File.Move() sometimes does not work

A Winforms program needs to save some run time information to an XML file. The file can sometimes be a couple of hundred kilobytes in size. During beta testing we found some users would not hesitate ...
4
votes
1answer
315 views

Why discards std::forward constexpr-ness?

Being not declared constexpr, std::forward will discard constexpr-ness for any function it forwards arguments to. Why is std::forward not declared constexpr itself so it can preserve constexpr-ness? ...
4
votes
2answers
760 views

Moving submodules with Git

Is there any way to move submodules within your superproject without removing them first and re-adding them ?
4
votes
2answers
272 views

Using move semantics with std::pair or std::tuple

Suppose you want to take advantage of move semantics, but one of your movable classes needs to be part of an std::pair. The purpose would be to create a function that returns an std::pair that can be ...
4
votes
3answers
695 views

PHP: Move file from domain to subdomain

I have a site on a domain, let's call it "mydomain.com", where people can log in. This domain has a subdomain sub.mydomain.com. When the user uploads a file on the main domain, I want to move it to ...
4
votes
2answers
475 views

How do I move a Git branch out into its own repository?

I have a branch that I'd like to move into a separate Git repository, and ideally keep that branch's history in the process. So far I've been looking at git filter-branch, but I can't make out ...
4
votes
3answers
1k views

Idiots guide to moving a directory up in SVN

No, this is not a duplicate of this. While I'm normally used to using visual tools with SVN, I find myself now faced with wanting to move Repo/Parent/ChildX/ChildY to Repo/ChildY. I receive the ...
4
votes
6answers
9k views

Moving files under python

I'm confused with file moving under python. Under windows commandline, if i have directory c:\a and a directory c:\b, i can do move c:\a c:\b which moves a to b result is directory structure c:\b\a ...
4
votes
3answers
2k views

Moving All Files From Directories One Step Up

I have a directories that look like this fool@brat:/mydir/ucsc_mm8> tar -xvf *.tar 1/chr1.fa.masked 1/chr1_random.fa.masked 2/chr2.fa.masked 3/chr3.fa.masked 4/chr4.fa.masked 5/chr5.fa.masked ...
3
votes
1answer
102 views

Issue with moving email items from one pst to other via VBA Code

I am trying to move email from one pst to other, base on certain criteria. Here, below is sample code gotten from here. The important part of the code, which moves message, is as below: If ...
3
votes
3answers
132 views

What's the type of std :: move?

This code works as expected (online here). At the end v is empty and w is not empty as it has pilfered the contents of v. vector<int> v; v.push_back(1); cout << "v.size(): " ...
3
votes
2answers
70 views

how to properly move one or more packages into another package in java using code

I am developing an application [desktop swing application] which requires me to do refactoring via code. [I know the interface and feature is already provided by the eclipse IDE but I am required to ...
3
votes
3answers
62 views

Move SVN project withing repository without checkout

Suppose you have this SVN repository structure Root Foo Project1 Project2 Bar Project3 And you want to move Project1 to the top level: Root Foo Project2 ...
3
votes
3answers
229 views

Windows batch command to move all folders in a directory with exceptions

I am trying to write a Windows Batch file that will allow me to move all directories within a given source directory into a target directory that exists within that source directory. Obviously my ...
3
votes
3answers
499 views

Python - Move and overwrite files and folders

I have a directory, 'Dst Directory', which has files and folders in it and I have 'src Directory' which also has files and folders in it. What I want to do is move the contents of 'src Directory' to ...
3
votes
1answer
74 views

Does Resharper 5.1 Refactor (Refactor->Move) Correctly Notify AnkhSVN/maintain SVN history?

My dev environment is Visual Studio 2010, with Resharper 5.1.3000.12 and AnkhSVN 2.1.10129.17 installed. It's my understanding that Resharper should notify AnkhSVN (or VisualSVN, etc) when a ...
3
votes
3answers
296 views

How do I move a Perforce “workspace” folder?

I've just downloaded a 4.5GB depot to a location on my hard drive that is not ideal. I'd like to move the folder that Perforce now sees as the "workspace" folder (iPhone) to another folder on my hard ...

1 2 3 4 5 10