Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for edituser (0.04 seconds)

  1. src/test/java/org/codelibs/fess/app/web/admin/user/AdminUserActionTest.java

            assertNull(form.id);
            assertNull(form.crudMode);
            assertNull(form.name);
    
            form.id = "user-id-123";
            form.name = "edituser";
            form.crudMode = CrudMode.EDIT;
    
            assertEquals("user-id-123", form.id);
            assertEquals("edituser", form.name);
            assertEquals(CrudMode.EDIT, form.crudMode.intValue());
        }
    
        @Test
        public void test_searchForm() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  2. internal/event/target/redis.go

    	"github.com/minio/minio/internal/store"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    // Redis constants
    const (
    	RedisFormat     = "format"
    	RedisAddress    = "address"
    	RedisPassword   = "password"
    	RedisUser       = "user"
    	RedisKey        = "key"
    	RedisQueueDir   = "queue_dir"
    	RedisQueueLimit = "queue_limit"
    
    	EnvRedisEnable     = "MINIO_NOTIFY_REDIS_ENABLE"
    	EnvRedisFormat     = "MINIO_NOTIFY_REDIS_FORMAT"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Mar 30 00:56:02 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  3. internal/config/notify/legacy.go

    		},
    		config.KV{
    			Key:   target.RedisAddress,
    			Value: cfg.Addr.String(),
    		},
    		config.KV{
    			Key:   target.RedisPassword,
    			Value: cfg.Password,
    		},
    		config.KV{
    			Key:   target.RedisUser,
    			Value: cfg.User,
    		},
    		config.KV{
    			Key:   target.RedisKey,
    			Value: cfg.Key,
    		},
    		config.KV{
    			Key:   target.RedisQueueDir,
    			Value: cfg.QueueDir,
    		},
    		config.KV{
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Apr 27 04:30:57 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  4. internal/config/notify/help.go

    			Description: "Redis server password",
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    			Secret:      true,
    		},
    		config.HelpKV{
    			Key:         target.RedisUser,
    			Description: "Redis server user for the auth",
    			Optional:    true,
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         target.RedisQueueDir,
    			Description: queueDirComment,
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Sep 06 23:06:30 GMT 2024
    - 19.2K bytes
    - Click Count (0)
  5. internal/config/notify/parse.go

    			Value: "",
    		},
    		config.KV{
    			Key:   target.RedisKey,
    			Value: "",
    		},
    		config.KV{
    			Key:   target.RedisPassword,
    			Value: "",
    		},
    		config.KV{
    			Key:   target.RedisUser,
    			Value: "",
    		},
    		config.KV{
    			Key:   target.RedisQueueDir,
    			Value: "",
    		},
    		config.KV{
    			Key:   target.RedisQueueLimit,
    			Value: "0",
    		},
    	}
    )
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 47.5K bytes
    - Click Count (0)
Back to Top