ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/res/graal/graal-measure.sh

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/res/graal/graal-measure.sh
Status
scanned
Type
file
Name
graal-measure.sh
Extension
.sh
Programming language
Bash
Mime type
text/x-shellscript
File type
Bourne-Again shell script, ASCII text executable, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
1793 (1.8 KB)
MD5
4a43db6043b18827c9954528c434f834
SHA1
03682872d695b6d961036943b78b9570681d7140
SHA256
7dc5df17c40bae8f6b3ac99c8718ed669adc0e08bd311f02cc61688c05302a71
SHA512

      
    
SHA1_git
34b31567b5123e77bdd6c71b5194449a4b955bf6
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
graal-measure.sh | 1.8 KB |

#!/bin/bash # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. GREEN='\033[0;32m' RED='\033[0;31m' NC='\033[0m' CURDIR=`pwd` # resolve links - $0 may be a softlink PRG="$0" while [ -h "$PRG" ]; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '.*-> \(.*\)$'` if expr "$link" : '/.*' > /dev/null; then PRG="$link" else PRG=`dirname "$PRG"`/"$link" fi done # directory of this script PRGDIR=`dirname "$PRG"` EXECUTABLE=${PRGDIR}/../../output/graal/tc-graal-image ./${EXECUTABLE} "$@" 2>&1 & PID=$! sleep 2 RESPONSE=`curl -s localhost:8080/` if [[ "$RESPONSE" == 'OK: http://localhost:8080/[1]' ]]; then printf " ${GREEN}SUCCESS${NC}: the servlet is working " else printf " ${RED}FAILURE${NC}: the HTTP response of the application does not contain the expected value " fi RSS=`ps -o rss ${PID} | tail -n1` RSS=`bc <<< "scale=1; ${RSS}/1024"` echo "RSS memory: ${RSS}M" SIZE=`wc -c <"${EXECUTABLE}"`/1024 SIZE=`bc <<< "scale=1; ${SIZE}/1024"` echo "Image size: ${SIZE}M" kill -9 $PID
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
45.95
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 10 10