- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for DefineT (0.05 sec)
-
popper.min.js.map
isIE from './isIE';\n/**\n * Finds the first parent of an element that has a transformed property defined\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} first transformed parent or documentElement\n */\n\nexport default function getFixedPositionOffsetParent(element) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element || !element.parentElement || isIE()) {\n return document.documentElement;\n...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 120.9K bytes -
fess
variables can be overwritten in $DEFAULT L40: L41:# Run Fess as this user ID and group ID L42:FESS_USER=${packaging.fess.user} L43:FESS_GROUP=${packaging.fess.group} L44: L45:# The first existing directory is used for JAVA_HOME (if JAVA_HOME is not defined in $DEFAULT) L46:JDK_DIRS="/usr/lib/jvm/java-8-oracle/ /usr/lib/jvm/j2sdk1.8-oracle/ /usr/lib/jvm/jdk-7-oracle-x64 /usr/lib/jvm/java-7-oracle /usr/lib/jvm/j2sdk1.7-oracle/ /usr/lib/jvm/java-7-openjdk /usr/lib/jvm/java-7-openjdk-amd64/ /usr/lib/jv...github.com/codelibs/fess/src/packaging/deb/init...Sun Jan 15 06:32:15 UTC 2023 5.8K bytes -
adminlte.min.js
Colorlib <https://colorlib.com> L4: * Licensed under MIT (https://github.com/ColorlibHQ/AdminLTE/blob/master/LICENSE) L5: */ L6:!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("jquery")):"function"==typeof define&&define.amd?define(["exports","jquery"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).adminlte={},e.jQuery)}(this,(function(e,t){"use strict";function a(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var n=a(t),i="CardRefresh",o=...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 45.3K bytes -
FessActionAdjustmentProvider.java
@author jflute L26: */ L27:public class FessActionAdjustmentProvider implements ActionAdjustmentProvider { L28: L29: // _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ L30: // you can adjust your actions by overriding L31: // default methods defined at the interface L32: // _/_/_/_/_/_/_/_/_/_/ L33: L34: @Override L35: public FormMappingOption adjustFormMapping() { L36: return new FormMappingOption() L37: .filterSimpleTextParameter((parameter, meta) -> paramete...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2K bytes -
codeql.yml
alter this file to override the set of languages analyzed, L5:# or to provide custom queries or build logic. L6:# L7:# ******** NOTE ******** L8:# We have attempted to detect the languages in your repository. Please check L9:# the `language` matrix defined below to confirm you have the correct set of L10:# supported CodeQL languages. L11:# L12:name: "CodeQL" L13: L14:on: L15: push: L16: branches: [ "master" ] L17: pull_request: L18: branches: [ "master" ] L19: schedule: L20: - cron: '38...github.com/codelibs/fess/.github/workflows/code...Wed Aug 14 23:51:19 UTC 2024 4.4K bytes -
Secured.java
L22:import java.lang.annotation.RetentionPolicy; L23:import java.lang.annotation.Target; L24: L25:/** L26: * Java 5 annotation for describing service layer security attributes. L27: * L28: * <p> L29: * The <code>Secured</code> annotation is used to define a list of security configuration L30: * attributes for business methods. L31: * <p> L32: * For example: L33: * L34: * <pre> L35: * @Secured({ "ROLE_USER" }) L36: * public void create(Contact contact); L37: * L38: * @Secured({ ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.8K bytes -
fess.in.bat
L1:@echo off L2: L3:if DEFINED JAVA_HOME goto cont L4: L5::err L6:ECHO JAVA_HOME environment variable must be set! 1>&2 L7:EXIT /B 1 L8: L9::cont L10:set SCRIPT_DIR=%~dp0 L11:for %%I in ("%SCRIPT_DIR%..") do set FESS_HOME=%%~dpfI L12: L13: L14:REM ***** JAVA options ***** L15: L16:if "%FESS_MIN_MEM%" == "" ( L17:set FESS_MIN_MEM=256m L18:) L19: L20:if "%FESS_MAX_MEM%" == "" ( L21:set FESS_MAX_MEM=1g L22:) L23: L24:if NOT "%FESS_HEAP_SIZE%" == "" ( L25:set FESS_MIN_MEM=%FESS_HEAP_SIZE% L26:set F...github.com/codelibs/fess/src/main/assemblies/fi...Sun Jan 15 06:32:15 UTC 2023 4.2K bytes -
daterangepicker.js
@website: http://www.daterangepicker.com/ L7:*/ L8:// Following the UMD template https://github.com/umdjs/umd/blob/master/templates/returnExportsGlobal.js L9:(function (root, factory) { L10: if (typeof define === 'function' && define.amd) { L11: // AMD. Make globaly available as well L12: define(['moment', 'jquery'], function (moment, jquery) { L13: if (!jquery.fn) jquery.fn = {}; // webpack server rendering L14: if (typeof moment !== 'function' && moment.hasOwnProperty('default'))...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 64.8K bytes -
service.bat
L1:@echo off L2:SETLOCAL enabledelayedexpansion L3: L4:TITLE Fess Service L5: L6:if NOT DEFINED JAVA_HOME goto err L7: L8:set SCRIPT_DIR=%~dp0 L9:for %%I in ("%SCRIPT_DIR%..") do set FESS_HOME=%%~dpfI L10: L11:rem Detect JVM version to figure out appropriate executable to use L12:if not exist "%JAVA_HOME%\bin\java.exe" ( L13:echo JAVA_HOME points to an invalid Java installation (no java.exe found in "%JAVA_HOME%"^). Exiting... L14:goto:eof L15:) L16: L17:"%JAVA_HOME%\bin\java" -Xmx50M -version >...github.com/codelibs/fess/src/main/assemblies/fi...Sun Jan 15 06:32:15 UTC 2023 6K bytes -
popper.min.js
Copyright (C) Federico Zivolo 2020 L3: Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT). L4: */(function(e,t){'object'==typeof exports&&'undefined'!=typeof module?module.exports=t():'function'==typeof define&&define.amd?define(t):e.Popper=t()})(this,function(){'use strict';function e(e){return e&&'[object Function]'==={}.toString.call(e)}function t(e,t){if(1!==e.nodeType)return[];var o=e.ownerDocument.defaultView,n=o.getComputedStyle(e,null);return t?n[t]:n}function...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 20.7K bytes