- Sort Score
- Result 10 results
- Languages All
Results 441 - 450 of 6,678 for PUBLIC (0.06 sec)
-
src/main/java/org/codelibs/fess/validation/UriTypeValidator.java
import jakarta.validation.ConstraintDefinitionException; import jakarta.validation.ConstraintValidator; import jakarta.validation.ConstraintValidatorContext; public class UriTypeValidator implements ConstraintValidator<UriType, String> { private String[] protocols; @Override public void initialize(final UriType uriType) { protocols = switch (uriType.protocolType()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:37:12 UTC 2024 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItemTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.dict.stemmeroverride; import org.codelibs.fess.unit.UnitFessTestCase; public class StemmerOverrideItemTest extends UnitFessTestCase { public void test_new1() { final StemmerOverrideItem stemmerOverrideItem = new StemmerOverrideItem(1, "aaa", "a"); assertEquals(1, stemmerOverrideItem.getId());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java
* プロパティ名 */ public PropertyNotFoundRuntimeException(final Class<?> targetClass, final String propertyName) { super("ECL0065", asArray(targetClass.getName(), propertyName)); this.targetClass = targetClass; this.propertyName = propertyName; } /** * ターゲットクラスを返します。 * * @return ターゲットクラス */ public Class<?> getTargetClass() {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/PatternFilenameFilterTest.java
/** * Unit test for {@link PatternFilenameFilter}. * * @author Chris Nokleberg */ public class PatternFilenameFilterTest extends TestCase { public void testSyntaxException() { assertThrows(PatternSyntaxException.class, () -> new PatternFilenameFilter("(")); } public void testAccept() { File dir = new File("foo"); FilenameFilter filter = new PatternFilenameFilter("a+");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransTransactNamedPipeResponse.java
* License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/EventSpyImpl.java
@Named @Singleton public class EventSpyImpl implements EventSpy { private DefaultSessionFactory sessionFactory; @Inject EventSpyImpl(DefaultSessionFactory sessionFactory) { this.sessionFactory = sessionFactory; } @Override public void init(Context context) throws Exception {} @Override public void onEvent(Object arg) throws Exception {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
import org.codelibs.fess.es.config.exentity.KeyMatch; import org.lastaflute.web.Execute; import org.lastaflute.web.response.JsonResponse; import jakarta.annotation.Resource; /** * @author Keiichi Watanabe */ public class ApiAdminKeymatchAction extends FessApiAdminAction { private static final Logger logger = LogManager.getLogger(ApiAdminKeymatchAction.class);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java
import jakarta.annotation.Resource; public class ApiAdminRoleAction extends FessApiAdminAction { private static final Logger logger = LogManager.getLogger(ApiAdminRoleAction.class); @Resource private RoleService roleService; // GET /api/admin/role/settings // POST /api/admin/role/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
} } } return null; } public void getArtifact(Artifact artifact, ArtifactRepository repository) throws TransferFailedException, ResourceDoesNotExistException { getArtifact(artifact, repository, null, false); } public void getArtifact(Artifact artifact, List<ArtifactRepository> remoteRepositories)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenPropertiesLoader.java
import org.apache.maven.internal.impl.model.DefaultInterpolator; public class MavenPropertiesLoader { public static final String INCLUDES_PROPERTY = "${includes}"; // includes public static final String OVERRIDE_PREFIX = "maven.override."; // prefix that marks that system property should override defaults. public static void loadProperties(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.5K bytes - Viewed (0)