Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 1,545 for Configs (0.05 sec)

  1. internal/config/heal/help.go

    1. package heal
    2.  
    3. import "github.com/minio/minio/internal/config"
    4.  
    5. // Help template for caching feature.
    6. var (
    7. defaultHelpPostfix = func(key string) string {
    8. return config.DefaultHelpPostfix(DefaultKVS, key)
    9. }
    10.  
    11. // Help provides help for config values
    12. Help = config.HelpKVS{
    13. config.HelpKV{
    14. Key: Bitrot,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/create/Smb2CloseRequest.java

    1. private int closeFlags;
    2.  
    3.  
    4. /**
    5. * @param config
    6. * @param fileId
    7. * @param fileName
    8. */
    9. public Smb2CloseRequest ( Configuration config, byte[] fileId, String fileName ) {
    10. super(config, SMB2_CLOSE);
    11. this.fileId = fileId;
    12. this.fileName = fileName;
    13. }
    14.  
    15.  
    16. /**
    17. *
    18. * @param config
    19. * @param fileId
    20. */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4K bytes
    - Viewed (0)
  3. tests/helper_test.go

    1. }
    2.  
    3. if config.Company {
    4. user.Company = Company{Name: "company-" + name}
    5. }
    6.  
    7. if config.Manager {
    8. user.Manager = GetUser(name+"_manager", Config{})
    9. }
    10.  
    11. for i := 0; i < config.Team; i++ {
    12. user.Team = append(user.Team, *GetUser(name+"_team_"+strconv.Itoa(i+1), Config{}))
    13. }
    14.  
    15. for i := 0; i < config.Languages; i++ {
    16. name := name + "_locale_" + strconv.Itoa(i+1)
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. internal/logger/help.go

    1. },
    2. config.HelpKV{
    3. Key: config.Comment,
    4. Description: config.DefaultComment,
    5. Optional: true,
    6. Type: "sentence",
    7. },
    8. }
    9.  
    10. HelpKafka = config.HelpKVS{
    11. config.HelpKV{
    12. Key: KafkaBrokers,
    13. Description: "comma separated list of Kafka broker addresses",
    14. Type: "csv",
    15. },
    16. config.HelpKV{
    17. Key: KafkaTopic,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Sep 11 22:20:42 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/configdump.go

    1. return fmt.Errorf("error unmarshalling config dump response from Envoy: %v", err)
    2. }
    3. c.configDump = w
    4. return nil
    5. }
    6.  
    7. // PrintBootstrapDump prints just the bootstrap config dump to the ConfigWriter stdout
    8. func (c *ConfigWriter) PrintBootstrapDump(outputFormat string) error {
    9. if c.configDump == nil {
    10. return fmt.Errorf("config writer has not been primed")
    11. }
    12. bootstrapDump, err := c.configDump.GetBootstrapConfigDump()
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Feb 29 20:46:41 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. internal/config/identity/openid/openid.go

    1. ClaimPrefix = "claim_prefix"
    2. )
    3.  
    4. // DefaultKVS - default config for OpenID config
    5. var (
    6. DefaultKVS = config.KVS{
    7. config.KV{
    8. Key: config.Enable,
    9. Value: "",
    10. },
    11. config.KV{
    12. Key: DisplayName,
    13. Value: "",
    14. },
    15. config.KV{
    16. Key: ConfigURL,
    17. Value: "",
    18. },
    19. config.KV{
    20. Key: ClientID,
    21. Value: "",
    22. },
    23. config.KV{
    24. Key: ClientSecret,
    25. Value: "",
    26. },
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 10 20:16:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. internal/config/callhome/help.go

    1. package callhome
    2.  
    3. import "github.com/minio/minio/internal/config"
    4.  
    5. var (
    6. defaultHelpPostfix = func(key string) string {
    7. return config.DefaultHelpPostfix(DefaultKVS, key)
    8. }
    9.  
    10. // HelpCallhome - provides help for callhome config
    11. HelpCallhome = config.HelpKVS{
    12. config.HelpKV{
    13. Key: Enable,
    14. Type: "on|off",
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 06 23:14:52 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/lastafluteMap.dfprop

    1. # ; freeGenList = list:{ [env or config or label or message or html] }
    2. # ; propertiesHtmlList = list:{ [env or config or label or message] }
    3. # }
    4. # ; appMap = map:{
    5. # ; [application name, camel case, initial uncapitalised] = map:{
    6. # ; path = [relative path to application project from DBFlute client]
    7. # ; freeGenList = list:{ [env or config or label or message or html] }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun May 20 08:20:11 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

    1. }
    2.  
    3. @Override
    4. public void store(final DataConfig config, final IndexUpdateCallback callback, final DataStoreParams initParamMap) {
    5. final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
    6. final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    7. final Date documentExpires = crawlingInfoHelper.getDocumentExpires(config);
    8. final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. cmd/common-main.go

    1. logger.Fatal(config.ErrMissingEnvCredentialRootUser(nil), "Unable to start MinIO")
    2. } else if env.IsSet(config.EnvRootUser) && !env.IsSet(config.EnvRootPassword) {
    3. logger.Fatal(config.ErrMissingEnvCredentialRootPassword(nil), "Unable to start MinIO")
    4. } else if !env.IsSet(config.EnvRootUser) && !env.IsSet(config.EnvRootPassword) {
    5. if !env.IsSet(config.EnvAccessKey) && env.IsSet(config.EnvSecretKey) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 21:50:11 UTC 2024
    - 31.7K bytes
    - Viewed (0)
Back to top