Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for myPassword (0.09 sec)

  1. cmd/auth-handler_test.go

    	}{
    		{"", "", ErrInvalidAccessKeyID},
    		{"admin", "", ErrSignatureDoesNotMatch},
    		{"admin", "wrongpassword", ErrSignatureDoesNotMatch},
    		{"wronguser", "mypassword", ErrInvalidAccessKeyID},
    		{"", "mypassword", ErrInvalidAccessKeyID},
    		{"admin", "mypassword", ErrNone},
    	}
    
    	for i, testCase := range testCases {
    		req := mustNewRequest(http.MethodGet, "http://localhost:9000/", 0, nil, t)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    systemProp.gradle.wrapperUser=myuser
    systemProp.gradle.wrapperPassword=mypassword
    ----
    
    === System properties reference
    
    For a quick reference, the following are _common_ system properties:
    
    `gradle.wrapperUser=(myuser)`:: Specify username to download Gradle distributions <<gradle_wrapper.adoc#sec:authenticated_download,from servers using HTTP Basic Authentication>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            and:
            proxyServer.requestCount == 1
        }
    
        def "downloads wrapper via authenticated proxy"() {
            given:
            proxyServer.start('my_user', 'my_password')
    
            and:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(server.uri.toString())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. cmd/signature-v4-utils_test.go

    	_, _, s3Err = checkKeyValid(req, "does-not-exist")
    	if s3Err != ErrInvalidAccessKeyID {
    		t.Fatalf("Expected error 'ErrInvalidAccessKeyID', found %v", s3Err)
    	}
    
    	ucreds, err := auth.CreateCredentials("myuser1", "mypassword1")
    	if err != nil {
    		t.Fatalf("unable create credential, %s", err)
    	}
    
    	_, err = globalIAMSys.CreateUser(ctx, ucreds.AccessKey, madmin.AddOrUpdateUserReq{
    		SecretKey: ucreds.SecretKey,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top