- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 1,538 for complements (0.05 sec)
-
src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfigWrapper.java
*/ package org.codelibs.fess.es.config.exentity; import java.util.Map; import java.util.function.Supplier; import org.codelibs.fess.crawler.client.CrawlerClientFactory; public class CrawlingConfigWrapper implements CrawlingConfig { private final CrawlingConfig crawlingConfig; public CrawlingConfigWrapper(final CrawlingConfig crawlingConfig) { this.crawlingConfig = crawlingConfig; } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetFeature.java
* Optional features of classes derived from {@link Multiset}. * * @author Louis Wasserman */ @SuppressWarnings("rawtypes") // maybe avoidable if we rework the whole package? @GwtCompatible public enum MultisetFeature implements Feature<Multiset> { /** * Indicates that elements from {@code Multiset.entrySet()} update to reflect changes in the * backing multiset. */ ENTRIES_ARE_VIEWS; @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/NearestConflictResolver.java
* declaration that has the least transitive steps away from the project being built. * * @since 3.0 */ @Named("nearest") @Singleton @Deprecated public class NearestConflictResolver implements ConflictResolver { // ConflictResolver methods ----------------------------------------------- /*
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Mojo.java
* * @since 4.0.0 */ @Experimental @FunctionalInterface @Consumer @ThreadSafe public interface Mojo { /** * Perform whatever build-process behavior this {@code Mojo} implements. * This is the main trigger for the {@code Mojo} inside the Maven system, * and allows the {@code Mojo} to communicate errors. * * @throws MojoException if a problem occurs */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Aug 26 13:14:03 UTC 2024 - 1.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmRequest.java
* under the License. */ package org.apache.maven.classrealm; import java.util.List; import java.util.Map; /** */ class DefaultClassRealmRequest implements ClassRealmRequest { private final RealmType type; private final ClassLoader parent; private final List<String> parentImports; private final Map<String, ClassLoader> foreignImports;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-toolchain-model/src/main/java/org/apache/maven/toolchain/model/BaseObject.java
* under the License. */ package org.apache.maven.toolchain.model; import java.io.Serializable; import static java.util.Objects.requireNonNull; public abstract class BaseObject implements Serializable, Cloneable { protected transient ChildrenTracking childrenTracking; protected Object delegate; public BaseObject() {} public BaseObject(Object delegate, BaseObject parent) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/SortedMultisets.java
@SuppressWarnings("JdkObsolete") // TODO(b/6160855): Switch GWT emulations to NavigableSet. static class ElementSet<E extends @Nullable Object> extends Multisets.ElementSet<E> implements SortedSet<E> { @Weak private final SortedMultiset<E> multiset; ElementSet(SortedMultiset<E> multiset) { this.multiset = multiset; } @Override final SortedMultiset<E> multiset() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 01 17:18:04 UTC 2021 - 5.6K bytes - Viewed (0) -
soft_delete.go
"reflect" "github.com/jinzhu/now" "gorm.io/gorm/clause" "gorm.io/gorm/schema" ) type DeletedAt sql.NullTime // Scan implements the Scanner interface. func (n *DeletedAt) Scan(value interface{}) error { return (*sql.NullTime)(n).Scan(value) } // Value implements the driver Valuer interface. func (n DeletedAt) Value() (driver.Value, error) { if !n.Valid { return nil, nil } return n.Time, nil }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Feb 01 06:40:55 UTC 2023 - 4.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/MapMakerInternalMap.java
class MapMakerInternalMap< K, V, E extends MapMakerInternalMap.InternalEntry<K, V, E>, S extends MapMakerInternalMap.Segment<K, V, E, S>> extends AbstractMap<K, V> implements ConcurrentMap<K, V>, Serializable { /* * The basic strategy is to subdivide the table among Segments, each of which itself is a
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 90.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/UriTypeValidator.java
import jakarta.validation.ConstraintDefinitionException; import jakarta.validation.ConstraintValidator; import jakarta.validation.ConstraintValidatorContext; public class UriTypeValidator implements ConstraintValidator<UriType, String> { private String[] protocols; @Override public void initialize(final UriType uriType) { protocols = switch (uriType.protocolType()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:37:12 UTC 2024 - 2.3K bytes - Viewed (0)