- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 131 for Subname (0.07 sec)
-
ci/official/envs/nightly_upload
# 2. The internal version numbers get changed TFCI_NIGHTLY_UPDATE_VERSION_ENABLE=1 # 3. Push results to public build cache (unique cache for MacOS) if [[ $(uname -s) == "Darwin" ]]; then TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_macos_cache_push" else TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_cache_push"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Jun 17 20:45:36 UTC 2024 - 1.7K bytes - Viewed (0) -
docs/distributed/distributed-from-config-file.sh
} cleanup unset MINIO_KMS_KES_CERT_FILE unset MINIO_KMS_KES_KEY_FILE unset MINIO_KMS_KES_ENDPOINT unset MINIO_KMS_KES_KEY_NAME export MINIO_CI_CD=1 if [ ! -f ./mc ]; then os="$(uname -s)" arch="$(uname -m)" case "${arch}" in "x86_64") arch="amd64" ;; esac wget -O mc https://dl.minio.io/client/mc/release/${os,,}-${arch,,}/mc && chmod +x mc fi for i in $(seq 1 4); do
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 28 09:06:49 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsJobLogCB.java
doColumn("_id"); } public void columnEndTime() { doColumn("endTime"); } public void columnJobName() { doColumn("jobName"); } public void columnJobStatus() { doColumn("jobStatus"); } public void columnLastUpdated() { doColumn("lastUpdated"); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7K bytes - Viewed (0) -
ci/official/envs/public_cache
# ============================================================================== # Sourcing this enables Bazel remote cache (public, read-only) # The cache configs are different for MacOS and Linux if [[ $(uname -s) == "Darwin" ]]; then TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_macos_cache" else TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_cache"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 1011 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsUserCA.java
} public void setSurname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setSurname_Terms("surname", opLambda, null); } public void setSurname_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsUserCA> aggsLambda) { setSurname_Terms("surname", opLambda, aggsLambda); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 212.4K bytes - Viewed (0) -
ci/official/envs/disk_cache
# limitations under the License. # ============================================================================== # Sourcing this enables local disk cache if [[ $(uname -s) == "Darwin" ]]; then echo "Please note that using disk cache on macOS is not recommended because the" echo "cache can end up being pretty big and make the build process inefficient." fi
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 1023 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsJobLogBhv.java
try { final RESULT result = entityType.newInstance(); result.setEndTime(DfTypeUtil.toLong(source.get("endTime"))); result.setJobName(DfTypeUtil.toString(source.get("jobName"))); result.setJobStatus(DfTypeUtil.toString(source.get("jobStatus"))); result.setLastUpdated(DfTypeUtil.toLong(source.get("lastUpdated")));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/cbean/bs/BsUserCB.java
doColumn("state"); } public void columnStreet() { doColumn("street"); } public void columnSurname() { doColumn("surname"); } public void columnTelephoneNumber() { doColumn("telephoneNumber"); } public void columnTeletexTerminalIdentifier() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.7K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/bug_report.md
## Your Environment <!--- Include as many relevant details about the environment you experienced the bug in --> * Version used (`minio --version`): * Server setup and configuration:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 20 17:37:40 UTC 2022 - 1.7K bytes - Viewed (0) -
test-site/activator
echo "$(pwd -P)/$TARGET_FILE" else echo $(cygwinpath "$(pwd -P)/$TARGET_FILE") fi ) } # TODO - Do we need to detect msys? # Uses uname to detect if we're in the odd cygwin environment. is_cygwin() { local os=$(uname -s) case "$os" in CYGWIN*) return 0 ;; *) return 1 ;; esac } # This can fix cygwin style /cygdrive paths so we get the # windows style paths.
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 9.3K bytes - Viewed (0)