- Sort Score
- Result 10 results
- Languages All
Results 421 - 430 of 1,158 for formData (0.1 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ModelBuilderSupport.java
Element child = findChild(element, childName); if (child != null) { return child; } throw new RuntimeException(String.format("No <%s> element found in <%s>", childName, element.getTagName())); } protected Element findChild(Element element, String childName) { NodeList childNodes = element.getChildNodes();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.2K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/SortAcceptedApiChangesTask.kt
/** * It appears there is no way to configure Gson to use 4 spaces instead of 2 for indentation. * * See: https://github.com/google/gson/blob/master/UserGuide.md#TOC-Compact-Vs.-Pretty-Printing-for-JSON-Output-Format */ private fun adjustIndentation(initalJsonString: String): String { val indentationRegex = """^\s+""".toRegex(RegexOption.MULTILINE) return indentationRegex.replace(initalJsonString) { m ->
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jun 04 14:00:46 UTC 2024 - 2K bytes - Viewed (0) -
.github/workflows/cffconvert.yml
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Check whether the citation metadata from CITATION.cff is valid uses: citation-file-format/cffconvert-github-action@4cf11baa70a673bfdf9dad0acc7ee33b3f4b6084 # v2.0.0 with:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Nov 01 08:40:10 UTC 2024 - 1.3K bytes - Viewed (0) -
internal/event/target/webhook.go
} req, err := http.NewRequest(http.MethodPost, target.args.Endpoint.String(), bytes.NewReader(data)) if err != nil { return err } // Verify if the authToken already contains // <Key> <Token> like format, if this is // already present we can blindly use the // authToken as is instead of adding 'Bearer' tokens := strings.Fields(target.args.AuthToken) switch len(tokens) { case 2:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 8.8K bytes - Viewed (0) -
dbflute_fess/_readme.txt
resources located to the "playsql" directory. manage.bat(sh) => 25 (outside-sql-test): A execution command of OutsideSqlTest task which executes outside-SQL files and you can check whether the SQLs have correct formats. The directories are for DBFlute tasks: /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - dfprop : Directory for DBFlute properties extlib : Directory for Directory for library extension
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 2.5K bytes - Viewed (0) -
dbflute_fess/playsql/_readme.txt
| |-defaultValueMap.dataprop |-ut |-xls |-20-member.xls |-30-product.xls |-defaultValueMap.dataprop - - - - - - - - - -/ The format of a xls file is like this: /- - - - - - - - - - - - - - - - - - - - |MEMBER_ID|MEMBER_NAME|BIRTHDATE | | 1|Stojkovic |1965/03/03| | 2|Savicevic | | | 3|... |... | (Sheet)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 1.3K bytes - Viewed (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintStream; import java.nio.file.Files; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util.Arrays; import java.util.List; import java.util.Locale; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import java.util.function.BiConsumer;
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/StringConversionUtil.java
*/ public static String toString(final Number value, final String pattern) { if (value != null) { if (pattern != null) { return new DecimalFormat(pattern).format(value); } return value.toString(); } return null; } /** * 文字列に変換します。 * * @param value * 変換元のオブジェクト
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomArtifactTransformer.java
try (Writer w = Files.newBufferedWriter(dest)) { MavenStaxWriter writer = new MavenStaxWriter(); writer.setNamespace(String.format(NAMESPACE_FORMAT, version)); writer.setSchemaLocation(String.format(SCHEMA_LOCATION_FORMAT, version)); writer.setAddLocationInformation(false); writer.write(w, model); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8K bytes - Viewed (0) -
tensorflow/c/c_api_internal.h
#include <list> #include <set> #include <string> #include <unordered_map> #include <vector> #include "tensorflow/c/c_api.h" // clang-format off // Required for IS_MOBILE_PLATFORM #include "tensorflow/core/platform/platform.h" // clang-format on #include "tensorflow/c/tf_status_internal.h" #include "tensorflow/c/tf_tensor_internal.h" #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD)
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat May 13 00:49:12 UTC 2023 - 7.6K bytes - Viewed (0)