case sensitive exact match search
7 results found in 23 ms, displaying results 1-7
    
public static String p1 = "http[s]?://([^/]*)/(.*)";
public static String p2 = "([^:]*):(.)*";
public static Pattern
more fragments
#!@bash@

SRCDIR=$(pwd)/../src
cd `dirname $0`
FILE=`basename $0 .sh`
bash @prefix@/bin/webdsl cleanall > /dev/null 2> /dev/null
bash @prefix@/bin/webdsl test-ng $FILE 2>&1 | cat > $FILE.out

exec 3<> $FILE.app
while read line <&3
do
if echo "$line" | grep -q "^//"; then
pattern=`echo "$line" | sed 's/^[/]*//'`
echo $pattern | grep -q "^\^"
negate=$?
echo $pattern | grep -q "^#"
more fragments
#!/bin/bash

FILE=$1
WEBDSL=${2:-bash /usr/local/bin/webdsl}
TESTARG=${3:-test}

$WEBDSL clean > /dev/null 2> /dev/null
$WEBDSL $TESTARG $FILE 2>&1 | cat > $FILE.out
#cat $FILE.out

echo "checking"
exec 3<&0
exec 0<"$FILE"
#printf '%s\n' "$FILE.out" |
#while read -rd $'\r' line; do
while read -r line; do
echo $line
if echo "$line" | grep -q "^//"; then
pattern=`echo "$line" | sed 's/^[/]*//
more fragments
toConvert);
else if(toConvert.matches("[^/]+"))
return (T) new SimpleDateFormat(DateType.getDefaultTimeFormat(
more fragments
 isNewSessionManager;
protected static java.util.regex.Pattern domainPattern = java.util.regex.Pattern.compile("(^\\w{0,6})://([^/]+)");
more fragments
     SELECT DISTINCT? selectedPropertiesList | ( NEW className OPEN selectedPropertiesList CLOSE );
%%
%% selectClause
%% : SELECT^ // NOTE:
more fragments
$");
protected static Pattern baseURLPattern= Pattern.compile("(^\\w{0,6})(://[^/]+)");
protected AbstractPageServlet commandingPage =
more fragments