Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 143 (0.02 sec)

  1. src/packaging/common/systemd/fess.service

    # Connects standard output to /dev/null
    StandardOutput=null
    
    # Connects standard error to journal
    StandardError=journal
    
    # When a JVM receives a SIGTERM signal it exits with code 143
    SuccessExitStatus=143
    
    # Specifies the maximum file descriptor number that can be opened by this process
    LimitNOFILE=${packaging.os.max.open.files}
    
    # Specifies the maximum number of bytes of memory that may be locked into RAM
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/Dockerfile

    ################################################################################
    COPY --from=builder /dt10 /dt10
    COPY --from=builder /patchelf/patchelf_0.14.3-1_arm64.deb /patchelf/patchelf_0.14.3-1_arm64.deb
    
    # Install devtoolset devel dependencies
    COPY setup.sources.sh /setup.sources.sh
    COPY setup.packages.sh /setup.packages.sh
    COPY devel.packages.txt /devel.packages.txt
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:30:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/test/resources/plugin/repo3/fess-crawler-webdriver/maven-metadata.xml

          <version>1.3.0</version>
          <version>1.3.1</version>
          <version>1.3.2</version>
          <version>1.4.0</version>
          <version>1.4.1</version>
          <version>1.4.2</version>
          <version>1.4.3</version>
          <version>1.5.0</version>
          <version>1.5.1</version>
          <version>1.5.2</version>
          <version>1.5.3</version>
          <version>1.5.4</version>
          <version>1.5.5</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/test/resources/plugin/repo3/fess-crawler-parent/maven-metadata.xml

          <version>1.3.0</version>
          <version>1.3.1</version>
          <version>1.3.2</version>
          <version>1.4.0</version>
          <version>1.4.1</version>
          <version>1.4.2</version>
          <version>1.4.3</version>
          <version>1.5.0</version>
          <version>1.5.1</version>
          <version>1.5.2</version>
          <version>1.5.3</version>
          <version>1.5.4</version>
          <version>1.5.5</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/test/resources/plugin/repo3/fess-crawler/maven-metadata.xml

          <version>1.3.0</version>
          <version>1.3.1</version>
          <version>1.3.2</version>
          <version>1.4.0</version>
          <version>1.4.1</version>
          <version>1.4.2</version>
          <version>1.4.3</version>
          <version>1.5.0</version>
          <version>1.5.1</version>
          <version>1.5.2</version>
          <version>1.5.3</version>
          <version>1.5.4</version>
          <version>1.5.5</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/test/resources/plugin/repo3/fess-crawler-es/maven-metadata.xml

          <version>1.3.0</version>
          <version>1.3.1</version>
          <version>1.3.2</version>
          <version>1.4.0</version>
          <version>1.4.1</version>
          <version>1.4.2</version>
          <version>1.4.3</version>
          <version>1.5.0</version>
          <version>1.5.1</version>
          <version>1.5.2</version>
          <version>1.5.3</version>
          <version>1.5.4</version>
          <version>1.5.5</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/test/resources/plugin/repo3/fess-crawler-lasta/maven-metadata.xml

          <version>1.3.0</version>
          <version>1.3.1</version>
          <version>1.3.2</version>
          <version>1.4.0</version>
          <version>1.4.1</version>
          <version>1.4.2</version>
          <version>1.4.3</version>
          <version>1.5.0</version>
          <version>1.5.1</version>
          <version>1.5.2</version>
          <version>1.5.3</version>
          <version>1.5.4</version>
          <version>1.5.5</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. disabled-Jenkinsfile

    } catch (hudson.AbortException e) {
        echo "[FAILURE-003] AbortException ${e}"
        // this ambiguous condition means during a shell step, user probably aborted
        if (e.getMessage().contains('script returned exit code 143')) {
            currentBuild.result = "ABORTED"
        } else {
            currentBuild.result = "FAILURE"
        }
        throw e
    } catch (InterruptedException e) {
        echo "[FAILURE-004] ${e}"
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Sep 30 14:11:55 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. disabled-Jenkinsfile.s390x

    } catch (hudson.AbortException e) {
        echo "[FAILURE-003] AbortException ${e}"
        // this ambiguous condition means during a shell step, user probably aborted
        if (e.getMessage().contains('script returned exit code 143')) {
            currentBuild.result = "ABORTED"
        } else {
            currentBuild.result = "FAILURE"
        }
        throw e
    } catch (InterruptedException e) {
        echo "[FAILURE-004] ${e}"
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Sep 30 14:11:55 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

                if (logger.isInfoEnabled()) {
                    logger.info("Exit Code: {} - Process Output:\n{}", exitValue, it.getOutput());
                }
                if (exitValue == 143 && mt.isTeminated()) {
                    throw new CommandExecutionException("The command execution is timeout: " + String.join(" ", commands));
                }
                return exitValue;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top