Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addchain (0.08 sec)

  1. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            TestAuthenticationChain chain2 = new TestAuthenticationChain();
            TestAuthenticationChain chain3 = new TestAuthenticationChain();
    
            authenticationManager.addChain(chain1);
            authenticationManager.addChain(chain2);
            authenticationManager.addChain(chain3);
    
            authenticationManager.insert(user);
    
            assertEquals(1, chain1.updateCallCount);
            assertEquals(1, chain2.updateCallCount);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  2. src/main/resources/app.xml

    	<component name="userInfoHelper" class="org.codelibs.fess.helper.UserInfoHelper">
    	</component>
    	<component name="authenticationManager" class="org.codelibs.fess.auth.AuthenticationManager">
    		<!--
    		<postConstruct name="addChain">
    			<arg>
    				<component class="org.codelibs.fess.auth.chain.CommandChain">
    					<property name="updateCommand">[
    					"/usr/sbin/htpasswd",
    					"-b",
    					"/tmp/test.txt",
    					"$USERNAME",
    					"$PASSWORD"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Nov 19 02:22:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

                u = chain.load(u);
            }
            return u;
        }
    
        /**
         * Adds an authentication chain to the manager.
         * @param chain The authentication chain to add.
         */
        public void addChain(final AuthenticationChain chain) {
            chains = ArrayUtils.addAll(chains, chain);
        }
    
        /**
         * Returns a stream of authentication chains.
         * @return A stream wrapper of the authentication chains.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  4. lib/fips140/v1.0.0.zip

    golang.org/fips140@v1.0.0/fips140/v1.0.0/nistec/fiat/README The code in this package was autogenerated by the fiat-crypto project at version v0.0.9 from a formally verified model, and by the addchain project at a recent tip version. docker build -t fiat-crypto:v0.0.9 . go install github.com/mmcloughlin/addchain/cmd/addchain@v0.3.1-0.20211027081849-6a7d3decbe08 ../../../.bin/go run generate.go fiat-crypto code comes under the following license. Copyright (c) 2015-2020 The fiat-crypto Authors. All rights reserved....
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top