Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 628 for systemd (0.04 sec)

  1. src/packaging/deb/scripts/conffiles

    ${packaging.env.file}
    /etc/init.d/fess
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 76 bytes
    - Viewed (0)
  2. src/packaging/common/scripts/postinst

    esac
    
    if [ "x$IS_UPGRADE" != "xtrue" ]; then
        if command -v systemctl >/dev/null; then
            echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using systemd"
            echo " sudo systemctl daemon-reload"
            echo " sudo systemctl enable fess.service"
            echo "### You can start fess service by executing"
            echo " sudo systemctl start fess.service"
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  3. src/packaging/common/scripts/prerm

            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
            else
                /etc/init.d/fess stop || true
            fi
    
        # older suse linux distributions do not ship with systemd
        # but do not have an /etc/init.d/ directory
        # this tries to start the fess service on these
        # as well without failing this script
        elif [ -x /etc/rc.d/init.d/fess ] ; then
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  4. src/test/resources/system.properties

    # Test system properties
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 46 bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/error/system.jsp

    Shinsuke Sugaya <******@****.***> 1737202147 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/maven-system.properties

    # KIND, either express or implied.  See the License for the
    # specific language governing permissions and limitations
    # under the License.
    #
    
    #
    # Maven system properties
    #
    # The properties defined in this file will be made available through
    # system properties at the very beginning of Maven's boot process.
    #
    
    maven.installation.conf = ${maven.home}/conf
    maven.user.conf         = ${user.home}/.m2
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/error/system.jsp

    Shinsuke Sugaya <******@****.***> 1737202147 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/OsService.java

     * <li>Check if the current OS is Windows-based</li>
     * </ul>
     * <p>
     * The service implementation uses system properties to detect OS characteristics:
     * <ul>
     * <li>os.name: The operating system name</li>
     * <li>os.arch: The operating system architecture</li>
     * <li>os.version: The operating system version</li>
     * </ul>
     * <p>
     * Supported OS families include:
     * <ul>
     * <li>windows: All Windows variants</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Feb 10 14:12:18 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/context/SingletonContextTest.java

            }
            // Clear system properties that might affect the test
            System.clearProperty("jcifs.properties");
            System.clearProperty("java.protocol.handler.pkgs");
            // Clear jcifs-specific properties to prevent test interference
            System.clearProperty("jcifs.smb.client.nativeOs");
            System.clearProperty("jcifs.smb.client.nativeLanMan");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/FileNotifyInformation.java

        /**
         * Any file-size change in the watched directory or subtree causes a change notification wait operation to return.
         * The operating system detects a change in file size only when the file is written to the disk. For operating
         * systems that use extensive caching, detection occurs only when the cache is sufficiently flushed.s
         */
        int FILE_NOTIFY_CHANGE_SIZE = 0x00000008;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top