- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 958 for enabled (1.03 sec)
-
cmd/bucket-lifecycle_test.go
expectedErr: errInvalidStorageClass, }, { // no transition rule
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 31 09:57:57 UTC 2022 - 7K bytes - Viewed (0) -
tensorflow/c/eager/c_api.h
// one of the source or destination devices to be CPU (i.e., for the source or // destination tensor to be placed in host memory). // If async execution is enabled, the copy may be enqueued and the call will // return "non-ready" handle. Else, this function returns after the copy has // been done. TF_CAPI_EXPORT extern TFE_TensorHandle* TFE_TensorHandleCopyToDevice(
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Apr 27 21:07:00 UTC 2023 - 22.8K bytes - Viewed (0) -
docs/bucket/replication/DESIGN.md
qualifying for existing object replication are detected when scanner runs, and will be replicated if existing object replication is enabled and applicable replication rules are satisfied. Because replication depends on the immutability of versions, only pre-existing objects created while versioning was enabled can be replicated. Even if replication rules are disabled and re-enabled later, the objects created during the interim will be synced as the scanner queues them. For saving iops, objects qualifying...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 14.7K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/testing/services/BuildBucketProvider.kt
override fun configureTest(testTask: Test, sourceSetName: String) { val currentVersionUnderTest = extractTestTaskGradleVersion(testTask.name) currentVersionUnderTest?.apply { testTask.enabled = currentVersionEnabled(currentVersionUnderTest) } } private fun currentVersionEnabled(currentVersionUnderTest: String): Boolean {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 4.9K bytes - Viewed (0) -
internal/config/storageclass/storage-class.go
sCfg.RRS = newCfg.RRS sCfg.Standard = newCfg.Standard sCfg.Optimize = newCfg.Optimize sCfg.inlineBlock = newCfg.inlineBlock sCfg.initialized = true } // Enabled returns if storageClass is enabled is enabled. func Enabled(kvs config.KVS) bool { ssc := kvs.Get(ClassStandard) rrsc := kvs.Get(ClassRRS) return ssc != "" || rrsc != "" }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 12:24:04 UTC 2024 - 12.3K bytes - Viewed (0) -
common/config/.golangci.yml
gocritic: # Disable all checks. # Default: false disable-all: true # Which checks should be enabled in addition to default checks. Since we don't want # all of the default checks, we do the disable-all first. enabled-checks: - appendCombine - argOrder - assignOp - badCond - boolExprSimplify - builtinShadow
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 11.7K bytes - Viewed (0) -
internal/config/crypto.go
// // The same context must be provided when decrypting the // ciphertext. func Encrypt(k *kms.KMS, plaintext io.Reader, ctx kms.Context) (io.Reader, error) { algorithm := sio.AES_256_GCM if !fips.Enabled && !sioutil.NativeAES() { algorithm = sio.ChaCha20Poly1305 } key, err := k.GenerateKey(context.Background(), &kms.GenerateKeyRequest{AssociatedData: ctx}) if err != nil { return nil, err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 07 23:55:37 UTC 2024 - 5K bytes - Viewed (0) -
cmd/ftp-server-driver.go
ui, ok := globalIAMSys.GetUser(context.Background(), ctx.Sess.LoginUser()) if !ok && !globalIAMSys.LDAPConfig.Enabled() { return nil, errNoSuchUser } if !ok && globalIAMSys.LDAPConfig.Enabled() { sa, _, err := globalIAMSys.getServiceAccount(context.Background(), ctx.Sess.LoginUser()) if err != nil && !errors.Is(err, errNoSuchServiceAccount) { return nil, err
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 14K bytes - Viewed (0) -
test-site/app/Global.java
} private void esRun() { ElasticsearchClusterRunner runner = new ElasticsearchClusterRunner(); runner.onBuild((number, settingsBuilder) -> { settingsBuilder.put("http.cors.enabled", true); settingsBuilder.put("index.number_of_shards", 1); settingsBuilder.put("index.number_of_replicas", 0); settingsBuilder.putList("discovery.seed_hosts", "127.0.0.1:9301");
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Feb 23 14:02:03 UTC 2019 - 2.2K bytes - Viewed (0) -
cni/pkg/iptables/iptables_linux.go
if cfg.EnableIPv6 { // IPv6 may be enabled, but only partially v, err := ReadSysctl(ipv6DisabledLo) if v != "1" { // If we got an error, we will proceed. Maybe it will work anyways if err != nil { log.Warnf("attempted to read %q got error: %v; attemping to continue", ipv6DisabledLo, err) } cidrs = append(cidrs, "0::0/0") } else {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Sep 06 09:44:28 UTC 2024 - 4K bytes - Viewed (0)