- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 340 for Credential (0.1 sec)
-
src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java
} public void test_newlineCharactersInMessage() { // Test with newline characters in message String message = "LDAP error:\n- Connection failed\n- Invalid credentials\n- Timeout"; LdapConfigurationException exception = new LdapConfigurationException(message); assertEquals(message, exception.getMessage()); assertTrue(exception.getMessage().contains("\n"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
cmd/tier-handlers.go
Message: "Remote tier bucket not found", StatusCode: http.StatusBadRequest, } // error returned when remote tier credentials are invalid. errTierInvalidCredentials = AdminError{ Code: "XMinioAdminTierInvalidCredentials", Message: "Invalid remote tier credentials", StatusCode: http.StatusBadRequest, } // error returned when reserved internal names are used. errTierReservedName = AdminError{
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 12 20:44:05 UTC 2024 - 7.5K bytes - Viewed (0) -
.github/workflows/update-jdks.yml
permissions: contents: write pull-requests: write runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v5 with: persist-credentials: false fetch-depth: 0 - name: Update jdks.yaml uses: gradle/update-jdks-action@main - name: Add verification comment # https://github.com/gradle/gradle-private/issues/4518
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Aug 12 07:00:55 UTC 2025 - 2.1K bytes - Viewed (0) -
cmd/server-main.go
bootstrapTrace("handleKMSConfig", handleKMSConfig) // Load the root credentials from the shell environment or from // the config file if not defined, set the default one. bootstrapTrace("rootCredentials", func() { cred := loadRootCredentials() if !cred.IsValid() && (env.Get(api.EnvAPIRootAccess, config.EnableOn) == config.EnableOff) { // Generate KMS based credentials if root access is disabled // and no ENV is set.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:18:36 UTC 2025 - 35.9K bytes - Viewed (4) -
cmd/sftp-server-driver.go
"context" "errors" "fmt" "io" "net/http" "os" "path" "strings" "sync" "time" "github.com/minio/madmin-go/v3" "github.com/minio/minio-go/v7" "github.com/minio/minio-go/v7/pkg/credentials" xioutil "github.com/minio/minio/internal/ioutil" "github.com/minio/pkg/v3/mimedb" "github.com/pkg/sftp" "golang.org/x/crypto/ssh" ) // Maximum write offset for incoming SFTP blocks.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Feb 10 16:35:49 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportPoolImplTest.java
import org.mockito.junit.jupiter.MockitoSettings; import org.mockito.quality.Strictness; import jcifs.Address; import jcifs.CIFSContext; import jcifs.Configuration; import jcifs.Credentials; import jcifs.NameServiceClient; import jcifs.internal.SmbNegotiationResponse; /** * Unit tests for SmbTransportPoolImpl using JUnit 5 and Mockito */ @ExtendWith(MockitoExtension.class)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 19.2K bytes - Viewed (0) -
cmd/warm-backend.go
Remove(ctx context.Context, object string, rv remoteVersionID) error InUse(ctx context.Context) (bool, error) } const probeObject = "probeobject" // checkWarmBackend checks if tier config credentials have sufficient privileges // to perform all operations defined in the WarmBackend interface. func checkWarmBackend(ctx context.Context, w WarmBackend) error {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 4K bytes - Viewed (0) -
cmd/admin-bucket-handlers.go
} for _, op := range ops { switch op { case madmin.CredentialsUpdateType: if !globalSiteReplicationSys.isEnabled() { // credentials update is possible only in bucket replication. User will never // know the site replicator creds. tgt.Credentials = target.Credentials tgt.TargetBucket = target.TargetBucket tgt.Secure = target.Secure tgt.Endpoint = target.Endpoint }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 33.3K bytes - Viewed (0) -
cmd/kms-handlers_test.go
t.Errorf("want status code %d, got %d", http.StatusNotImplemented, rec.Code) } }) } // Test when the GlobalKMS is configured but the credentials are invalid GlobalKMS = kms.NewStub("default-test-key") for _, test := range tests { t.Run(test.name+" invalid credentials", func(t *testing.T) { req := buildKMSRequest(t, test.method, test.path, userAccessKey, userSecretKey, test.query) rec := httptest.NewRecorder()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
RenderDataUtil.register(data, "notification", fessConfig.getNotificationLogin()); saveToken(); }); } /** * Handles user login with the provided credentials. * * @param form the login form containing username and password * @return the HTML response after login attempt */ @Execute public HtmlResponse login(final LoginForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0)