Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 1,545 for Configs (0.09 sec)

  1. internal/config/compress/compress.go

    1. )
    2.  
    3. // DefaultKVS - default KV config for compression settings
    4. var (
    5. DefaultKVS = config.KVS{
    6. config.KV{
    7. Key: config.Enable,
    8. Value: config.EnableOff,
    9. },
    10. config.KV{
    11. Key: AllowEncrypted,
    12. Value: config.EnableOff,
    13. },
    14. config.KV{
    15. Key: Extensions,
    16. Value: DefaultExtensions,
    17. },
    18. config.KV{
    19. Key: MimeTypes,
    20. Value: DefaultMimeTypes,
    21. },
    22. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. cni/pkg/util/pluginutil.go

    1. }
    2.  
    3. return cniConfigMap, nil
    4. }
    5.  
    6. // Given an unmarshalled CNI config JSON map, return the plugin list asserted as a []interface{}
    7. func GetPlugins(cniConfigMap map[string]any) (plugins []any, err error) {
    8. plugins, ok := cniConfigMap["plugins"].([]any)
    9. if !ok {
    10. err = fmt.Errorf("error reading plugin list from CNI config")
    11. return
    12. }
    13. return
    14. }
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. internal/config/compress/help.go

    1. package compress
    2.  
    3. import "github.com/minio/minio/internal/config"
    4.  
    5. // Help template for compress feature.
    6. var (
    7. defaultHelpPostfix = func(key string) string {
    8. return config.DefaultHelpPostfix(DefaultKVS, key)
    9. }
    10.  
    11. Help = config.HelpKVS{
    12. config.HelpKV{
    13. Key: config.Enable,
    14. Description: "Enable or disable object compression",
    15. Type: "on|off",
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc-integtests.xml

    1. <rule-config name='ClassName'>
    2. <property name='regex' value='^[A-Z][\$a-zA-Z0-9]*$'/>
    3. </rule-config>
    4. <rule-config name='FieldName'>
    5. <property name='finalRegex' value='^[a-z][a-zA-Z0-9]*$'/>
    6. <property name='staticFinalRegex' value='^logger$|^[A-Z][A-Z_0-9]*$|^serialVersionUID$'/>
    7. </rule-config>
    8. <rule-config name='MethodName'>
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  5. cni/pkg/install/install_test.go

    1. }{
    2. {
    3. name: "preempted config",
    4. expectedFailure: true,
    5. cniConfigFilename: "list.conflist",
    6. chainedCNIPlugin: true,
    7. existingConfFiles: map[string]string{"bridge.conf": "bridge.conf", "list.conflist.golden": "list.conflist"},
    8. },
    9. {
    10. name: "intentional preempted config invalid",
    11. expectedFailure: true,
    12. cniConfigFilename: "invalid-arr.conflist",
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipe.java

    1. *
    2. */
    3. public class TransPeekNamedPipe extends SmbComTransaction {
    4.  
    5. private int fid;
    6.  
    7.  
    8. /**
    9. *
    10. * @param config
    11. * @param pipeName
    12. * @param fid
    13. */
    14. public TransPeekNamedPipe ( Configuration config, String pipeName, int fid ) {
    15. super(config, SMB_COM_TRANSACTION, TRANS_PEEK_NAMED_PIPE);
    16. this.name = pipeName;
    17. this.fid = fid;
    18. this.timeout = 0xFFFFFFFF;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  7. docs/sts/dex.md

    1. ```
    2. ~ ./bin/dex serve dex.yaml
    3. time="2020-07-12T20:45:50Z" level=info msg="config issuer: http://127.0.0.1:5556/dex"
    4. time="2020-07-12T20:45:50Z" level=info msg="config storage: sqlite3"
    5. time="2020-07-12T20:45:50Z" level=info msg="config static client: Example App"
    6. time="2020-07-12T20:45:50Z" level=info msg="config connector: mock"
    7. time="2020-07-12T20:45:50Z" level=info msg="config connector: local passwords enabled"
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. helm-releases/minio-5.0.8.tgz

    .Values.configPathmc }} MC_CONFIG_DIR="{{ .Values.configPathmc }}" MC="/usr/bin/mc --insecure --config-dir ${MC_CONFIG_DIR}" {{- else }} MC="/usr/bin/mc --insecure" {{- end }} # connectToMinio # Use a check-sleep-check loop to wait for MinIO service to be available connectToMinio() { SCHEME=$1 ATTEMPTS=0 ; LIMIT=29 ; # Allow 30 attempts set -e ; # fail if we can't read the keys. ACCESS=$(cat /config/rootUser) ; SECRET=$(cat /config/rootPassword) ; set +e ; # The connections to minio are allowed to fail. echo "Connecting...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Apr 13 21:49:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. helm-releases/minio-5.0.9.tgz

    .Values.configPathmc }} MC_CONFIG_DIR="{{ .Values.configPathmc }}" MC="/usr/bin/mc --insecure --config-dir ${MC_CONFIG_DIR}" {{- else }} MC="/usr/bin/mc --insecure" {{- end }} # connectToMinio # Use a check-sleep-check loop to wait for MinIO service to be available connectToMinio() { SCHEME=$1 ATTEMPTS=0 ; LIMIT=29 ; # Allow 30 attempts set -e ; # fail if we can't read the keys. ACCESS=$(cat /config/rootUser) ; SECRET=$(cat /config/rootPassword) ; set +e ; # The connections to minio are allowed to fail. echo "Connecting...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 03 06:23:26 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. helm-releases/minio-5.0.10.tgz

    .Values.configPathmc }} MC_CONFIG_DIR="{{ .Values.configPathmc }}" MC="/usr/bin/mc --insecure --config-dir ${MC_CONFIG_DIR}" {{- else }} MC="/usr/bin/mc --insecure" {{- end }} # connectToMinio # Use a check-sleep-check loop to wait for MinIO service to be available connectToMinio() { SCHEME=$1 ATTEMPTS=0 ; LIMIT=29 ; # Allow 30 attempts set -e ; # fail if we can't read the keys. ACCESS=$(cat /config/rootUser) ; SECRET=$(cat /config/rootPassword) ; set +e ; # The connections to minio are allowed to fail. echo "Connecting...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat May 27 00:05:49 UTC 2023
    - 20.3K bytes
    - Viewed (0)
Back to top