This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // bug with Groovy 2.3.0-rc-4, should type check, but does not | |
| // http://jira.codehaus.org/browse/GROOVY-6748 | |
| import groovy.transform.TypeChecked | |
| //import org.junit.Test | |
| @TypeChecked | |
| class Class1 { | |
| static <A, B> void method1(A a, B b) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| set WRITE=%1 | |
| set READ=%2 | |
| :main | |
| call :myset %WRITE% %%READ%% | |
| goto :end | |
| :myset | |
| for /F "usebackq tokens=*" %%i in (`echo %%%2%%`) do set %1=%%i&& set PATH=%%i\bin;%PATH% | |
| goto :eof | |
| :end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // copy this file (frege-init.gradle) to an empty directory. | |
| // Setup the project by typing 'gradle -b frege-init.gradle fregeInit'. | |
| // You can now run 'gradlew build run' to compile, test and run your application. | |
| apply plugin : 'groovy' | |
| repositories { | |
| mavenCentral() | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| set WM="%WINMERGE_HOME%\winmergeu.exe" | |
| rem echo parameters 0 %0 1 %1 2 %2 3 %3 4 %4 5 %5 6 %6 7 %7 8 %8 9 %9 | |
| set LEFT=%6 | |
| set RIGHT=%7 | |
| set LEFT_TITLE=%3 | |
| set RIGHT_TITLE=%5 | |
| start %WM% /B %WM% /e /s /u /dl %LEFT_TITLE% /dr %RIGHT_TITLE% %left% %right% |
OlderNewer