Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for xx (0.14 sec)

  1. guava-tests/test/com/google/common/base/CharMatcherTest.java

        doTestCollapse("--x-", "_x_");
        doTestCollapse("--xx", "_xx");
        doTestCollapse("-x--", "_x_");
        doTestCollapse("-x-x", "_x_x");
        doTestCollapse("-xx-", "_xx_");
        doTestCollapse("x--x", "x_x");
        doTestCollapse("x-x-", "x_x_");
        doTestCollapse("x-xx", "x_xx");
        doTestCollapse("x-x--xx---x----x", "x_x_xx_x_x");
    
        doTestCollapseWithNoChange("");
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Feb 21 18:32:41 GMT 2024
    - 30.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

        doTestCollapse("--x-", "_x_");
        doTestCollapse("--xx", "_xx");
        doTestCollapse("-x--", "_x_");
        doTestCollapse("-x-x", "_x_x");
        doTestCollapse("-xx-", "_xx_");
        doTestCollapse("x--x", "x_x");
        doTestCollapse("x-x-", "x_x_");
        doTestCollapse("x-xx", "x_xx");
        doTestCollapse("x-x--xx---x----x", "x_x_xx_x_x");
    
        doTestCollapseWithNoChange("");
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 18:32:41 GMT 2024
    - 30.1K bytes
    - Viewed (0)
  3. 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, '-'));
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    -server\n\
    -Xms128m\n\
    -Xmx256m\n\
    -XX:MaxMetaspaceSize=128m\n\
    -XX:CompressedClassSpaceSize=32m\n\
    -XX:-UseGCOverheadLimit\n\
    -XX:+UseTLAB\n\
    -XX:+DisableExplicitGC\n\
    -XX:-HeapDumpOnOutOfMemoryError\n\
    -XX:+UnlockExperimentalVMOptions\n\
    -XX:+UseG1GC\n\
    -XX:InitiatingHeapOccupancyPercent=45\n\
    -XX:G1HeapRegionSize=1m\n\
    -XX:MaxGCPauseMillis=60000\n\
    -XX:G1NewSizePercent=5\n\
    -XX:G1MaxNewSizePercent=30\n\
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  5. src/main/assemblies/files/fess.in.sh

    # Causes the JVM to dump its heap on OutOfMemory.
    #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -XX:+HeapDumpOnOutOfMemoryError"
    # The path to the heap dump location, note directory must exists and have enough
    # space for a full heap dump.
    #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -XX:HeapDumpPath=$FESS_HOME/logs/heapdump.hprof"
    
    # Disables explicit GC
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -XX:+DisableExplicitGC"
    
    # Ensure UTF-8 encoding by default (e.g. filenames)
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  6. 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, '-'));
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  7. 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
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 31 19:22:50 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/main/assemblies/files/fess.in.bat

    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:MaxMetaspaceSize=256m -XX:CompressedClassSpaceSize=32m
    
    REM new generation
    if NOT "%FESS_HEAP_NEWSIZE%" == "" (
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Xmn%FESS_HEAP_NEWSIZE%
    )
    
    REM max direct memory
    if NOT "%FESS_DIRECT_SIZE%" == "" (
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:MaxDirectMemorySize=%FESS_DIRECT_SIZE%
    )
    
    REM set to headless, just in case
    Batch File
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  9. build-logic/gradle.properties

    org.gradle.jvmargs=-Xmx2500m -XX:MaxMetaspaceSize=768m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
    org.gradle.parallel=true
    Properties
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 24 02:52:56 GMT 2024
    - 173 bytes
    - Viewed (0)
  10. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

        }
    
        def "matches daemon process with distribution full on Windows"() {
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Sep 28 07:00:39 GMT 2023
    - 14.4K bytes
    - Viewed (0)
Back to top