- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 843 for fint (0.04 sec)
-
src/main/java/org/codelibs/fess/util/ResourceUtil.java
final StringBuffer tunedText = new StringBuffer(value.length()); final Pattern pattern = Pattern.compile("(\\$\\{([\\w\\.]+)\\})"); final Matcher matcher = pattern.matcher(value); while (matcher.find()) { final String key = matcher.group(2); String replacement = System.getProperty(key); if (replacement == null) { replacement = matcher.group(1); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 08:52:32 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/index.jsp
</c:if> <link href="${fe:url('/css/bootstrap.min.css')}" rel="stylesheet" type="text/css" /> <link href="${fe:url('/css/style.css')}" rel="stylesheet" type="text/css" /> <link href="${fe:url('/css/font-awesome.min.css')}" rel="stylesheet" type="text/css" /> </head> <body> <la:form action="/search" method="get" styleId="searchForm"> ${fe:facetForm()}${fe:geoForm()} <header>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 6.9K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/LongAdder.java
* * @return the sum */ @Override public long longValue() { return sum(); } /** Returns the {@link #sum} as an {@code int} after a narrowing primitive conversion. */ @Override public int intValue() { return (int) sum(); } /** Returns the {@link #sum} as a {@code float} after a widening primitive conversion. */ @Override public float floatValue() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 5.5K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt
assertContains(cleanupHint) } } private fun StringWriter.assertContains(text: String) { Assertions.assertTrue(toString().contains(text)) { "Did not find expected error message in $this" } } protected data class Change(val type: String, val member: String) { override fun toString(): String = "Type: '$type', Member: '$member'" }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jun 04 14:00:46 UTC 2024 - 6K bytes - Viewed (0) -
istioctl/pkg/writer/compare/sds/writer_test.go
func checkOutput(t *testing.T, output string, expected, unexpected []string) { t.Helper() for _, expected := range expected { if !strings.Contains(output, expected) { t.Errorf("expected %s included in writer output, did not find", expected) } } for _, unexpected := range unexpected { if strings.Contains(output, unexpected) { t.Errorf("unexpected string %s included in writer output", unexpected) } }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 29 20:42:01 UTC 2020 - 4.9K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
val runtimeClasspath by configurations val externalComponents by lazy { runtimeClasspath.incoming.resolutionResult.rootComponent.map { rootComponent -> val rootVariant = rootComponent.variants.find { it.displayName == runtimeClasspath.name } rootVariant?.let { computeExternalDependenciesNotAccessibleFromProjectDependencies(rootComponent, it) } ?: emptySet() }.get() }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed May 01 08:59:48 UTC 2024 - 4.4K bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats
# Suite of verification tests for the SINGLE TensorFlow wheel in /tf/pkg # or whatever path is set as $TF_WHEEL. setup_file() { cd /tf/pkg if [[ -z "$TF_WHEEL" ]]; then export TF_WHEEL=$(find /tf/pkg -iname "*.whl") fi } teardown_file() { rm -rf /tf/venv } @test "Wheel is manylinux2014 (manylinux_2_17) compliant" { python3 -m auditwheel show "$TF_WHEEL" > audit.txt
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Jan 23 02:14:00 UTC 2024 - 2.7K bytes - Viewed (0) -
android/guava/src/com/google/common/math/Quantiles.java
int[] quotients = new int[indexes.length]; int[] remainders = new int[indexes.length]; // The indexes to select. In the worst case, we'll need one each side of each quantile. int[] requiredSelections = new int[indexes.length * 2]; int requiredSelectionsCount = 0; for (int i = 0; i < indexes.length; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 17:02:53 UTC 2023 - 29.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/Handler.java
PROTOCOL_HANDLERS.clear(); Handler.factory = factory; } } /** * Returns the default HTTP port. * * @return An <code>int</code> containing the default HTTP port. */ protected int getDefaultPort() { return DEFAULT_HTTP_PORT; } protected URLConnection openConnection(URL url) throws IOException { url = new URL(url, url.toExternalForm(),
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
workingDir = "%teamcity.build.checkoutDir%/dogfood-first-for-hash" scriptContent = """ 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()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 08 12:58:46 UTC 2024 - 6.5K bytes - Viewed (0)