This file contains 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
Started by user [email protected] | |
Running as SYSTEM | |
[EnvInject] - Loading node environment variables. | |
Building in workspace /Users/coupang/.jenkins/workspace/Eats_copy | |
Running Prebuild steps | |
[Eats_copy] $ /bin/sh -xe /var/folders/6h/00qpqzz97593nlf0p7s9r8zr0000gn/T/jenkins619739810388098695.sh | |
+ git lfs install | |
Updated git hooks. | |
Git LFS initialized. | |
Success build forhudson.tasks.Shell@6547bc2f |
This file contains 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
#!/bin/bash | |
########################################################## | |
# Fix Symlinks | |
# | |
# Usage : Copy this file into the Framework directory, | |
# Execute it passing the Framework Name in argument. | |
# | |
########################################################## | |
if [ -z $1 ] ; then |
This file contains 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
static public String func(String input, String output) { | |
String missingPart = ""; | |
String inputUpcase = input.toUpperCase(); | |
String outputUpcase = output.toUpperCase(); | |
String longestSubString = MyLCS(inputUpcase, outputUpcase); | |
while (longestSubString.compareTo(inputUpcase) != 0) { | |
int posStart = inputUpcase.indexOf(longestSubString); | |
// System.out.println(" ================== "); | |
System.out.println("posStart = " + posStart + ",lenth = " | |
+ longestSubString.length()); |