- Sort Score
- Result 10 results
- Languages All
Results 631 - 640 of 6,993 for public (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapSet.java
} public void removeSitemap(final Sitemap sitemap) { sitemapList.remove(sitemap); } public Sitemap[] getSitemaps() { return sitemapList.toArray(new Sitemap[sitemapList.size()]); } public void setType(final String type) { this.type = type; } public boolean isUrlSet() { return URLSET.equals(type); } public boolean isIndex() {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/ExecutionListTest.java
this.countDownLatch = countDownLatch; } @Override public void run() { countDownLatch.countDown(); } } public void testExceptionsCaught() { list.add(THROWING_RUNNABLE, directExecutor()); list.execute(); list.add(THROWING_RUNNABLE, directExecutor()); } public void testNulls() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 4.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/SourceSinkTester.java
this.caseDesc = checkNotNull(caseDesc); } @Override public String getName() { return super.getName() + " [" + suiteName + " [" + caseDesc + "]]"; } protected static ImmutableList<String> getLines(final String string) { try { return new CharSource() { @Override public Reader openStream() throws IOException { return new StringReader(string); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 27 18:57:08 UTC 2022 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java
import org.codelibs.fess.dict.DictionaryItem; import jakarta.annotation.PostConstruct; public class ProtwordsCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(ProtwordsCreator.class); public ProtwordsCreator() { super("protwords.*\\.txt"); } @PostConstruct public void register() { if (logger.isInfoEnabled()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
import org.codelibs.fess.dict.DictionaryItem; import jakarta.annotation.PostConstruct; public class SynonymCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(SynonymCreator.class); public SynonymCreator() { super("synonym.*\\.txt"); } @PostConstruct public void register() { if (logger.isInfoEnabled()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/CertificatePinning.java
import okhttp3.Request; import okhttp3.Response; public final class CertificatePinning { private final OkHttpClient client = new OkHttpClient.Builder() .certificatePinner( new CertificatePinner.Builder() .add("publicobject.com", "sha256/Vjs8r4z+80wjNcr1YKepWQboSIRi63WsWXhIMN+eWys=") .build()) .build(); public void run() throws Exception {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 08 21:30:01 UTC 2019 - 1.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FileBackedOutputStreamAndroidIncompatibleTest.java
* Android-incompatible tests for {@link FileBackedOutputStream}. * * @author Chris Nokleberg */ @AndroidIncompatible // Finalization probably just doesn't happen fast enough? public class FileBackedOutputStreamAndroidIncompatibleTest extends IoTestCase { public void testFinalizeDeletesFile() throws Exception { byte[] data = newPreFilledByteArray(100); FileBackedOutputStream out = new FileBackedOutputStream(0, true);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jun 08 21:20:23 UTC 2023 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlWriterException.java
/** * An exception thrown during the writing of an xml file. * * @since 4.0.0 */ @Experimental public class XmlWriterException extends MavenException { private final Location location; /** * @param message the message for the exception * @param e the exception itself */ public XmlWriterException(String message, Location location, Exception e) { super(message, e);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Mar 25 10:50:01 UTC 2024 - 1.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionSchemeProvider.java
*/ @Singleton @Named @Deprecated(since = "4.0.0") public final class DefaultVersionSchemeProvider implements Provider<VersionScheme> { private final GenericVersionScheme genericVersionScheme; public DefaultVersionSchemeProvider() { this.genericVersionScheme = new GenericVersionScheme(); } @Override public VersionScheme get() { return genericVersionScheme; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
internal/config/lambda/event/errors.go
// it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program 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 Affero General Public License for more details. //
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 07 16:12:41 UTC 2023 - 1.3K bytes - Viewed (0)