- Sort Score
- Result 10 results
- Languages All
Results 1011 - 1020 of 3,753 for private (0.09 sec)
-
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
import org.eclipse.aether.RepositorySystemSession; @Named class DefaultConsumerPomBuilder implements ConsumerPomBuilder { private static final String BOM_PACKAGING = "bom"; public static final String POM_PACKAGING = "pom"; private final LifecycleBindingsInjector lifecycleBindingsInjector; @Inject @SuppressWarnings("checkstyle:ParameterNumber")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/DirectExecutorService.java
private final Object lock = new Object(); /* * Conceptually, these two variables describe the executor being in * one of three states: * - Active: shutdown == false * - Shutdown: runningTasks > 0 and shutdown == true * - Terminated: runningTasks == 0 and shutdown == true */ @GuardedBy("lock") private int runningTasks = 0; @GuardedBy("lock")
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 3.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/HashMultiset.java
HashMultiset<E> multiset = create(Multisets.inferDistinctElements(elements)); Iterables.addAll(multiset, elements); return multiset; } private HashMultiset() { super(new HashMap<E, Count>()); } private HashMultiset(int distinctElements) { super(Maps.<E, Count>newHashMapWithExpectedSize(distinctElements)); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 01 16:15:01 UTC 2024 - 3.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/JdkBackedImmutableMultiset.java
* * @author Louis Wasserman */ @GwtCompatible @ElementTypesAreNonnullByDefault final class JdkBackedImmutableMultiset<E> extends ImmutableMultiset<E> { private final Map<E, Integer> delegateMap; private final ImmutableList<Entry<E>> entries; private final long size; static <E> ImmutableMultiset<E> create(Collection<? extends Entry<? extends E>> entries) { @SuppressWarnings("unchecked")
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 21:19:52 UTC 2024 - 3.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CollectCollectors.java
EnumMapAccumulator::toImmutableMap); } @IgnoreJRERequirement // see enclosing class (whose annotation Animal Sniffer ignores here...) private static class EnumMapAccumulator<K extends Enum<K>, V> { private final BinaryOperator<V> mergeFunction; @CheckForNull private EnumMap<K, V> map = null; EnumMapAccumulator(BinaryOperator<V> mergeFunction) { this.mergeFunction = mergeFunction; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 17.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java
}; } private <Q> Q getInstance(Binding<Q> binding) { return compile(binding).get(); } private static Comparator<Binding<?>> getBindingComparator() { Comparator<Binding<?>> comparing = Comparator.comparing(Binding::getPriority); return comparing.reversed(); } private <T> boolean isPlexusBean(BeanEntry<Annotation, T> entry) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.8K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchUrlFilter.java
public static final String SESSION_ID = "sessionId"; public static final String FILTER_TYPE = "filterType"; public static final String URL = "url"; private String id; private String sessionId; private String filterType; private String url; public String getId() { return id; } public void setId(final String id) { this.id = id; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java
* * @author higa * */ public class MethodNotFoundRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3508955801981550317L; private final Class<?> targetClass; private final String methodName; private final Class<?>[] methodArgClasses; /** * {@link MethodNotFoundRuntimeException}を作成します。 * * @param targetClass
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/PerformanceTestSpec.kt
override fun channel() = "${type.channel}${if (os == Os.LINUX) "" else "-${os.name.lowercase(Locale.US)}"}-%teamcity.build.branch%" } data class FlameGraphGeneration( private val uuid: Int, private val name: String, private val scenarios: List<PerformanceScenario> ) : PerformanceTestProjectSpec { override val os: Os = Os.LINUX override fun asConfigurationId(model: CIBuildModel) =
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 3.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/IoTestCase.java
+ "[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"; private File testDir; private File tempDir; private final Set<File> filesToDelete = new HashSet<>(); @Override protected void tearDown() { for (File file : filesToDelete) { if (file.exists()) { delete(file); } } filesToDelete.clear(); } private File getTestDir() throws IOException { if (testDir != null) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 31 12:36:13 UTC 2024 - 5.6K bytes - Viewed (0)