- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 12 for uncapitalize (0.1 seconds)
-
src/main/java/org/codelibs/fess/entity/ParamMap.java
return key; } String keyStr = key.toString(); if (keyStr.indexOf('_') < 0) { keyStr = CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, StringUtils.uncapitalize(keyStr)); } else { keyStr = CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, keyStr); } return keyStr; } @Override public int size() {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.8K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/StringExtensions.kt
* limitations under the License. */ package gradlebuild.basics import java.util.Locale fun String.capitalize(): String = replaceFirstChar { it.uppercase(Locale.US) } fun String.decapitalize(): String =Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Sun Dec 15 07:49:41 GMT 2024 - 839 bytes - Click Count (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/generate-samples.gradle.kts
} fun setupGeneratorTask(language: Language, kind: String, modularizationOption: ModularizationOption) { val buildInitType = "${language.getName()}-$kind" val capName = language.getName().capitalize() val capKind = kind.capitalize().replace("y", "ie") + "s" val languageDisplayName = language.toString().replace("C++", "{cpp}") val sampleName = "building$capName$capKind" + if (modularizationOption.isMulti()) "MultiProject" else ""
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jun 24 13:46:12 GMT 2025 - 3.4K bytes - Click Count (0) -
dbflute_fess/dfprop/lastafluteMap.dfprop
# ; propertiesHtmlList = list:{ [env or config or label or message] } # } # ; appMap = map:{ # ; [application name, camel case, initial uncapitalised] = map:{ # ; path = [relative path to application project from DBFlute client] # ; freeGenList = list:{ [env or config or label or message or html] }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sun May 20 08:20:11 GMT 2018 - 2.2K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report-aggregation.gradle.kts
import gradlebuild.basics.buildCommitId import gradlebuild.basics.capitalize import gradlebuild.incubation.tasks.IncubatingApiAggregateReportTask plugins { id("base") } val reports by configurations.creating { isCanBeResolved = false isCanBeConsumed = false description = "Dependencies to aggregate reports from" } val allIncubationReports = tasks.register<IncubatingApiAggregateReportTask>("allIncubationReports") {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Jul 02 12:28:02 GMT 2025 - 1.5K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild.wrapper.gradle.kts
import gradlebuild.basics.capitalize import com.google.gson.Gson import java.net.URI wrapperUpdateTask("nightly", "nightly") wrapperUpdateTask("rc", "release-candidate") wrapperUpdateTask("current", "current") tasks.withType<Wrapper>().configureEach { val jvmOpts = "-Dfile.encoding=UTF-8" inputs.property("jvmOpts", jvmOpts) doLast { val optsEnvVar = "DEFAULT_JVM_OPTS"Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Sep 17 08:58:33 GMT 2024 - 1.4K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report.gradle.kts
* See the License for the specific language governing permissions and * limitations under the License. */ import gradlebuild.basics.accessors.kotlinMainSourceSet import gradlebuild.basics.capitalize import gradlebuild.basics.releasedVersionsFile import gradlebuild.basics.repoRoot import gradlebuild.incubation.tasks.IncubatingApiReportTask plugins { java groovy }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Jul 02 12:28:02 GMT 2025 - 2.3K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts
* 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. */ import gradlebuild.basics.capitalize import gradlebuild.basics.testing.TestType import gradlebuild.integrationtests.addDependenciesAndConfigurations import gradlebuild.integrationtests.createTestTask import gradlebuild.integrationtests.configureIde
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Sep 05 02:31:24 GMT 2025 - 4.5K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
* 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. */ import gradlebuild.basics.capitalize import gradlebuild.pluginpublish.extension.PluginPublishExtension import java.time.Year plugins { id("gradlebuild.module-identity") `maven-publish` signing `java-gradle-plugin`Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Jul 02 12:28:02 GMT 2025 - 6.1K bytes - Click Count (0) -
docs/en/docs/tutorial/header-params.md
Also, HTTP headers are case-insensitive, so, you can declare them with standard Python style (also known as "snake_case"). So, you can use `user_agent` as you normally would in Python code, instead of needing to capitalize the first letters as `User_Agent` or something similar. If for some reason you need to disable automatic conversion of underscores to hyphens, set the parameter `convert_underscores` of `Header` to `False`:
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sun Aug 31 09:15:41 GMT 2025 - 3K bytes - Click Count (0)