- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 78 for 09 (0.01 seconds)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java
final String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\"\n" + " xmlns:news=\"http://www.google.com/schemas/sitemap-news/0.9\">\n" + " <url>\n" + " <loc>http://www.example.com/news/article.html</loc>\n" + " <news:news>\n" + " <news:publication>\n"Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 36.7K bytes - Click Count (0) -
compat/maven-compat/src/test/resources/pom.xml
<dependency> <groupId>maven</groupId> <artifactId>wagon-api</artifactId> <version>0.9-SNAPSHOT</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>wagon-http-lightweight</artifactId> <version>0.9-SNAPSHOT</version> <type>jar</type> <scope>compile</scope> </dependency>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/BenchmarkHelpers.java
WESTERN_DIGIT("0123456789"), ALL_DIGIT(CharMatcher.digit(), ALL_DIGITS), OPS_5("+-*/%"), HEX_16(CharMatcher.inRange('0', '9').or(CharMatcher.inRange('A', 'F')), "0123456789ABCDEF"), HEX_22( CharMatcher.inRange('0', '9') .or(CharMatcher.inRange('A', 'F')) .or(CharMatcher.inRange('a', 'f')), "0123456789ABCDEFabcdef"), GERMAN_59(
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Aug 10 19:54:19 GMT 2025 - 3.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/BenchmarkHelpers.java
WESTERN_DIGIT("0123456789"), ALL_DIGIT(CharMatcher.digit(), ALL_DIGITS), OPS_5("+-*/%"), HEX_16(CharMatcher.inRange('0', '9').or(CharMatcher.inRange('A', 'F')), "0123456789ABCDEF"), HEX_22( CharMatcher.inRange('0', '9') .or(CharMatcher.inRange('A', 'F')) .or(CharMatcher.inRange('a', 'f')), "0123456789ABCDEFabcdef"), GERMAN_59(
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Aug 10 19:54:19 GMT 2025 - 3.1K bytes - Click Count (0) -
.github/workflows/check-commits.yml
echo "Commit $commit wrapper: $WRAPPER_GRADLE_VERSION" if ! [[ $WRAPPER_GRADLE_VERSION =~ ^[0-9.]+(-(rc|milestone|m)-[0-9]+)?$ ]]; then RED="\e[31m" ENDCOLOR="\e[0m"
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Nov 20 22:15:20 GMT 2025 - 3K bytes - Click Count (0) -
.typos.toml
[type.go] extend-ignore-identifiers-re = [ # Variants of `typ` used to mean `type` in golang as it is otherwise a # keyword - some of these (like typ1 -> type1) can be fixed, but probably # not worth the effort. "[tT]yp[0-9]*",Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Apr 03 06:45:06 GMT 2025 - 1.2K bytes - Click Count (0) -
cmd/api-headers_test.go
id := mustGetRequestID(UTCNow()) if len(id) != 16 { t.Fail() } var e rune for _, char := range id { e = char // Ensure that it is alphanumeric, in this case, between 0-9 and A-Z. isAlnum := ('0' <= e && e <= '9') || ('A' <= e && e <= 'Z') if !isAlnum { t.Fail() } }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Mar 30 00:56:02 GMT 2025 - 1.2K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CharUtil.java
} /** * Checks if the given character is a valid URL character. * * Valid URL characters include: * - Lowercase letters (a-z) * - Uppercase letters (A-Z) * - Digits (0-9) * - Special characters: . - * _ : / + % = & ? # [ ] @ ~ ! $ ' ( ) , ; * * @param c the character to check * @return {@code true} if the character is a valid URL character, {@code false} otherwiseCreated: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Nov 22 13:28:22 GMT 2025 - 1.8K bytes - Click Count (1) -
.github/workflows/release-branch-cherrypick.yml
- name: Create Pull Request with changes uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9 with: title: '${{ github.event.inputs.release_branch }} cherry-pick: ${{ steps.cherrypick.outputs.SHORTSHA }} "${{ steps.cherrypick.outputs.TITLE }}"'Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Mon Dec 01 09:57:00 GMT 2025 - 3.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
* * <p>The text normalization process includes: * <ul> * <li>Treating ISO control characters and specified space characters as spaces.</li> * <li>Appending alphanumeric characters (0-9, A-Z, a-z) to the buffer.</li> * <li>Appending symbol characters (!-/, :-@, [-`, {-~) to the buffer.</li> * <li>Optionally removing duplicate terms based on a flag.</li>
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Nov 22 13:28:22 GMT 2025 - 12K bytes - Click Count (0)