Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for os (0.28 sec)

  1. src/main/java/org/codelibs/core/misc/DynamicProperties.java

        }
    
        @Override
        public void storeToXML(final OutputStream os, final String comment, final String encoding) throws IOException {
            getProperties().storeToXML(os, comment, encoding);
        }
    
        @Override
        public void storeToXML(final OutputStream os, final String comment) throws IOException {
            getProperties().storeToXML(os, comment);
        }
    
        @Override
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

    import org.opensearch.monitor.jvm.JvmStats.GarbageCollectors;
    import org.opensearch.monitor.jvm.JvmStats.Mem;
    import org.opensearch.monitor.jvm.JvmStats.Threads;
    import org.opensearch.monitor.os.OsProbe;
    import org.opensearch.monitor.os.OsStats;
    import org.opensearch.monitor.process.ProcessProbe;
    
    /**
     * @author shinsuke
     */
    public class ApiAdminStatsAction extends FessApiAdminAction {
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/da/stopwords.txt

    den
    til
    er
    som
    på
    de
    med
    han
    af
    for
    ikke
    der
    var
    mig
    sig
    men
    et
    har
    om
    vi
    min
    havde
    ham
    hun
    nu
    over
    da
    fra
    du
    ud
    sin
    dem
    os
    op
    man
    hans
    hvor
    eller
    hvad
    skal
    selv
    her
    alle
    vil
    blev
    kunne
    ind
    når
    være
    dog
    noget
    ville
    jo
    deres
    efter
    ned
    skulle
    denne
    end
    dette
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 564 bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/gl/stopwords.txt

    lles
    lo
    los
    mais
    me
    meu
    meus
    min
    miña
    miñas
    moi
    na
    nas
    neste
    nin
    no
    non
    nos
    nosa
    nosas
    noso
    nosos
    nós
    nun
    nunha
    nuns
    nunhas
    o
    os
    ou
    ó
    ós
    para
    pero
    pode
    pois
    pola
    polas
    polo
    polos
    por
    que
    se
    senón
    ser
    seu
    seus
    sexa
    sido
    sobre
    súa
    súas
    tamén
    tan
    te
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 932 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/SystemUtil.java

        /**
         * <code>os.name</code> システムプロパティ。例:<code>Mac OS X</code>
         */
        public static final String OS_NAME = System.getProperty("os.name");
    
        /**
         * <code>java.io.tmpdir</code> システムプロパティ。例:/tmp
         */
        public static final String JAVA_IO_TMPDIR = System.getProperty("java.io.tmpdir");
    
        /**
         * <code>user.dir</code> システムプロパティ。
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/packaging/common/packaging.properties

    packaging.fess.heap.min=256m
    packaging.fess.heap.max=1g
    
    # Specifies the maximum file descriptor number
    packaging.os.max.open.files=65535
    
    # Maximum number of VMA (Virtual Memory Areas) a process can own
    packaging.os.max.map.count=262144
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=tar.gz
    
    # Custom header for package scripts
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 797 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

    import org.lastaflute.di.core.external.GenericExternalContextComponentDefRegister;
    import org.lastaflute.di.core.factory.SingletonLaContainerFactory;
    import org.opensearch.monitor.jvm.JvmInfo;
    import org.opensearch.monitor.os.OsProbe;
    import org.opensearch.monitor.process.ProcessProbe;
    
    public class ThumbnailGenerator {
    
        private static final Logger logger = LogManager.getLogger(ThumbnailGenerator.class);
    
        @Resource
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/FileOperationsTest.java

                    try {
                        try ( OutputStream os = f.getOutputStream() ) {
                            ReadWriteTest.writeRandom(bufSize, length, os);
                        }
    
                        try ( OutputStream os = t.getOutputStream() ) {
                            ReadWriteTest.writeRandom(bufSize, 2 * length, os);
                        }
    
                        f.copyTo(t);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:17:59 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/ACE.java

    package jcifs.smb1.smb1;
    
    import java.io.IOException;
    
    import jcifs.smb1.util.Hexdump;
    
    /**
     * An Access Control Entry (ACE) is an element in a security descriptor
     * such as those associated with files and directories. The Windows OS
     * determines which users have the necessary permissions to access objects
     * based on these entries.
     * <p>
     * To fully understand the information exposed by this class a description
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  10. .github/workflows/codeql-analysis.yml

            distribution: 'temurin'
        - name: Cache Maven packages
          uses: actions/cache@v4
          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
            restore-keys: ${{ runner.os }}-m2
        - name: Build with Maven
          run: mvn -B package --file pom.xml
    
        - name: Perform CodeQL Analysis
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 10 03:25:34 GMT 2024
    - 1K bytes
    - Viewed (0)
Back to top