- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 10 for LD (0.01 seconds)
-
cmd/shared-lock.go
case <-ctx2.Done(): // The lock acquirer decides to cancel, exit this goroutine case <-ctx.Done(): } cancel() }() return ctx, cancel } func (ld sharedLock) GetLock(ctx context.Context) (context.Context, context.CancelFunc) { l := <-ld.lockContext return mergeContext(l.Context(), ctx) } func newSharedLock(ctx context.Context, objAPI ObjectLayer, lockName string) *sharedLock { l := &sharedLock{
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Mon Feb 13 09:26:38 GMT 2023 - 2.3K bytes - Click Count (0) -
arm_compiler.BUILD
package(default_visibility = ["//visibility:public"]) filegroup( name = "gcc", srcs = glob(["bin/*-gcc"]), ) filegroup( name = "ar", srcs = glob(["bin/*-ar"]), ) filegroup( name = "ld", srcs = glob(["bin/*-ld"]), ) filegroup( name = "nm", srcs = glob(["bin/*-nm"]), ) filegroup( name = "objcopy", srcs = glob(["bin/*-objcopy"]), ) filegroup( name = "objdump",Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Mon Apr 12 11:17:46 GMT 2021 - 1.2K bytes - Click Count (0) -
dbflute_fess/dfprop/basicInfoMap.dfprop
# /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o projectPrefix: (NotRequired - Default '') # If the value is 'Ld', all class names are 'LdXxx'. # Basically you don't need this if you don't want the common prefix of class name. # #; projectPrefix = Ld # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Oct 31 23:35:14 GMT 2015 - 9.2K bytes - Click Count (0) -
.mailmap
Lari Hotari <******@****.***> <******@****.***> Lari Hotari <******@****.***> <******@****.***> Luke Daley <******@****.***> <Luke Daley@.(none)> Luke Daley <******@****.***> <ld@ldaley.com> Luke Daley <******@****.***> <luke@trajan.(none)> Lóránt Pintér <******@****.***> Lóránt Pintér <******@****.***> <******@****.***> Lóránt Pintér <******@****.***> <******@****.***>
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Oct 03 06:34:28 GMT 2017 - 3.3K bytes - Click Count (0) -
tensorflow/c/c_test.c
fprintf(stderr, "TF_GetLocalTempDirectories returned no results\n"); return 1; } char file_name[100]; time_t t = time(NULL); snprintf(file_name, sizeof(file_name), "test-%d-%ld.txt", getpid(), t); size_t length = 2 + strlen(path) + strlen(file_name); char* full_path = malloc(length); snprintf(full_path, length, "%s/%s", path, file_name); TF_WritableFileHandle* h;
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Wed Apr 24 20:50:35 GMT 2024 - 2.8K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/EquivalenceTester.java
* expected to be unequal. For example: * * {@snippet : * EquivalenceTester.of(someStringEquivalence) * .addEquivalenceGroup("hello", "h" + "ello") * .addEquivalenceGroup("world", "wor" + "ld") * .test(); * } * * <p>Note that testing {@link Object#equals(Object)} is more simply done using the {@link * EqualsTester}. It includes an extra test against an instance of an arbitrary class without havingCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 4.1K bytes - Click Count (0) -
guava-testlib/src/com/google/common/testing/EquivalenceTester.java
* expected to be unequal. For example: * * {@snippet : * EquivalenceTester.of(someStringEquivalence) * .addEquivalenceGroup("hello", "h" + "ello") * .addEquivalenceGroup("world", "wor" + "ld") * .test(); * } * * <p>Note that testing {@link Object#equals(Object)} is more simply done using the {@link * EqualsTester}. It includes an extra test against an instance of an arbitrary class without havingCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 4.1K bytes - Click Count (0) -
src/main/assemblies/files/fess
# --prop val set fess property (i.e. -Des.<prop>=<val>) CDPATH="" SCRIPT="$0" # SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path. while [ -h "$SCRIPT" ] ; do ls=`ls -ld "$SCRIPT"` # Drop everything prior to -> link=`expr "$ls" : '.*-> \(.*\)$'` if expr "$link" : '/.*' > /dev/null; then SCRIPT="$link" else SCRIPT=`dirname "$SCRIPT"`/"$link" fi done
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sun Jan 15 06:32:15 GMT 2023 - 5.4K bytes - Click Count (0) -
gradlew
app_path=$0 # Need this for daisy-chained symlinks. while APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path [ -h "$app_path" ] do ls=$( ls -ld "$app_path" ) link=${ls#*' -> '} case $link in #( /*) app_path=$link ;; #( *) app_path=$APP_HOME$link ;; esac done # This is normally unused # shellcheck disable=SC2034Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Sep 18 20:55:41 GMT 2025 - 8.4K bytes - Click Count (0) -
apache-maven/src/assembly/maven/bin/mvn
mingw=false; case "`uname`" in CYGWIN*) cygwin=true;; MINGW*) mingw=true;; esac ## resolve links - $0 may be a link to Maven's home PRG="$0" # need this for relative symlinks while [ -h "$PRG" ] ; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '.*-> \(.*\)$'` if expr "$link" : '/.*' > /dev/null; then PRG="$link" else PRG="`dirname "$PRG"`/$link" fi done saveddir=`pwd` MAVEN_HOME=`dirname "$PRG"`/..
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Dec 10 16:40:06 GMT 2025 - 9.2K bytes - Click Count (0)