- Sort Score
- Result 10 results
- Languages All
Results 571 - 580 of 2,177 for projectId (0.06 sec)
-
guava-tests/test/com/google/common/collect/LinkedHashMultimapTest.java
@Override protected Iterator<Integer> newTargetIterator() { multimap = LinkedHashMultimap.create(); multimap.putAll("foo", asList(2, 3, 4)); multimap.putAll("bar", asList(5, 6)); multimap.putAll("foo", asList(7, 8)); return multimap.get("foo").iterator(); } @Override protected void verify(List<Integer> elements) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
import jakarta.annotation.Resource; public class WebConfigService extends FessAppService { @Resource protected WebConfigBhv webConfigBhv; @Resource protected WebAuthenticationBhv webAuthenticationBhv; @Resource protected RequestHeaderBhv requestHeaderBhv; @Resource protected FessConfig fessConfig; public List<WebConfig> getWebConfigList(final WebConfigPager webConfigPager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TreeBasedTableRowMapInterfaceTest.java
super(false, false, true, true, true); } @Override protected SortedMap<String, String> makeEmptyMap() { TreeBasedTable<String, String, String> table = TreeBasedTable.create(); table.put("a", "b", "c"); table.put("c", "b", "a"); table.put("a", "a", "d"); return table.row("b"); } @Override protected SortedMap<String, String> makePopulatedMap() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Mar 29 15:15:31 UTC 2022 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComRename.java
} @Override protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) { SMBUtil.writeInt2(this.searchAttributes, dst, dstIndex); return 2; } @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ForwardingListenableFuture.java
public abstract class ForwardingListenableFuture<V extends @Nullable Object> extends ForwardingFuture<V> implements ListenableFuture<V> { /** Constructor for use by subclasses. */ protected ForwardingListenableFuture() {} @Override protected abstract ListenableFuture<? extends V> delegate(); @Override public void addListener(Runnable listener, Executor exec) { delegate().addListener(listener, exec); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Mar 04 12:23:41 UTC 2022 - 2.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptParser.java
context.extensions, context.options); } @Override protected List<EncryptOptions> parseCliOptions(LocalContext context) throws ParserException { return Collections.singletonList(parseEncryptCliOptions(context.parserRequest.args())); } protected CommonsCliEncryptOptions parseEncryptCliOptions(List<String> args) throws ParserException { try {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSnapshotMetadata.java
abstract class MavenSnapshotMetadata extends MavenMetadata { static final String SNAPSHOT = "SNAPSHOT"; protected final Collection<Artifact> artifacts = new ArrayList<>(); protected MavenSnapshotMetadata(Metadata metadata, Path path, Date timestamp) { super(metadata, path, timestamp); } protected static Metadata createRepositoryMetadata(Artifact artifact) { Metadata metadata = new Metadata();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
} protected class ProtwordsUpdater implements Closeable { protected boolean isCommit = false; protected File newFile; protected Writer writer; protected ProtwordsItem item; protected ProtwordsUpdater(final ProtwordsItem newItem) { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
} protected class SynonymUpdater implements Closeable { protected boolean isCommit = false; protected File newFile; protected Writer writer; protected StopwordsItem item; protected SynonymUpdater(final StopwordsItem newItem) { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
private static final Logger logger = LogManager.getLogger(NotificationHelper.class); protected static final char LF = '\n'; public void send(final CardView cardView, final SMailPostingDiscloser discloser) { sendToSlack(cardView, discloser); sendToGoogleChat(cardView, discloser); } protected void sendToSlack(final CardView cardView, final SMailPostingDiscloser discloser) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0)