- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 6,689 for Public (0.23 sec)
-
src/main/java/org/codelibs/fess/mylasta/creator/PagerCreator.java
import org.lastaflute.di.core.meta.impl.InstanceDefFactory; import org.lastaflute.di.naming.NamingConvention; /** * @author shinsuke */ public class PagerCreator extends ComponentCreatorImpl { public static final String SUFFIX = "Pager"; public PagerCreator(final NamingConvention namingConvention) { super(namingConvention); setNameSuffix(SUFFIX); setInstanceDef(InstanceDefFactory.SESSION);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java
public class DataStoreCrawlingException extends CrawlingAccessException { private static final long serialVersionUID = 1L; private final String url; private final boolean abort; public DataStoreCrawlingException(final String url, final String message, final Exception e) { this(url, message, e, false); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/TestCharSource.java
* * @author Colin Decker */ public class TestCharSource extends CharSource implements TestStreamSupplier { private final TestByteSource byteSource; public TestCharSource(String content, TestOption... options) { this.byteSource = new TestByteSource(content.getBytes(UTF_8), options); } @Override public boolean wasStreamOpened() { return byteSource.wasStreamOpened(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcLookupSids.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.msrpc; @SuppressWarnings ( "javadoc" ) public class MsrpcLookupSids extends lsarpc.LsarLookupSids { public MsrpcLookupSids ( LsaPolicyHandle policyHandle, jcifs.SID[] sids ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenDomain.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.msrpc; import jcifs.dcerpc.rpc; @SuppressWarnings ( "javadoc" ) public class MsrpcSamrOpenDomain extends samr.SamrOpenDomain {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/MavenException.java
* Base class for all maven exceptions. * * @since 4.0.0 */ @Experimental public class MavenException extends RuntimeException { @Serial private static final long serialVersionUID = 9027638326336093132L; public MavenException() {} public MavenException(String message) { super(message); } public MavenException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/XmlExtractor.java
return xmlTagPattern; } public Pattern getXmlEncodingPattern() { return xmlEncodingPattern; } public void setXmlEncodingPattern(final Pattern metaCharsetPattern) { xmlEncodingPattern = metaCharsetPattern; } public Pattern getXmlTagPattern() { return xmlTagPattern; } public void setXmlTagPattern(final Pattern htmlTagPattern) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SingleValueIterator.java
*/ public static <E> Iterable<E> iterable(final E value) { return () -> new SingleValueIterator<>(value); } /** * インスタンスを構築します。 * * @param value * 反復子が返す唯一の値 */ public SingleValueIterator(final E value) { this.value = value; } @Override public boolean hasNext() { return hasNext; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SecurityBlob.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: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/util/ConsoleTransferListener.java
import org.eclipse.aether.transfer.TransferResource; public class ConsoleTransferListener extends AbstractTransferListener { private PrintStream out; private Map<TransferResource, Long> downloads = new ConcurrentHashMap<>(); private int lastLength; public ConsoleTransferListener() { this(null); } public ConsoleTransferListener(PrintStream out) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.5K bytes - Viewed (0)