mvn force update
mvn -X -U clean compile
Technology Software Hardware News Tips and Tricks Architecture Yazılım Mimari Bilgisayar Teknoloji Türkçe İngilizce
You can buy any kind of electronic gadgets from DealExtreme with free shipping option.
Please visit DealExtreme for very low prices.
Here is the link to the site : www.dealextreme.com
Taken from: http://www.liamdelahunty.com/tips/linux_find_string_files.phpfind . | xargs grep 'string' -slThe -s is for summary and won't display warning messages such as grep: ./directory-name: Is a directoryThe -l is for list, so we get just the filename and not all instances of the match displayed in the results.
Performing the search on the current directory I get:
./javascript_open_new_window_form.php
./excel_large_number_error.php
I find this useful for just quickly seeing which files contain a search time. I would normally limit the files searched with a command such as :find . -iname '*php' | xargs grep 'string' -slAnother common search for me, is to just look at the recently updated files:find . -iname '*php' -mtime -1 | xargs grep 'string' -slwould find only files edited today, whilst the following finds the files older than today:find . -iname '*php' -mtime +1 | xargs grep 'string' -sl
zaman:
11/05/2013 11:14:00 am
0
yorum
Sample condition:
(issue.projectObject.name != "PRJ" && issue.issueTypeObject.name == 'Project') || (issue.projectObject.name == "PRJ" && issue.issueTypeObject.name == 'Incident' && issue.components.name.contains('CRM'))
import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.customfields.manager.OptionsManager
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.bc.project.component.ProjectComponent
import java.util.List
import java.util.ArrayList
import com.atlassian.jira.bc.project.component.ProjectComponent
def optionsManager = ComponentManager.getComponentInstanceOfType(OptionsManager.class)
def cf = customFieldManager.getCustomFieldObjects(issue).find {it.name == 'Support Needed In'}
def fieldConfig = cf.getRelevantConfig(issue)
def option = optionsManager.getOptions(fieldConfig).find {it.value == "Internal Test"}
issue.setCustomFieldValue(cf, option)
issue.summary = issue.summary + " - Support (Internal Test)"
if(issue.projectObject.name == "MSP-PRJ"){
def component = ComponentAccessor.getProjectComponentManager().findByComponentName(10500,'CRM')
Listl = new ArrayList ()
l.add(component)
issue.setAssignee(ComponentAccessor.getUserUtil().getUser('egulec'))
issue.setComponentObjects(l)
}
zaman:
11/05/2013 11:10:00 am
0
yorum
On the View tab, which Arrangement are you using? Conversation is only available with Date arrangement :)
Order by "Received" column and it will be enabled again.
zaman:
10/23/2013 09:44:00 am
0
yorum
Just download the package with wget
Copy the package to /var/cache/apt/archives
run apt-get with the following options:
sudo apt-get install --no-download --fix-missing openntpd
zaman:
9/05/2013 10:30:00 am
0
yorum
export http_proxy=http://username:password@IP:port/
zaman:
9/03/2013 01:28:00 pm
0
yorum
c:\was\AppServer\java\jre\bin\java -Djava.ext.dirs=c:\was\AppServer\deploytool\itp\plugins\com.ibm.websphere.v7_7.0.0.v20080817\wasJars\ -cp securityImpl.jar:iwsorb.jar com.ibm.ws.security.util.PasswordDecoder {xor}pass
This will output the decoded password
zaman:
8/05/2013 03:36:00 pm
0
yorum