- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for VS (0.01 sec)
-
cmd/bucket-handlers.go
objectLockEnabled := false if vs := r.Header.Get(xhttp.AmzObjectLockEnabled); len(vs) > 0 { v := strings.ToLower(vs) switch v { case "true", "false": objectLockEnabled = v == "true" default: writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidRequest), r.URL) return } } forceCreate := false if vs := r.Header.Get(xhttp.MinIOForceCreate); len(vs) > 0 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 63.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm.s
BL.CS 12(PC) // CALL.CS 12(PC) // 0a00002b BL.CC 11(PC) // CALL.CC 11(PC) // 0900003b BL.MI 10(PC) // CALL.MI 10(PC) // 0800004b BL.PL 9(PC) // CALL.PL 9(PC) // 0700005b BL.VS 8(PC) // CALL.VS 8(PC) // 0600006b BL.VC 7(PC) // CALL.VC 7(PC) // 0500007b BL.HI 6(PC) // CALL.HI 6(PC) // 0400008b BL.LS 5(PC) // CALL.LS 5(PC) // 0300009b BL.GE 4(PC) // CALL.GE 4(PC) // 020000ab
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Dec 15 20:51:01 UTC 2023 - 69K bytes - Viewed (0) -
.bazelrc
# Speed Windows compile times. Available in VS 16.4 (we are on 16.11). See # https://groups.google.com/a/tensorflow.org/d/topic/build/SsW98Eo7l3o/discussion build:windows --copt=/d2ReducedOptimizeHugeFunctions build:windows --host_copt=/d2ReducedOptimizeHugeFunctions # Before VS 2017 15.8, the member "type" would non-conformingly have an # alignment of only alignof(max_align_t). VS 2017 15.8 was fixed to handle this
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Aug 22 21:03:34 UTC 2025 - 56K bytes - Viewed (0) -
cmd/data-usage-cache_gen.go
err = msgp.WrapError(err, "Size") return } case "os": z.Objects, err = dc.ReadUint64() if err != nil { err = msgp.WrapError(err, "Objects") return } case "vs": z.Versions, err = dc.ReadUint64() if err != nil { err = msgp.WrapError(err, "Versions") return } case "dms": z.DeleteMarkers, err = dc.ReadUint64() if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Dec 15 22:50:12 UTC 2024 - 86.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64enc_extra.s
// "VMOVQ r/m64, xmm1"/6E vs "VMOVQ xmm2/m64, xmm1"/7E with mem operand. VMOVQ (AX), X20 // 62e1fd086e20 or 62e1fe087e20 VMOVQ 7(DX), X20 // 62e1fd086ea207000000 or 62e1fe087ea207000000 VMOVQ -15(R11)(CX*1), X20 // 62c1fd086ea40bf1ffffff or 62c1fe087ea40bf1ffffff VMOVQ (SP)(AX*2), X20 // 62e1fd086e2444 or 62e1fe087e2444 // "VMOVQ xmm1, r/m64"/7E vs "VMOVQ xmm1, xmm2/m64"/D6 with mem operand.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Feb 20 11:20:03 UTC 2025 - 57.7K bytes - Viewed (0) -
tensorflow/BUILD
# To learn more about import library (called interface library in Bazel): # https://docs.microsoft.com/en-us/cpp/build/linking-an-executable-to-a-dll?view=vs-2017#linking-implicitly filegroup( name = "get_tensorflow_dll_import_lib", srcs = ["//tensorflow:tensorflow.dll"], output_group = "interface_library", visibility = ["//visibility:public"], )
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Aug 28 19:11:51 UTC 2025 - 53.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
return (ks != null) ? ks : (keySet = new KeySet()); } @LazyInit transient @Nullable Collection<V> values; @Override public Collection<V> values() { Collection<V> vs = values; return (vs != null) ? vs : (values = new Values()); } @LazyInit transient @Nullable Set<Entry<K, V>> entrySet; @Override public Set<Entry<K, V>> entrySet() { Set<Entry<K, V>> es = entrySet;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt
* concurrently, returning once any connection connects successfully. * * This implements Happy Eyeballs ([RFC 6555][rfc_6555]), balancing connect latency vs. * wasted resources. * * Defaults to enabled, call with [fastFallback] = false to revert to 4.x behaviour. * * [rfc_6555]: https://datatracker.ietf.org/doc/html/rfc6555 */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 51.7K bytes - Viewed (0)