$ sysctl hw | grep 64bit


결과가 hw.cpu64bit_capable: 1이라고 나온다면 나의 맥북은 64bit 프로세스를 지원한다는 의미가 된다.
만약 hw.cpu64bit_capable: 0이라고 나온다면 나의 맥북은 64bit 프로세스를 지원하지 않는다.

또는 Processor Name이 Intel Core 2 Duo면 64bit를 지원하는 CPU가 장착되어 있다. (자세한 내용은 : http://support.apple.com/kb/HT3696?viewlocale=ko_KR)를 참조

환경변수 값을 출력하는 getconf를 이용하여 LONG_BIT를 확인하면 32bit는 32, 64bit는 b4로 출력이 된다.

saltfactory-macbook:~ saltfactory$ getconf LONG_BIT
32



1. request의 getParameterNames()로 확인하는 방법
@RequestMapping(value="/tests/parameters", method=RequestMethod.GET)
@override
public ModelAndView test(HttpServletRequest request, HttpServletResponse response){
	for(Enumeration params = request.getParameterNames(); params.hasMoreElements();){
		String _paramName = (String) params.nextElement();
		System.out.println ( _paramName + " : " + request.getParameter(_paramName);
	}
}

Cloud Computing

Future System/Cloud Computing | 2009/10/05 19:02 | saltfactory

sudo defaults write com.apple.finder QLEnableXRayFolders 1

다시 이전의 설정을 하기 이해선 1값을 0으로 변경하면 된다.

참고 : http://www.macosxhints.com/article.php?story=20090912030240376


이전 1 2 3 4 5 ... 15 다음