Questions tagged [master]

603 questions
6
votes
2 answers

git clean does not clean unwanted folder

I have a .NET solution which, after switching back to master branch, leaves a project folder behind. I want to clean this folder up (there is nothing but bin and obj folders inside, with some old dll's) so I tried git clean -f -d. This did not…
Matt W
  • 9,407
  • 17
  • 83
  • 146
6
votes
2 answers

apache spark master ui not working

Hey all I have a simple 2 node cluster 1 master and 1 slave(hadoop and spark). Everything was working fine but for some reason now when I launch the master spark I can't connect to the master web ui(port 8081 i set it explicitly in the spark-env.sh…
Neil
  • 161
  • 1
  • 5
  • 13
6
votes
0 answers

Error Building AOSP for Ubuntu 15.04 from Master - Build Stopped Subcommand Failed

Whenever I make android I am failing with the below error approximately 36% into the make. It doesn't matter which platform I am trying to build the same error occurs. I've looked almost everywhere toyed with the .jack file, .jack-settings file and…
barodactyl
  • 61
  • 1
  • 3
6
votes
1 answer

Symfony2 : onKernelResponse called twice as MASTER_REQUEST

I'm using the event listener onKernelResponse. Despite I used : if (HttpKernelInterface::MASTER_REQUEST != $event->getRequestType()) { return; } It's having a MASTER_REQUEST twice in my action, there is one before the …
Bonswouar
  • 1,342
  • 1
  • 16
  • 35
6
votes
4 answers

Set master branch to latest tag

This is an example of how my git repo is right now: v1.0 v1.1 v1.2 | | | a - b - c | | master HEAD I usually commit, tag and push tags like this: git commit -a -m "Commit msg" git tag -a…
Peter
  • 349
  • 1
  • 4
  • 15
5
votes
3 answers

What is the difference between Branch and Remote in GIT?

I am currently taking the course GIT and GITHUB from udacity. One thing I'm really confused is what is the difference between remote and branch as both makes the same sense to me, as per my understanding.
raju jha
  • 53
  • 1
  • 8
5
votes
2 answers

Algorithm cost using master theorem

Hello can anyone please help me with the question T(n)=T(n^(1/2)) + theta (lg lg n) This is what I have done so far Let m = lg n s(m)=s(m/2) + theta (lg m) Applying master theorem here a=1 b=2 m^log 2 (1) = m^0 =1 now stuck.
aneena
  • 159
  • 2
  • 12
5
votes
3 answers

How to sync local git repo with origin/master eliminating all changes

I want to sync my local repository so as to make the local an exact copy of the master. Since checking it out I have added several files to my local, not present in master, that I do not wish to commit. Nevertheless, in this procedure, I want to…
Ben Weaver
  • 858
  • 1
  • 7
  • 17
5
votes
1 answer

ASP.NET MVC - Set Master View accordingly with Controller

By any chance, is there any easy way to set a default MasterView for all the actions inside a specific controller? For example If I have the HomeController I want all the actions inside it to inherit the Site.Master as default, but If I am inside…
zanona
  • 11,379
  • 24
  • 78
  • 137
4
votes
2 answers

Mysql : How to synchronize databases after having been offline using replication?

I created a replication between two computers (a laptop I use to add new datas in my db and a server that save everything I do on the laptop) and it works fine. But today, my laptop was online so I was not able to update my server. Result : I…
beluga
  • 173
  • 3
  • 15
4
votes
3 answers

Drupal 7 MySQL master/slave replication not working

I am having trouble getting Drupal 7.7 to use a MySQL slave database. My settings.php is as follows: $databases['default']['default'] = array( 'driver' => 'mysql', 'database' => 'my_db', 'username' => 'dbuser', 'password' => 'dbpw', 'host'…
Brian
  • 188
  • 1
  • 6
4
votes
1 answer

MySQL Replication Simple Master/Slave Replication

I have simple Master/Slave configuration. I have 8GB of RAM on both my production boxes. I was using Master for Writes only and slave for Reads only. But over the weekend I ran one job which was to insert data on master which should be replicated to…
MySQL DBA
  • 5,084
  • 18
  • 48
  • 69
4
votes
2 answers

How does Master-Master replication work?

Conceptually, how does Master-Master replication work? I assume collisions would be a common occurrence that need to be resolved somehow.
frooyo
  • 1,759
  • 3
  • 18
  • 19
4
votes
3 answers

Github: reset to previous commit

Small team. A colleague pushed to origin:master by mistake. He has reset his local repo but cannot push -f to Github because repo is protected. I have fetched the repo but not merged his errant commit into my local master...yet. How can I, assuming…
Meltemi
  • 36,348
  • 48
  • 182
  • 274
4
votes
3 answers

where is the spark job of transformation and action done?

I have been using Spark + Python to finish some works, it's great, but I have a question in my mind: where is the spark job of transformation and action done? Is transformation job done in Spark Master ( or Driver ) while action job is done in…
Olaf apple
  • 75
  • 10
1 2
3
40 41