- Sort Score
- Num 10 results
- Language All
Results 621 - 630 of 675 for value_a (0.04 seconds)
-
.teamcity/README.md
- At the popup window, click `Import Settings from VCS`. Wait a few seconds. - If the error says "Context Parameter 'Branch' missing", it's ok. Click into the error and add a context parameter `Branch` with value `myTestBranch`. Go back and it automatically reloads. - If there are any errors, read the error and fix your code.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 06 23:02:25 GMT 2024 - 4K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
set -x MD5=`find . -type f | sort | xargs md5sum | md5sum | awk '{ print $1 }'` echo "##teamcity[setParameter name='env.ORG_GRADLE_PROJECT_versionQualifier' value='gradleception-${'$'}MD5']" """.trimIndent() } gradleWrapper { name = "BUILD_GRADLE_DISTRIBUTION"Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 7.1K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts
localRepository.get().file("org/gradle/${baseName.get()}/maven-metadata.xml").asFile.apply { writeText(readText().replace("\\Q<lastUpdated>\\E\\d+\\Q</lastUpdated>\\E".toRegex(), "<lastUpdated>${Year.now().value}0101000000</lastUpdated>")) } localRepository.get().asFileTree.matching { include("**/*.module") }.forEach { val content = it.readText()
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 30 16:56:31 GMT 2025 - 5.7K bytes - Click Count (0) -
architecture/standards/0008-use-nullaway.md
# ADR-0008 - Use NullAway for null checking ## Status - ACCEPTED on 2025-08-06 ## Context Our codebase uses `null` extensively to represent an absence of value or optionality of the argument. We utilize nullness annotations in Java code and somewhat rely on IDE warnings to guide us. However, the Java code we have is not fully annotated, which causes several consequences: * IDE warnings can be misleading
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
assertEquals("Email should have exactly one @ character", 1, supportEmail.split("@", -1).length - 1); // Specific value check assertEquals("******@****.***", supportEmail); assertEquals("******@****.***", techEmail); } @Test public void test_emailTypoFix_supportEmail() throws Exception {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 18.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
RenderDataUtil.register(data, "labelTypeItems", labelTypeService.getLabelTypeList(labelTypePager)); // page navi // restore from pager copyBeanToBean(labelTypePager, form, op -> op.include("name", "value")); } // =================================================================================== // Edit Execute
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 17.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
public void test_ingest_nullIngestFactory() { ComponentUtil.register(null, "ingestFactory"); indexUpdater.init(); final Map<String, Object> doc = new HashMap<>(); doc.put("test", "value"); final AccessResult<String> accessResult = new TestAccessResult(); final Map<String, Object> result = indexUpdater.ingest(accessResult, doc); assertSame(doc, result); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
Map<String, Object> docMap = new HashMap<>(); assertFalse(thumbnailGenerator.isTarget(docMap)); } @Test public void test_isTarget_withNullMimeType() { // Test with null mimetype value Map<String, Object> docMap = new HashMap<>(); docMap.put("mimetype", null); assertFalse(thumbnailGenerator.isTarget(docMap)); } @Test public void test_isAvailable() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 11.7K bytes - Click Count (0) -
build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt
@EnabledIfEnvironmentVariable(named = "CI", matches = ".*", disabledReason = "Tests rely on setup conditional on CI in gradlebuild.ci-reporting plugin running first, these test should only run if CI env var is present (it's value doesn't matter)") class TestFilesCleanupServiceTest { @TempDir lateinit var projectDir: File @TempDir lateinit var testKitDir: File private fun File.mkdirsAndWriteText(text: String) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 10 00:16:44 GMT 2026 - 11.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
* * @param id the ID of the data config to duplicate * @return HTML response for the data config creation form pre-populated with duplicated values */ @Execute @Secured({ ROLE }) public HtmlResponse duplicate(final String id) { saveToken(); return asEditHtml().useForm(CreateForm.class, op -> { op.setup(form -> {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 21K bytes - Click Count (0)