- Sort Score
- Result 10 results
- Languages All
Results 771 - 780 of 1,736 for unprotected (0.07 sec)
-
android/guava/src/com/google/common/graph/DirectedGraphConnections.java
Set<N> seenNodes = new HashSet<>(); return new AbstractIterator<N>() { @Override @CheckForNull protected N computeNext() { while (nodeConnections.hasNext()) { NodeConnection<N> nodeConnection = nodeConnections.next(); boolean added = seenNodes.add(nodeConnection.node);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 20 17:00:05 UTC 2024 - 18K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CloseRequest.java
/** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#createResponse(jcifs.Configuration, * jcifs.internal.smb2.ServerMessageBlock2) */ @Override protected Smb2CloseResponse createResponse ( CIFSContext tc, ServerMessageBlock2Request<Smb2CloseResponse> req ) { return new Smb2CloseResponse(tc.getConfig(), this.fileId, this.fileName); } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") public class AbstractMultisetTester<E> extends AbstractCollectionTester<E> { protected final Multiset<E> getMultiset() { return (Multiset<E>) collection; } protected void initThreeCopies() { collection = getSubjectGenerator().create(e0(), e0(), e0()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
import jakarta.annotation.Resource; public class FailureUrlService { private static final Logger logger = LogManager.getLogger(FailureUrlService.class); @Resource protected FailureUrlBhv failureUrlBhv; @Resource protected FessConfig fessConfig; public List<FailureUrl> getFailureUrlList(final FailureUrlPager failureUrlPager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 24 01:20:42 UTC 2024 - 6.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java
private final SortedMultiset<E> backingMultiset; StandardImplForwardingSortedMultiset(SortedMultiset<E> backingMultiset) { this.backingMultiset = backingMultiset; } @Override protected SortedMultiset<E> delegate() { return backingMultiset; } @Override public SortedMultiset<E> descendingMultiset() { return new StandardDescendingMultiset() { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JobProcess.java
*/ package org.codelibs.fess.util; import java.util.function.Consumer; import org.codelibs.fess.Constants; public class JobProcess { protected Process process; protected InputStreamThread inputStreamThread; public JobProcess(final Process process) { this(process, InputStreamThread.MAX_BUFFER_SIZE, null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/outside/AbstractEventBusTest.java
private @Nullable H subscriber; H getSubscriber() { return subscriber; } @Override protected void setUp() throws Exception { subscriber = createSubscriber(); EventBus bus = new EventBus(); bus.register(subscriber); bus.post(EVENT); } @Override protected void tearDown() throws Exception { subscriber = null; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 17 15:19:38 UTC 2023 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/zip/ZipFileUtilTest.java
@Override protected void parseURL(final URL u, final String spec, final int start, final int limit) { setURL(u, "zip", null, 0, null, null, spec.substring(4), null, null); } @Override protected URLConnection openConnection(final URL u) throws IOException { return null; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
import org.opensearch.index.query.QueryBuilders; public class FuzzyQueryCommand extends QueryCommand { private static final Logger logger = LogManager.getLogger(FuzzyQueryCommand.class); @Override protected String getQueryClassName() { return FuzzyQuery.class.getSimpleName(); } @Override public QueryBuilder execute(final QueryContext context, final Query query, final float boost) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
*/ public static final int NT_TRANSACT_QUERY_SECURITY_DESC = 0x6; /** * */ public static final int NT_TRANSACT_NOTIFY_CHANGE = 0x4; private final int function; protected SmbComNtTransaction ( Configuration config, int function ) { super(config, SMB_COM_NT_TRANSACT, (byte) 0); this.function = function; this.primarySetupOffset = NTT_PRIMARY_SETUP_OFFSET;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 3.9K bytes - Viewed (0)