- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for XX (0.04 sec)
-
src/test/java/org/codelibs/fess/util/JvmUtilTest.java
"17:-Xmx4g", // Exact 17 "invalid:pattern", // Invalid pattern "18-:-XX:+UseZGC", // Range from 18 (should be excluded) "11:-XX:+UseG1GC", // Exact 11 (should be excluded) "17-:-XX:+UnlockExperimentalVMOptions" // Range from 17 }; String[] result = JvmUtil.filterJvmOptions(args);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 10.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/CharMatcherTest.java
doTestTrimFrom("---", ""); doTestTrimFrom("--x-", "x"); doTestTrimFrom("--xx", "xx"); doTestTrimFrom("-x--", "x"); doTestTrimFrom("-x-x", "x-x"); doTestTrimFrom("-xx-", "xx"); doTestTrimFrom("x--x", "x--x"); doTestTrimFrom("x-x-", "x-x"); doTestTrimFrom("x-xx", "x-xx"); doTestTrimFrom("x-x--xx---x----x", "x-x--xx---x----x"); // additional testing using the doc example
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.4K bytes - Viewed (0) -
api/README
giving the GitHub issue number of the proposal issue that accepted the new API. This helps with our end-of-cycle audit of new APIs. The same requirement applies to next/* (described below), which will become a go1.XX.txt for XX >= 19. The next/ directory contains the only files intended to be mutated. Each file in that directory contains a list of features that may be added to the next release of Go. The files in this directory only affect the
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 31 19:22:50 UTC 2024 - 1.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/CharMatcherTest.java
doTestTrimFrom("---", ""); doTestTrimFrom("--x-", "x"); doTestTrimFrom("--xx", "xx"); doTestTrimFrom("-x--", "x"); doTestTrimFrom("-x-x", "x-x"); doTestTrimFrom("-xx-", "xx"); doTestTrimFrom("x--x", "x--x"); doTestTrimFrom("x-x-", "x-x"); doTestTrimFrom("x-xx", "x-xx"); doTestTrimFrom("x-x--xx---x----x", "x-x--xx---x----x"); // additional testing using the doc example
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/StringsTest.java
assertSame("xx", Strings.padEnd("xx", 0, '-')); assertSame("xx", Strings.padEnd("xx", 2, '-')); } public void testPadEnd_somePadding() { assertEquals("-", Strings.padEnd("", 1, '-')); assertEquals("--", Strings.padEnd("", 2, '-')); assertEquals("x-", Strings.padEnd("x", 2, '-')); assertEquals("x--", Strings.padEnd("x", 3, '-')); assertEquals("xx-", Strings.padEnd("xx", 3, '-')); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* -Xmx512m<br> * -XX:MaxMetaspaceSize=128m<br> * -XX:CompressedClassSpaceSize=32m<br> * -XX:-UseGCOverheadLimit<br> * -XX:+UseTLAB<br> * -XX:+DisableExplicitGC<br> * -XX:-HeapDumpOnOutOfMemoryError<br> * -XX:-OmitStackTraceInFastThrow<br> * -XX:+UnlockExperimentalVMOptions<br> * -XX:+UseG1GC<br> * -XX:InitiatingHeapOccupancyPercent=45<br> * -XX:G1HeapRegionSize=1m<br>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (2) -
android/guava-tests/test/com/google/common/net/UrlEscaperTesting.java
assertUnescaped(e, '*'); assertEscaping(e, "%00", '\u0000'); // nul assertEscaping(e, "%7F", '\u007f'); // del assertEscaping(e, "%C2%80", '\u0080'); // xx-00010,x-000000 assertEscaping(e, "%DF%BF", '\u07ff'); // xx-11111,x-111111 assertEscaping(e, "%E0%A0%80", '\u0800'); // xxx-0000,x-100000,x-00,0000 assertEscaping(e, "%EF%BF%BF", '\uffff'); // xxx-1111,x-111111,x-11,1111
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
-server\n\ -Xms128m\n\ -Xmx512m\n\ -XX:MaxMetaspaceSize=128m\n\ -XX:CompressedClassSpaceSize=32m\n\ -XX:-UseGCOverheadLimit\n\ -XX:+UseTLAB\n\ -XX:+DisableExplicitGC\n\ -XX:-HeapDumpOnOutOfMemoryError\n\ -XX:-OmitStackTraceInFastThrow\n\ -XX:+UnlockExperimentalVMOptions\n\ -XX:+UseG1GC\n\ -XX:InitiatingHeapOccupancyPercent=45\n\ -XX:G1HeapRegionSize=1m\n\ -XX:MaxGCPauseMillis=60000\n\
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
.github/workflows/stale-pr.yml
name: 'Close stale PRs' on: schedule: # Execute every hour at xx:05 to avoid conflicts with other workflows - cron: '5 * * * *' permissions: {} jobs: stale: permissions: pull-requests: write runs-on: ubuntu-latest steps: - uses: actions/stale@v10 with: operations-per-run: 50 ascending: true exempt-all-milestones: true
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Sep 04 22:13:29 UTC 2025 - 1.7K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/GcFinalization.java
* finalization to happen. However, a call to {@code System.gc()} is specified to be no more than a * hint, so this technique may fail at the whim of the JDK implementation, for example if a user * specified the JVM flag {@code -XX:+DisableExplicitGC}. But in practice, it works very well for * ordinary tests. * * <p>Failure of the expected event to occur within an implementation-defined "reasonable" time
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.5K bytes - Viewed (0)