- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 1,736 for unprotected (0.06 sec)
-
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
public class WildcardQueryCommand extends QueryCommand { private static final Logger logger = LogManager.getLogger(WildcardQueryCommand.class); protected boolean lowercaseWildcard = true; @Override protected String getQueryClassName() { return WildcardQuery.class.getSimpleName(); } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; public class JobLogService { @Resource protected JobLogBhv jobLogBhv; @Resource protected FessConfig fessConfig; protected long expiredJobInterval = 2 * 60 * 60 * 1000L; // 2hours public List<JobLog> getJobLogList(final JobLogPager jobLogPager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; public class UserService { @Resource protected UserBhv userBhv; @Resource protected FessLoginAssist fessLoginAssist; @Resource protected FessConfig fessConfig; public List<User> getUserList(final UserPager userPager) { final PagingResultBean<User> userList = userBhv.selectPage(cb -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K bytes - Viewed (0) -
guava/src/com/google/common/hash/MacHashFunction.java
private MacHasher(Mac mac) { this.mac = mac; } @Override protected void update(byte b) { checkNotDone(); mac.update(b); } @Override protected void update(byte[] b) { checkNotDone(); mac.update(b); } @Override protected void update(byte[] b, int off, int len) { checkNotDone(); mac.update(b, off, len);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 15 22:31:55 UTC 2022 - 3.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java
public static final class FloatsAsListGenerator extends TestFloatListGenerator { @Override protected List<Float> create(Float[] elements) { return asList(elements); } } public static final class FloatsAsListHeadSubListGenerator extends TestFloatListGenerator { @Override protected List<Float> create(Float[] elements) { Float[] suffix = {Float.MIN_VALUE, Float.MAX_VALUE};
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jun 01 09:32:35 UTC 2023 - 5.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java
public static final class FloatsAsListGenerator extends TestFloatListGenerator { @Override protected List<Float> create(Float[] elements) { return asList(elements); } } public static final class FloatsAsListHeadSubListGenerator extends TestFloatListGenerator { @Override protected List<Float> create(Float[] elements) { Float[] suffix = {Float.MIN_VALUE, Float.MAX_VALUE};
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jun 01 09:32:35 UTC 2023 - 5.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/IntArrayAsListTest.java
public static final class IntsAsListGenerator extends TestIntegerListGenerator { @Override protected List<Integer> create(Integer[] elements) { return asList(elements); } } public static final class IntsAsListHeadSubListGenerator extends TestIntegerListGenerator { @Override protected List<Integer> create(Integer[] elements) { Integer[] suffix = {Integer.MIN_VALUE, Integer.MAX_VALUE};
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jun 01 09:32:35 UTC 2023 - 5.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojoExecutionException.java
* under the License. */ package org.apache.maven.plugin; /** * Base exception. * */ public abstract class AbstractMojoExecutionException extends Exception { protected Object source; protected String longMessage; public AbstractMojoExecutionException(String message) { super(message); } public AbstractMojoExecutionException(String message, Throwable cause) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/kms/README.md
Encrypted : X-Amz-Server-Side-Encryption: AES256 ``` ## Encrypted Private Key MinIO supports encrypted KES client private keys. Therefore, you can use an password-protected private keys for `MINIO_KMS_KES_KEY_FILE`. When using password-protected private keys for accessing KES you need to provide the password via: ``` export MINIO_KMS_KES_KEY_PASSWORD=<your-password> ```
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 7.1K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java
// TODO(cpovirk): consider clearing this.delegate for (Listener listener : listeners) { listener.execute(); } listeners = null; } protected void afterDone() {} @Override protected final Throwable tryInternalFastPathGetFailure() { if (this instanceof Trusted) { return state == State.FAILURE ? throwable : null; } return null; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 19:37:41 UTC 2024 - 12.3K bytes - Viewed (0)