- Sort Score
- Result 10 results
- Languages All
Results 1221 - 1230 of 1,668 for complements (0.06 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java
/** * Collects settings that control building of effective models. * * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public class DefaultModelBuildingRequest implements ModelBuildingRequest { private Model fileModel; private Path pomPath; private ModelSource modelSource; private int validationLevel = VALIDATION_LEVEL_STRICT;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.6K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java
*/ @Singleton @Named(UserPropertiesArtifactRelocationSource.NAME) @Priority(50) @Deprecated(since = "4.0.0") public final class UserPropertiesArtifactRelocationSource implements MavenArtifactRelocationSource { public static final String NAME = "userProperties"; private static final Logger LOGGER = LoggerFactory.getLogger(UserPropertiesArtifactRelocationSource.class);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java
import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.util.ParameterUtil; /** * @author FreeGen */ public class WebConfig extends BsWebConfig implements CrawlingConfig { private static final long serialVersionUID = 1L; protected volatile Pattern[] includedDocUrlPatterns; protected volatile Pattern[] excludedDocUrlPatterns;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
import jcifs.internal.smb1.com.SmbComClose; import jcifs.internal.smb2.create.Smb2CloseRequest; import jcifs.util.Hexdump; /** * @author mbechler * */ class SmbFileHandleImpl implements SmbFileHandle { private static final Logger log = LoggerFactory.getLogger(SmbFileHandleImpl.class); private final Configuration cfg; private final int fid; private final byte[] fileId;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (1) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
DummyValueReference<K, V> valueRef = DummyValueReference.create(value); entry.setValueReference(valueRef); return entry; } static class DummyEntry<K, V> implements ReferenceEntry<K, V> { private @Nullable K key; private final int hash; private final ReferenceEntry<K, V> next; public DummyEntry(K key, int hash, ReferenceEntry<K, V> next) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 110.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/LocalCacheTest.java
DummyValueReference<K, V> valueRef = DummyValueReference.create(value); entry.setValueReference(valueRef); return entry; } static class DummyEntry<K, V> implements ReferenceEntry<K, V> { private @Nullable K key; private final int hash; private final ReferenceEntry<K, V> next; public DummyEntry(K key, int hash, ReferenceEntry<K, V> next) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 112.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/Helpers.java
for (int i = 0; i < position; i++) { iterator.next(); } return iterator.next(); } private static class EntryComparator<K extends @Nullable Object, V extends @Nullable Object> implements Comparator<Entry<K, V>> { final @Nullable Comparator<? super K> keyComparator; public EntryComparator(@Nullable Comparator<? super K> keyComparator) { this.keyComparator = keyComparator; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 17.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java
Iterator<String> iterator = asList("a", null, "b").iterator(); assertThrows(NullPointerException.class, () -> ImmutableSortedMultiset.copyOf(iterator)); } private static class CountingIterable implements Iterable<String> { int count = 0; @Override public Iterator<String> iterator() { count++; return asList("a", "b", "a").iterator(); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 22.7K bytes - Viewed (0) -
guava/src/com/google/common/reflect/Invokable.java
* constructor. * @author Ben Yu * @since 14.0 (no longer implements {@link AccessibleObject} or {@code GenericDeclaration} since * 31.0) */ @ElementTypesAreNonnullByDefault public abstract class Invokable<T, R> implements AnnotatedElement, Member { private final AccessibleObject accessibleObject; private final Member member;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 19.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ListsTest.java
private static final class RemoveFirstFunction implements Function<String, String>, Serializable { @Override public String apply(String from) { return (from.length() == 0) ? from : from.substring(1); } } private static class SomeIterable implements Iterable<Integer>, Serializable { @Override public Iterator<Integer> iterator() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 35K bytes - Viewed (0)