ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/jakarta/servlet/jsp/el/TesterScopedAttributeELResolverPerformance.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/jakarta/servlet/jsp/el/TesterScopedAttributeELResolverPerformance.java
Status
scanned
Type
file
Name
TesterScopedAttributeELResolverPerformance.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
1879 (1.8 KB)
MD5
41c18e0feaf71a66a08025ac292c1a41
SHA1
d057ad76aa8a1ab576921433f8e41716d8ffcc3b
SHA256
f90cf246c9a8f3332370d6337720f66e49cdb301af196af96d6d86422701d5ec
SHA512

      
    
SHA1_git
9ee1e0428692d599d1aacfb9d3951513c4592309
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TesterScopedAttributeELResolverPerformance.java | 1.8 KB |

/* * 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. */ package jakarta.servlet.jsp.el; import jakarta.el.ELContext; import jakarta.el.ELManager; import jakarta.el.ELResolver; import jakarta.el.StandardELContext; import jakarta.servlet.jsp.JspContext; import jakarta.servlet.jsp.TesterPageContext; import org.junit.Test; /* * This is an absolute performance test. There is no benefit it running it as part of a standard test run so it is * excluded due to the name starting Tester... */ public class TesterScopedAttributeELResolverPerformance { /* * With the caching of NotFound responses this test takes ~20ms. Without the caching it takes ~6s. */ @Test public void testGetValuePerformance() throws Exception { ELContext context = new StandardELContext(ELManager.getExpressionFactory()); context.putContext(JspContext.class, new TesterPageContext()); ELResolver resolver = new ScopedAttributeELResolver(); for (int i = 0; i < 100000; i++) { resolver.getValue(context, null, "unknown"); } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
50.85
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 9 9