- Sort Score
- Result 10 results
- Languages All
Results 2291 - 2300 of 6,993 for public (0.05 sec)
-
android/guava/src/com/google/common/io/LittleEndianDataInputStream.java
@Override @DoNotCall("Always throws UnsupportedOperationException") public String readLine() { throw new UnsupportedOperationException("readLine is not supported"); } @Override public void readFully(byte[] b) throws IOException { ByteStreams.readFully(this, b); } @Override public void readFully(byte[] b, int off, int len) throws IOException {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed May 17 14:35:11 UTC 2023 - 7.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/MultisetSetCountConditionallyTester.java
} } // Negative oldCount. @CollectionFeature.Require(SUPPORTS_ADD) public void testSetCountConditional_negativeOldCount_addSupported() { assertSetCountNegativeOldCount(); } @CollectionFeature.Require(absent = SUPPORTS_ADD) public void testSetCountConditional_negativeOldCount_addUnsupported() { try { assertSetCountNegativeOldCount();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 3.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/escape/EscapersTest.java
/** @author David Beaumont */ @GwtCompatible public class EscapersTest extends TestCase { public void testNullEscaper() throws IOException { Escaper escaper = Escapers.nullEscaper(); EscaperAsserts.assertBasic(escaper); String s = "\0\n\t\\az09~\uD800\uDC00\uFFFF"; assertEquals("null escaper should have no effect", s, escaper.escape(s)); } public void testBuilderInitialStateNoReplacement() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 3.8K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadata.java
} } @Deprecated @Override public MavenMetadata setFile(File file) { return new PluginsMetadata(pluginInfo, file.toPath(), timestamp); } @Override public MavenMetadata setPath(Path path) { return new PluginsMetadata(pluginInfo, path, timestamp); } @Override public String getGroupId() { return pluginInfo.groupId; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
docs/tls/kubernetes/README.md
```yaml volumes: - name: secret-volume secret: secretName: tls-ssl-minio items: - key: public.crt path: public.crt - key: private.key path: private.key - key: public.crt path: CAs/public.crt ``` Note that the `secretName` should be same as the secret name created in previous step. Then add the below section under
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/BadWordSettings.java
import org.codelibs.fess.suggest.exception.SuggestSettingsException; import org.opensearch.client.Client; import org.opensearch.core.common.Strings; public class BadWordSettings { private static final Logger logger = LogManager.getLogger(BadWordSettings.class); public static final String BAD_WORD_SETTINGD_KEY = "badword"; protected ArraySettings arraySettings; protected static String[] defaultWords = null;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/math/PairedStats.java
} /** Returns the number of pairs in the dataset. */ public long count() { return xStats.count(); } /** Returns the statistics on the {@code x} values alone. */ public Stats xStats() { return xStats; } /** Returns the statistics on the {@code y} values alone. */ public Stats yStats() { return yStats; } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 17:02:53 UTC 2023 - 12.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java
return properties; } @Override public void applyResumptionData(MavenExecutionRequest request, MavenProject rootProject) { Properties properties = loadResumptionFile(Paths.get(rootProject.getBuild().getDirectory())); applyResumptionProperties(request, properties); } @Override public void removeResumptionData(MavenProject rootProject) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CaseInsensitiveMap.java
*/ public CaseInsensitiveMap(final int capacity) { super(capacity); } /** * キーが含まれているかどうかを返します。 * * @param key * キー * @return キーが含まれているかどうか */ public boolean containsKey(final String key) { return super.containsKey(convertKey(key)); } @Override public V get(final Object key) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
import org.dbflute.optional.OptionalEntity; public class ProtwordsFile extends DictionaryFile<ProtwordsItem> { private static final String PROTWORDS = "protwords"; List<ProtwordsItem> protwordsItemList; public ProtwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return PROTWORDS; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0)