- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 58 for compiled (0.05 seconds)
-
src/main/java/org/codelibs/fess/util/SystemUtil.java
} /** * Gets the compiled pattern for matching sensitive property/environment variable keys. * The pattern is read from the system property 'app.log.sensitive.property.pattern'. * If not set, a default pattern matching common sensitive key names is used. * * @return The compiled Pattern for sensitive key matching */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:32:50 GMT 2026 - 3.1K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/filters/KotlinInvokeDefaultBridgeFilter.groovy
*/ package gradlebuild.binarycompatibility.filters import japicmp.filter.BehaviorFilter import javassist.CtBehavior /** * Kotlin 2.2 produces bridge methods for invoke operator functions compiled as JVM default methods. */ class KotlinInvokeDefaultBridgeFilter implements BehaviorFilter { @Override boolean matches(CtBehavior ctBehavior) { return ctBehavior.name.startsWith("access\$invoke\$jd")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jul 08 07:03:16 GMT 2025 - 1K bytes - Click Count (0) -
architecture/standards/0008-use-nullaway.md
* For polynull public APIs, the solution has to be decided on a case-by-case basis. Do not remove `null` checks on public API boundaries, even if the annotations (or rather lack of them) suggest this. Not all client code is compiled with NullAway. Do not make a parameter `@Nullable` just to check and throw a `NullPointerException` when it is `null`. ## Consequences * Classes are forced to have consistent nullability annotations.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 4K bytes - Click Count (0) -
.github/workflows/codeql-analysis.yml
# 📚 https://git.io/JvXDl # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines # and modify them (or add more) to build your code if your project # uses a compiled language #- run: | # make bootstrap # make release - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v4 with:Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Dec 11 22:12:03 GMT 2025 - 4K bytes - Click Count (0) -
.teamcity/pom.xml
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 22:03:46 GMT 2026 - 7.4K bytes - Click Count (2) -
.teamcity/src/main/kotlin/configurations/CompileAll.kt
import model.Stage class CompileAll( model: CIBuildModel, stage: Stage, ) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = { id(buildTypeId(model)) name = "Compile All" description = "Compiles all production/test source code and warms up the build cache" features { publishBuildStatusToGithub(model) } applyDefaults( model,
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Dec 22 07:15:16 GMT 2025 - 1.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java
// This test verifies the typo fix by ensuring the class compiles SpnegoAuthenticator authenticator = new SpnegoAuthenticator(); assertNotNull(authenticator); // The typo fix (SpengoConfig -> SpnegoConfig) is verified at compile time // If the class name was wrong, this test file wouldn't compile assertTrue(true); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.8K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt
* * The required runtimes for a project should be set if that project has * specific runtime requirements. For example, they must be able to run in * a worker (a compiler worker, test worker, worker API worker action), * or must be able to run in a client (TAPI model, TAPI client, CLI client). */ @get:Nested abstract val requiredRuntimes: ModuleTargetRuntimesCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 4.8K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-compiler-configuration.kt
Christoph Obexer <******@****.***> 1751977909 +0200
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jul 08 12:31:49 GMT 2025 - 2.6K bytes - Click Count (0) -
architecture/standards/0002-avoid-using-java-serialization.md
Java serialization is one way to implement this, however, despite its simplicity of implementation, it has several drawbacks: - **Performance:** Java's built-in serialization mechanism is often slower compared to other serialization solutions. This is due to Java's use of reflection and the need to maintain a lot of metadata. - **Size of Serialized Data:**
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 14:05:45 GMT 2026 - 2.3K bytes - Click Count (0)