- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 958 for enabled (0.06 sec)
-
cmd/server-main.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 21:50:11 UTC 2024 - 35.2K bytes - Viewed (1) -
CHANGELOG/CHANGELOG-1.7.md
* The following alpha API groups were unintentionally enabled by default in previous releases, and will no longer be enabled by default in v1.8: ([#47690](https://github.com/kubernetes/kubernetes/pull/47690), [@caesarxuchao](https://github.com/caesarxuchao)) * rbac.authorization.k8s.io/v1alpha1 * settings.k8s.io/v1alpha1
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 308.7K bytes - Viewed (1) -
cmd/iam-store.go
func (store *IAMStoreSys) SetGroupStatus(ctx context.Context, group string, enabled bool) (updatedAt time.Time, err error) { if group == "" { return updatedAt, errInvalidArgument } cache := store.lock() defer store.unlock() gi, ok := cache.iamGroupsMap[group] if !ok { return updatedAt, errNoSuchGroup } if enabled { gi.Status = statusEnabled } else { gi.Status = statusDisabled
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 14 16:35:37 UTC 2024 - 83.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
EXPERIMENTAL_VFS_RETENTION("Experimental FS Watching", "On demand checks to run tests with file system watching enabled", "ExperimentalVfsRetention"), EXPERIMENTAL_PERFORMANCE("Experimental Performance", "Try out new performance test running", "ExperimentalPerformance"); val id: String
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
gorm.go
_ = db.Close() } } if config.TranslateError { if _, ok := db.Dialector.(ErrorTranslator); !ok { config.Logger.Warn(context.Background(), "The TranslateError option is enabled, but the Dialector %s does not implement ErrorTranslator.", db.Dialector.Name()) } } } if config.PrepareStmt { preparedStmt := NewPreparedStmtDB(db.ConnPool)
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Oct 09 11:29:48 UTC 2024 - 12.1K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
<![CDATA[ public boolean isEnabled() { return (getEnabled() != null) ? Boolean.parseBoolean(getEnabled()) : true; } ]]> </code> </codeSegment> <codeSegment> <version>4.0.0/4.0.99</version> <code> <![CDATA[ public void setEnabled(boolean enabled) { setEnabled(String.valueOf(enabled));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 115.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
DfsReferralData referral ) throws CIFSException { if ( log.isDebugEnabled() && trans.isSigningOptional() && !loc.isIPC() && !this.ctx.getConfig().isSigningEnforced() ) { log.debug("Signatures for file enabled but not required " + this); } if ( referral != null ) { t.markDomainDfs(); } try { if ( log.isTraceEnabled() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
common-protos/k8s.io/api/apps/v1beta2/generated.proto
// PersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from // the StatefulSet VolumeClaimTemplates. This requires the // StatefulSetAutoDeletePVC feature gate to be enabled, which is alpha. // +optional optional StatefulSetPersistentVolumeClaimRetentionPolicy persistentVolumeClaimRetentionPolicy = 10; // ordinals controls the numbering of replica indices in a StatefulSet. The
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 36.4K bytes - Viewed (0) -
cmd/admin-handlers-site-replication.go
if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } // Report the ILMExpiryStats only if at least one site has replication of ILM expiry enabled var replicateILMExpiry bool for _, site := range info.Sites { if site.ReplicateILMExpiry { replicateILMExpiry = true break } } if !replicateILMExpiry {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 19.4K bytes - Viewed (0) -
cmd/handler-utils.go
func getResource(path string, host string, domains []string) (string, error) { if len(domains) == 0 { return path, nil } // If virtual-host-style is enabled construct the "resource" properly. xhost, err := xnet.ParseHost(host) if err != nil { return "", err } for _, domain := range domains { if xhost.Name == minioReservedBucket+"."+domain {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 15:31:51 UTC 2024 - 15.5K bytes - Viewed (0)