Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for cfg (0.01 sec)

  1. cmd/object-lambda-handlers_test.go

    			}))
    			defer lambdaServer.Close()
    
    			lambdaARN := "arn:minio:s3-object-lambda::lambda1:webhook"
    
    			cfg := config.New()
    			cfg[config.LambdaWebhookSubSys] = map[string]config.KVS{
    				functionID: {
    					{Key: "endpoint", Value: lambdaServer.URL},
    					{Key: "enable", Value: config.EnableOn},
    				},
    			}
    			cfg[config.APISubSys] = map[string]config.KVS{
    				"api": {
    					{Key: "gzip", Value: config.EnableOff},
    				},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jul 18 21:56:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/av/AvSingleHost.java

            super(AvPair.MsvAvSingleHost, raw);
        }
    
        /**
         * Constructs an AvSingleHost using configuration settings
         *
         * @param cfg the configuration containing machine ID
         */
        public AvSingleHost(final Configuration cfg) {
            this(new byte[8], cfg.getMachineId());
        }
    
        /**
         * Constructs an AvSingleHost with custom data and machine ID
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NodeStatusRequest.java

     */
    
    package jcifs.netbios;
    
    import jcifs.Configuration;
    
    class NodeStatusRequest extends NameServicePacket {
    
        NodeStatusRequest(final Configuration cfg, final Name name) {
            super(cfg);
            this.questionName = name;
            this.questionType = NBSTAT;
            this.isRecurDesired = false;
            this.isBroadcast = false;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/net/TestSmbComTransactionResponseReader.java

     */
    public class TestSmbComTransactionResponseReader {
    
        /**
         * Default configuration used for Unicode support tests
         */
        private Configuration cfg;
    
        @BeforeEach
        public void setup() throws Exception {
            this.cfg = new BaseConfiguration(true);
        }
    
        /**
         * Sub-class of {@link BaseConfiguration} that forces {@code useUnicode()}
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/BadWordService.java

         */
        public void exportCsv(final Writer writer) {
            final CsvConfig cfg = new CsvConfig(',', '"', '"');
            cfg.setEscapeDisabled(false);
            cfg.setQuoteDisabled(false);
            @SuppressWarnings("resource")
            final CsvWriter csvWriter = new CsvWriter(writer, cfg);
            try {
                final List<String> list = new ArrayList<>();
                list.add("BadWord");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  6. cmd/tier-handlers.go

    	if err != nil {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrAdminConfigBadJSON, err), r.URL)
    		return
    	}
    
    	var cfg madmin.TierConfig
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	if err := json.Unmarshal(reqBytes, &cfg); err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	var ignoreInUse bool
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Sep 12 20:44:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. cmd/common-main.go

    	for name, cfg := range pcfgs {
    		callback := getConsoleEndpoints()[0] + "/oauth_callback"
    		if cfg.RedirectURI != "" {
    			callback = cfg.RedirectURI
    		}
    		m[name] = consoleoauth2.ProviderConfig{
    			URL:                     cfg.URL.String(),
    			DisplayName:             cfg.DisplayName,
    			ClientID:                cfg.ClientID,
    			ClientSecret:            cfg.ClientSecret,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  8. cmd/user-provider-utils.go

    	roleArn := claims[roleArnClaim]
    
    	s := globalServerConfig.Clone()
    	configs, err := globalIAMSys.OpenIDConfig.GetConfigList(s)
    	if err != nil {
    		return "", false
    	}
    	for _, cfg := range configs {
    		if cfg.RoleARN == roleArn {
    			return cfg.Name, true
    		}
    	}
    	return "", false
    }
    
    func getOpenIDInfoFromClaims(claims map[string]any) madmin.OpenIDSpecificAccessKeyInfo {
    	info := madmin.OpenIDSpecificAccessKeyInfo{}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java

            this.writeMode = writeMode;
        }
    
        @Override
        protected int getBatchLimit(final Configuration cfg, final 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 Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NodeStatusResponse.java

         * the data of the existing address that should be one of several
         * returned by the node status.
         */
    
        NodeStatusResponse(final Configuration cfg, final NbtAddress queryAddress) {
            super(cfg);
            this.queryAddress = queryAddress;
            this.recordName = new Name(cfg);
            this.macAddress = new byte[6];
        }
    
        @Override
        int writeBodyWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top