Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for testUser1 (0.14 sec)

  1. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            return OptionalThing.of(new FessUserBean(new TestUser(name, permissions)));
        }
    
        static class TestUser implements FessUser {
    
            private static final long serialVersionUID = 1L;
    
            private String name;
    
            private String[] permissions;
    
            TestUser(String name, String[] permissions) {
                this.name = name;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

            and:
            module.jar.expectPut('testuser', 'password')
            module.jar.sha1.expectPut('testuser', 'password')
            module.jar.sha256.expectPut('testuser', 'password')
            module.jar.sha512.expectPut('testuser', 'password')
            module.ivy.expectPut('testuser', 'password')
            module.ivy.sha1.expectPut('testuser', 'password')
            module.ivy.sha256.expectPut('testuser', 'password')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java

            server.start();
            return server;
        }
    
        public void test_doGet_root_dir() throws FtpException {
            FtpServer server = null;
            try {
                String username = "testuser";
                String password = "testpass";
                server = startFtpServer(FTP_PORT, username, password);
                Map<String, Object> params = new HashMap<String, Object>();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/helpers_test.go

    			image{
    				name:     "test-image-ref2",
    				uid:      (*runtimeapi.Int64Value)(nil),
    				username: "testUser",
    			},
    			imageUserValues{
    				uid:      (*int64)(nil),
    				username: "testUser",
    				err:      nil,
    			},
    		},
    		{
    			"image with uid should return (*int64, \"\", nil)",
    			image{
    				name: "test-image-ref3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

    import static org.gradle.test.fixtures.server.http.AuthScheme.NTLM
    
    class HttpAuthenticationDependencyResolutionIntegrationTest extends AbstractHttpDependencyResolutionTest {
        static String badCredentials = "credentials{username 'testuser'; password 'bad'}"
        ResolveFailureTestFixture failedResolve = new ResolveFailureTestFixture(buildFile)
    
        def setup() {
            // by setting this to >1, we assert that an authentication error is NOT going to cause retries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
Back to top