- Sort Score
- Result 10 results
- Languages All
Results 3301 - 3310 of 7,602 for _class (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/plugin/InstallForm.java
*/ package org.codelibs.fess.app.web.admin.plugin; import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; public class InstallForm { @Required @Size(max = 400) public String id; public MultipartFormFile jarFile;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 949 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/LocalUserCredential.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.base.login; import org.lastaflute.web.login.credential.UserPasswordCredential; public class LocalUserCredential extends UserPasswordCredential implements FessCredential { public LocalUserCredential(final String user, final String password) { super(user, password); } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1021 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/CrudMode.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web; public class CrudMode { public static final int LIST = 0; public static final int CREATE = 1; public static final int EDIT = 2; public static final int DELETE = 3;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 937 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/EditForm.java
package org.codelibs.fess.app.web.admin.dict.mapping; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * @author nullpos */ public class EditForm extends CreateForm { @Required @ValidateTypeFailure public Long id; public String getDisplayId() { return dictId + ":" + id; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1007 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/UploadForm.java
package org.codelibs.fess.app.web.admin.dict.mapping; import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * @author nullpos * @author ma2tani */ public class UploadForm { @Required public String dictId; @Required public MultipartFormFile charMappingFile;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 960 bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TreeBasedTableRowTest.java
package com.google.common.collect; import com.google.common.annotations.GwtCompatible; import com.google.common.collect.TableCollectionTest.RowTests; @GwtCompatible @ElementTypesAreNonnullByDefault public class TreeBasedTableRowTest extends RowTests { public TreeBasedTableRowTest() { super(false, true, true, true, true); } @Override Table<Character, String, Integer> makeTable() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 19 20:34:55 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.job; public abstract class JobExecutor { protected ShutdownListener shutdownListener; public abstract Object execute(String scriptType, String script); public void shutdown() { shutdownListener.onShutdown(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/exception/SuggesterException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.exception; public class SuggesterException extends RuntimeException { private static final long serialVersionUID = 1L; public SuggesterException(final String msg) { super(msg); }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
@Override public long read() { return 0; } }; // We use a holder class to delay initialization: https://github.com/google/guava/issues/6566 private static final class LoggerHolder { static final Logger logger = Logger.getLogger(CacheBuilder.class.getName()); } static final int UNSET_INT = -1; boolean strictParsing = true;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 52K bytes - Viewed (0) -
docs/en/docs/tutorial/security/simple-oauth2.md
/// info The `OAuth2PasswordRequestForm` is not a special class for **FastAPI** as is `OAuth2PasswordBearer`. `OAuth2PasswordBearer` makes **FastAPI** know that it is a security scheme. So it is added that way to OpenAPI. But `OAuth2PasswordRequestForm` is just a class dependency that you could have written yourself, or you could have declared `Form` parameters directly.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 12.3K bytes - Viewed (0)