- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 106 for cfgs (0.12 sec)
-
cmd/tier.go
cfg.S3.AccessKey = creds.AccessKey cfg.S3.SecretKey = creds.SecretKey } case madmin.Azure: if creds.SecretKey != "" { cfg.Azure.AccountKey = creds.SecretKey } if creds.AzSP.TenantID != "" { cfg.Azure.SPAuth.TenantID = creds.AzSP.TenantID } if creds.AzSP.ClientID != "" { cfg.Azure.SPAuth.ClientID = creds.AzSP.ClientID } if creds.AzSP.ClientSecret != "" {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 20:44:05 UTC 2024 - 15.7K bytes - Viewed (0) -
cni/pkg/install/cniconfig.go
"istio.io/istio/pkg/file" ) func createCNIConfigFile(ctx context.Context, cfg *config.InstallConfig) (string, error) { pluginConfig := plugin.Config{ PluginLogLevel: cfg.PluginLogLevel, CNIAgentRunDir: cfg.CNIAgentRunDir, AmbientEnabled: cfg.AmbientEnabled, ExcludeNamespaces: strings.Split(cfg.ExcludeNamespaces, ","), } pluginConfig.Name = "istio-cni" pluginConfig.Type = "istio-cni"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 8.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/AllTests.java
return cfg; } }); MUTATIONS.put("smb1-forceSigning", new TestMutation() { @Override public Map<String, String> mutate ( Map<String, String> cfg ) { cfg.put("jcifs.smb.client.maxVersion", "SMB1"); cfg.put("jcifs.smb.client.signingPreferred", "true");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 14.4K bytes - Viewed (0) -
internal/config/drive/drive.go
if d == "" { cfg.MaxTimeout = 30 * time.Second } else { dur, _ := time.ParseDuration(d) if dur < time.Second { cfg.MaxTimeout = 30 * time.Second } else { cfg.MaxTimeout = getMaxTimeout(dur) } } return cfg, err } func getMaxTimeout(t time.Duration) time.Duration { if t > time.Second { return t } // get default value
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 3K bytes - Viewed (0) -
cni/pkg/cmd/root.go
var cfg *config.Config if cfg, err = constructConfig(); err != nil { return } log.Infof("CNI logging level: %+v", istiolog.LevelToString(log.GetOutputLevel())) log.Infof("CNI install configuration: \n%+v", cfg.InstallConfig) log.Infof("CNI race repair configuration: \n%+v", cfg.RepairConfig) // Start metrics server
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 12.7K bytes - Viewed (0) -
internal/config/storageclass/legacy.go
func SetStorageClass(s config.Config, cfg Config) { if len(cfg.Standard.String()) == 0 && len(cfg.RRS.String()) == 0 { // Do not enable storage-class if no settings found. return } s[config.StorageClassSubSys][config.Default] = config.KVS{ config.KV{ Key: ClassStandard, Value: cfg.Standard.String(), }, config.KV{ Key: ClassRRS, Value: cfg.RRS.String(), }, }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java
this.writeMode = writeMode; } @Override protected int getBatchLimit ( Configuration cfg, byte cmd ) { if ( cmd == SMB_COM_READ_ANDX ) { return cfg.getBatchLimit("WriteAndX.ReadAndX"); } if ( cmd == SMB_COM_CLOSE ) { return cfg.getBatchLimit("WriteAndX.Close"); } return 0; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusRequest.java
*/ package jcifs.netbios; import jcifs.Configuration; class NodeStatusRequest extends NameServicePacket { NodeStatusRequest ( Configuration cfg, Name name ) { super(cfg); this.questionName = name; this.questionType = NBSTAT; this.isRecurDesired = false; this.isBroadcast = false; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
cni/pkg/plugin/sidecar_iptables_linux.go
cfg := config.DefaultConfig() cfg.HostFilesystemPodNetwork = true cfg.NetworkNamespace = netns cfg.ProxyPort = rdrct.targetPort cfg.ProxyUID = rdrct.noRedirectUID cfg.ProxyGID = rdrct.noRedirectGID cfg.InboundInterceptionMode = rdrct.redirectMode cfg.OutboundIPRangesInclude = rdrct.includeIPCidrs cfg.InboundPortsExclude = rdrct.excludeInboundPorts cfg.InboundPortsInclude = rdrct.includeInboundPorts
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Jun 29 01:24:47 UTC 2024 - 2.6K bytes - Viewed (0) -
cmd/config-migrate.go
switch cfg.Version { case "29": // V29 -> V30 cfg.Compression.Enabled = false cfg.Compression.Extensions = strings.Split(compress.DefaultExtensions, config.ValueSeparator) cfg.Compression.MimeTypes = strings.Split(compress.DefaultMimeTypes, config.ValueSeparator) case "30": // V30 -> V31 cfg.OpenID = openid.Config{} cfg.Policy.OPA = opa.Args{ URL: &xnet.URL{},
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.4K bytes - Viewed (0)