- Sort Score
- Result 10 results
- Languages All
Results 1161 - 1170 of 2,072 for protected (0.15 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java
} catch (LookupException e) { throw new MavenException("The PluginContext is only available during a mojo execution", e); } } protected Session newSession(RepositorySystemSession repoSession, List<RemoteRepository> repositories) { final MavenSession ms = nonNull(getMavenSession()); final MavenSession mss;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryAdapterIterator.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/ValueHolder.java
*/ package org.codelibs.core.misc; /** * 値を保持するクラスです。 * * @author koichik * @param <T> * 値の型 */ public class ValueHolder<T> { /** 値 */ protected T value; /** * インスタンスを構築します。 */ public ValueHolder() { } /** * インスタンスを構築します。 * * @param value * 値 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/UnmodifiableRowSortedTableRowTest.java
@Override Table<Character, String, Integer> makeTable() { RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); return unmodifiableRowSortedTable(table); } @Override protected Map<String, Integer> makePopulatedMap() { RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); table.put('a', "one", 1); table.put('a', "two", 2); table.put('a', "three", 3);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/UnmodifiableTableColumnMapTest.java
} @Override Table<Integer, String, Character> makeTable() { Table<Integer, String, Character> original = HashBasedTable.create(); return unmodifiableTable(original); } @Override protected Map<String, Map<Integer, Character>> makePopulatedMap() { Table<Integer, String, Character> table = HashBasedTable.create(); table.put(1, "foo", 'a'); table.put(1, "bar", 'b'); table.put(3, "foo", 'c');
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/ContentLengthHelperTest.java
* */ public class ContentLengthHelperTest extends PlainTestCase { private static long DEFAULT_MAX_LENGTH = 10L * 1024L * 1024L; public ContentLengthHelper contentLengthHelper; @Override protected void setUp() throws Exception { super.setUp(); StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("contentLengthHelper", ContentLengthHelper.class);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2K bytes - Viewed (0) -
build-logic/documentation/src/test/resources/org/gradle/test/GroovyClass.groovy
*/ final String readOnlyGroovyProp /** * An array property. */ def String[] arrayProp private def ignoreMe1; public int ignoreMe2; protected int ignoreMe3; static String ignoreMe4; /** * A read-only property. */ def getReadOnly() { 'value' } /** * A property. */
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 915 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
@Resource protected DynamicProperties systemProperties; // =================================================================================== // Hook // ====== @Override protected void setupHtmlData(final ActionRuntime runtime) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java
} protected CacheKey newCacheKey( Artifact artifact, boolean resolveManagedVersions, ArtifactRepository localRepository, List<ArtifactRepository> remoteRepositories) { return new CacheKey(artifact, resolveManagedVersions, localRepository, remoteRepositories); } protected void put(CacheKey cacheKey, ResolutionGroup result) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java
RuntimeException exception = new RuntimeException(); T proxy = Reflection.newProxy( interfaceType, new AbstractInvocationHandler() { @Override protected Object handleInvocation(Object p, Method m, @Nullable Object[] args) throws Throwable { throw exception; } }); T wrapper = wrapperFunction.apply(proxy);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 9.1K bytes - Viewed (0)