- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 679 for visited (0.04 sec)
-
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
} @Override public void saveSession(final String sessionId) { // TODO use cache } @Override public boolean visited(final OpenSearchUrlQueue urlQueue) { final String url = urlQueue.getUrl(); if (StringUtil.isBlank(url)) { if (logger.isDebugEnabled()) { logger.debug("URL is a blank: {}", url);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 13.4K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
p.recordTypedefs1(dt.Type, pos, visited) } case *dwarf.PtrType: p.recordTypedefs1(dt.Type, pos, visited) case *dwarf.ArrayType: p.recordTypedefs1(dt.Type, pos, visited) case *dwarf.QualType: p.recordTypedefs1(dt.Type, pos, visited) case *dwarf.FuncType: p.recordTypedefs1(dt.ReturnType, pos, visited) for _, a := range dt.ParamType { p.recordTypedefs1(a, pos, visited)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/HashBiMap.java
private int indexToRemove = ABSENT; private int expectedModCount = biMap.modCount; // Calls to setValue on inverse entries can move already-visited entries to the end. // Make sure we don't visit those. private int remaining = biMap.size; private void checkForComodification() { if (biMap.modCount != expectedModCount) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Mar 06 16:06:58 UTC 2023 - 36.4K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/ClassPath.java
* @param packagePrefix resource path prefix inside {@code classloader} for any files found * under {@code directory} * @param currentPath canonical files already visited in the current directory tree path, for * cycle elimination */ private void scanDirectory( File directory, String packagePrefix, Set<File> currentPath,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jan 05 17:43:40 UTC 2022 - 24.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
// check url if (crawlerContext.getRobotsTxtUrlSet().contains(robotTxtUrl)) { if (logger.isDebugEnabled()) { logger.debug("{} is already visited.", robotTxtUrl); } return; } if (logger.isInfoEnabled()) { logger.info("Checking URL: {}", robotTxtUrl); } // add url to a set
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 09 09:29:26 UTC 2024 - 41K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocLexer.java
* limitations under the License. */ package gradlebuild.docs.dsl.docbook; public interface JavadocLexer { /** * Visits the tokens in the input stream for this lexer. Reads to the end of the input. */ void visit(TokenVisitor visitor); class TokenVisitor { void onStartHtmlElement(String name) { } void onHtmlElementAttribute(String name, String value) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.3K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexerTest.groovy
lexer.visit(visitor) then: 1 * visitor.onStartJavadocTag('tag') 1 * visitor.onText('some value') 1 * visitor.onEndJavadocTag('tag') 1 * visitor.onEnd() 0 * visitor._ } def javadocTagCanBeEmpty() { when: lexer.pushText("{@empty}") lexer.visit(visitor) then: 1 * visitor.onStartJavadocTag('empty')
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java
public VisitorImpl(TokenVisitor visitor) { this.visitor = visitor; } private void unwindTo(String element, TokenVisitor visitor) { if (elementStack.contains(element)) { while (!elementStack.getFirst().equals(element)) { visitor.onEndHtmlElement(elementStack.removeFirst()); } elementStack.removeFirst();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 5.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/NodeVisitor.java
/** * Defines a hierarchical visitor for collecting dependency node trees. * * @since 4.0.0 */ @Experimental @Consumer public interface NodeVisitor { /** * Starts the visit to the specified dependency node. * * @param node the dependency node to visit * @return <code>true</code> to visit the specified dependency node's children, <code>false</code> to skip the
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 1.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Node.java
/** * Traverses this node and potentially its children using the specified visitor. * * @param visitor the visitor to call back, must not be {@code null} * @return {@code true} to visit siblings nodes of this node as well, {@code false} to skip siblings */ boolean accept(@Nonnull NodeVisitor visitor); /** * Returns a new tree starting at this node, filtering the children.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Jun 11 07:23:04 UTC 2024 - 3.2K bytes - Viewed (0)