Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for wronguser (0.05 sec)

  1. cmd/auth-handler_test.go

    		AccessKey string
    		SecretKey string
    		ErrCode   APIErrorCode
    	}{
    		{"", "", ErrInvalidAccessKeyID},
    		{"admin", "", ErrSignatureDoesNotMatch},
    		{"admin", "wrongpassword", ErrSignatureDoesNotMatch},
    		{"wronguser", "mypassword", ErrInvalidAccessKeyID},
    		{"", "mypassword", ErrInvalidAccessKeyID},
    		{"admin", "mypassword", ErrNone},
    	}
    
    	for i, testCase := range testCases {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java

            SmbClient client = container.getComponent("smbClient");
    
            Map<String, Object> params = new HashMap<>();
            SmbAuthentication auth = new SmbAuthentication();
            auth.setUsername("wronguser");
            auth.setPassword("wrongpass");
            params.put("smb1Authentications", new SmbAuthentication[] { auth });
            client.setInitParameterMap(params);
            client.init();
    
            try {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Tue Sep 23 06:42:59 UTC 2025
    - 30K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java

            SmbClient client = container.getComponent("smbClient");
    
            Map<String, Object> params = new HashMap<>();
            SmbAuthentication auth = new SmbAuthentication();
            auth.setUsername("wronguser");
            auth.setPassword("wrongpass");
            params.put("smbAuthentications", new SmbAuthentication[] { auth });
            client.setInitParameterMap(params);
            client.init();
    
            try {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Tue Sep 23 06:42:59 UTC 2025
    - 31.9K bytes
    - Viewed (0)
Back to top