- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 3,070 for extender (0.05 sec)
-
src/test/java/org/codelibs/fess/test/net/protocol/xxx3/Handler.java
*/ package org.codelibs.fess.test.net.protocol.xxx3; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; public class Handler extends URLStreamHandler { public static final String PROTOCOL_TYPE = "test"; @Override protected URLConnection openConnection(URL u) throws IOException { return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Jun 18 00:44:11 UTC 2024 - 1007 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java
*/ package org.codelibs.fess.util; import org.codelibs.fess.unit.UnitFessTestCase; import org.lastaflute.web.response.render.RenderData; public class RenderDataUtilTest extends UnitFessTestCase { public void test_register() { RenderData data = new RenderData(); RenderDataUtil.register(data, "key1", null); assertNull(data.getDataMap().get("key1"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.1K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/InvalidVersionSpecificationException.java
* under the License. */ package org.apache.maven.artifact.versioning; /** * Occurs when a version is invalid. * */ public class InvalidVersionSpecificationException extends Exception { public InvalidVersionSpecificationException(String message) { super(message); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PathScopeRegistry.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.api.services; import org.apache.maven.api.PathScope;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Feb 05 09:42:51 UTC 2024 - 968 bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/DuplicateParameterException.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin.descriptor; /** * DuplicateParameterException */ public class DuplicateParameterException extends InvalidPluginDescriptorException { public DuplicateParameterException(String message) { super(message); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolatorTest.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.model.interpolation; public class StringVisitorModelInterpolatorTest extends AbstractModelInterpolatorTest { protected ModelInterpolator createInterpolator() { return new StringVisitorModelInterpolator(null, null, bd -> true); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterChainTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.converter; import junit.framework.TestCase; public class ReadingConverterChainTest extends TestCase { public void test_convert() throws Exception { /* * TODO ReadingConverterChain chain = new ReadingConverterChain(); chain.addConverter(new KatakanaConverter());
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/SynchronizedTableTest.java
assertTrue(Thread.holdsLock(mutex)); return delegate.put(rowKey, columnKey, value); } @Override public void putAll(Table<? extends R, ? extends C, ? extends V> table) { assertTrue(Thread.holdsLock(mutex)); delegate.putAll(table); } @Override public @Nullable V remove(Object rowKey, Object columnKey) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 06 17:23:04 UTC 2024 - 4.6K bytes - Viewed (0) -
android/guava/src/com/google/common/io/MultiReader.java
* * @author Bin Zhu * @since 1.0 */ @J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault class MultiReader extends Reader { private final Iterator<? extends CharSource> it; @CheckForNull private Reader current; MultiReader(Iterator<? extends CharSource> readers) throws IOException { this.it = readers; advance(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 28 20:13:02 UTC 2023 - 2.4K bytes - Viewed (0) -
common/config/sass-lint.yml
bem-depth: 2 border-zero: 2 brace-style: 2 class-name-format: 2 clean-import-paths: 2 declarations-before-nesting: 2 empty-args: 2 empty-line-between-blocks: 2 extends-before-declarations: 2 extends-before-mixins: 2 final-newline: 2 force-attribute-nesting: 0 force-element-nesting: 0 force-pseudo-nesting: 0 function-name-format: 2 hex-length: 0 hex-notation: 2
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 11 23:32:21 UTC 2019 - 2K bytes - Viewed (0)