Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 001 (0.14 sec)

  1. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            assertEscapePattern("\\Qsmb://server/test/\\E.*", "smb://server/test/");
            assertEscapePattern(".*\\Q?\\E.*", "contains:?");
            assertEscapePattern(".*\\Q\001\\E.*", "contains:\001");
            assertEscapePattern("(?i).*\\.exe$", "regexpIgnoreCase:\\.exe$");
            assertEscapePattern("(?i)index.html", "regexpIgnoreCase:index.html");
            assertEscapePattern(".*\\.exe$", "regexp:\\.exe$");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  2. src/test/resources/data/gsaconfig.xml

    contains:/images/
    contains:?
    contains:\\.xml$
    # test
    regexp:/([^/]*)/\\1/\\1/
    .gif$
    .jpg$
    .jpeg$
    .png$
    regexpIgnoreCase:\\.dll$
    regexpIgnoreCase:\\.exe$
    /?S=A$
    /?S=D$
    contains:\001
    contains:\002
    contains:\003
    .html/$
    
              ]]></bad_urls>
    			<good_urls><![CDATA[
    https://fess.codelibs.org/
    https://www.codelibs.org/
    https://www.n2sm.net/
    smb://storage/
    
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun May 13 06:51:57 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  3. Jenkinsfile.s390x

        }
        throw e
    } catch (InterruptedException e) {
        echo "[FAILURE-004] ${e}"
        currentBuild.result = "ABORTED"
        throw e
    } catch (Throwable e) {
        echo "[FAILURE-001] ${e}"
        currentBuild.result = "FAILURE"
        throw e
    }
    
    def archiveDirs(stageId, archives) {
        archives.each { archivePrefix, pathToContent ->
            if (fileExists(pathToContent)) {
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  4. Jenkinsfile

        }
        throw e
    } catch (InterruptedException e) {
        echo "[FAILURE-004] ${e}"
        currentBuild.result = "ABORTED"
        throw e
    } catch (Throwable e) {
        echo "[FAILURE-001] ${e}"
        currentBuild.result = "FAILURE"
        throw e
    } finally {
        // notify completion
        stage("Notifications") {
            jenkinsNotify()
        }
    }
    
    def archiveDirs(stageId, archives) {
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 8.4K bytes
    - Viewed (0)
Back to top