Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for scriptData (0.18 sec)

  1. src/main/resources/fess_label_ko.properties

    labels.labelTypeIds = 레이블(Label)
    labels.lang = 언어
    labels.outputs = 대상
    labels.pos = 품사
    labels.purgeJobLogDay = 이전 작업 로그 삭제
    labels.purgeUserInfoDay = 이전의 사용자 로그를 삭제
    labels.reading = 읽기
    labels.roleTypeIds = Role ID
    labels.scriptData = 스크립트
    labels.scriptResult = 결과
    labels.scriptType = 실행 방법
    labels.segmentation = 분할
    labels.startTime = 시작 시간
    labels.target = 대상
    labels.token = 토큰
    labels.synonymFile = 동의어 파일
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 44K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_fr.properties

    labels.outputs	=	Cible
    labels.pos	=	PDV
    labels.purgeJobLogDay	=	Purger le journal des tâches avant
    labels.purgeUserInfoDay	=	Purger l'utilisateur avant
    labels.reading	=	Lecture
    labels.roleTypeIds	=	ID de rôle
    labels.scriptData	=	Scénario
    labels.scriptResult	=	Résultat
    labels.scriptType	=	Exécuteur
    labels.segmentation	=	Segmentation
    labels.startTime	=	Heure de début
    labels.target	=	Cible
    labels.token	=	Jeton
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

            UpgradeUtil.addData(searchEngineClient, ".fess_config.scheduled_job", "label_updater",
                    "{\"name\":\"Label Updater\",\"target\":\"all\",\"cronExpression\":\"\",\"scriptType\":\"groovy\",\"scriptData\":\"return container.getComponent(\\\"updateLabelJob\\\").execute();\",\"jobLogging\":false,\"crawler\":false,\"available\":true,\"sortOrder\":11,\"createdBy\":\"system\",\"createdTime\":0,\"updatedBy\":\"system\",\"updatedTime\":0}");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_scheduledjob_scriptType = "{labels.scheduledjob_scriptType}";
    
        /** The key of the message: Script */
        public static final String LABELS_scheduledjob_scriptData = "{labels.scheduledjob_scriptData}";
    
        /** The key of the message: Logging */
        public static final String LABELS_scheduledjob_jobLogging = "{labels.scheduledjob_jobLogging}";
    
        /** The key of the message: Crawler Job */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  5. bin/check_samples.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    shopt -s globstar
    set -e
    
    SCRIPTPATH=$( cd "$(dirname "$0")" && pwd -P )
    ROOTDIR=$SCRIPTPATH/..
    cd "$ROOTDIR" || exit
    
    # rely on go build cache
    ISTIOCTL=bin/istioctl
    go build -o $ISTIOCTL ./istioctl/cmd/istioctl
    
    for f in samples/**/*.yaml; do
    Shell Script
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Nov 04 01:54:50 GMT 2023
    - 1010 bytes
    - Viewed (0)
  6. bin/update_ztunnel.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -e
    
    UPDATE_BRANCH=${UPDATE_BRANCH:-"master"}
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    # Get the sha of top commit
    # $1 = repo
    function getSha() {
      local dir result
      dir=$(mktemp -d)
    Shell Script
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 11 17:50:01 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  7. bin/update_proxy.sh

    # Update the Proxy SHA in istio.deps with the first argument
    # Exit immediately for non zero status
    set -e
    # Check unset variables
    set -u
    # Print commands
    set -x
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    # Wait for the proxy to become available
    ISTIO_ENVOY_VERSION=${ISTIO_ENVOY_VERSION:-$1}
    Shell Script
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Aug 28 07:59:44 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  8. common/scripts/gobuild.sh

    # limitations under the License.
    
    # This script builds and version stamps the output
    
    VERBOSE=${VERBOSE:-"0"}
    V=""
    if [[ "${VERBOSE}" == "1" ]];then
        V="-x"
        set -x
    fi
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    
    OUT=${1:?"output path"}
    shift
    
    set -e
    
    export BUILD_GOOS=${GOOS:-linux}
    export BUILD_GOARCH=${GOARCH:-amd64}
    GOBINARY=${GOBINARY:-go}
    Shell Script
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Oct 21 14:08:46 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  9. bin/update_deps.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -exo pipefail
    
    UPDATE_BRANCH=${UPDATE_BRANCH:-"master"}
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    # Get the sha of top commit
    # $1 = repo
    function getSha() {
      git ls-remote "https://github.com/istio/${1}.git" "refs/heads/${UPDATE_BRANCH}" | cut -f 1
    Shell Script
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Sep 12 14:07:30 GMT 2023
    - 2K bytes
    - Viewed (0)
  10. bin/update_crds.sh

    # limitations under the License.
    
    set -e
    
    fail() {
      echo "$@" 1>&2
      exit 1
    }
    
    API_TMP="$(mktemp -d -u)"
    
    trap 'rm -rf "${API_TMP}"' EXIT
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    REPO="github.com/istio/api"
    # using the pseudo version we have in go.mod file. e.g. v.0.0.0-<timestamp>-<SHA>
    Shell Script
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 14:28:27 GMT 2024
    - 3.4K bytes
    - Viewed (0)
Back to top