- Sort Score
- Result 10 results
- Languages All
Results 581 - 590 of 1,936 for protected (0.06 sec)
-
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java
} return (T) this.info; } @Override protected int writeSetupWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override protected int writeParametersWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override protected int writeDataWireFormat(final byte[] dst, final int dstIndex) { return 0; }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/DirectedGraphConnections.java
Iterator<NodeConnection<N>> nodeConnections = orderedNodeConnections.iterator(); Set<N> seenNodes = new HashSet<>(); return new AbstractIterator<N>() { @Override protected @Nullable N computeNext() { while (nodeConnections.hasNext()) { NodeConnection<N> nodeConnection = nodeConnections.next(); boolean added = seenNodes.add(nodeConnection.node);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/FacetResponse.java
* and values are document counts for each query. */ protected Map<String, Long> queryCountMap = new LinkedHashMap<>(); /** * List of field facets containing aggregated field values and their counts. */ protected List<Field> fieldList = new ArrayList<>(); /** * Constructs a FacetResponse from OpenSearch aggregations.Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
/** System helper for common system operations and utilities. */ @Resource protected SystemHelper systemHelper; /** Behavior class for user information database operations. */ @Resource protected UserInfoBhv userInfoBhv; /** Behavior class for favorite log database operations. */ @Resource protected FavoriteLogBhv favoriteLogBhv; /** Configuration settings for the Fess search system. */Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
/** An array of language fields. */ protected String[] langFields; /** An array of supported languages. */ protected String[] supportedLanguages; /** The language detector. */ protected LanguageDetector detector; /** The maximum text length for language detection. */ protected int maxTextLength; /** * Default constructor. */Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.9K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/WrappingExecutorService.java
private final ExecutorService delegate; protected WrappingExecutorService(ExecutorService delegate) { this.delegate = checkNotNull(delegate); } /** * Wraps a {@code Callable} for submission to the underlying executor. This method is also applied * to any {@code Runnable} passed to the default implementation of {@link #wrapTask(Runnable)}. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/SynonymLoader.java
return reloadableFile != null; } public long getLastModified() { return lastModified; } protected static Analyzer getAnalyzer(final boolean ignoreCase) { return new Analyzer() { @Override protected TokenStreamComponents createComponents(final String fieldName) { final Tokenizer tokenizer = new KeywordTokenizer();Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun May 18 02:59:16 UTC 2025 - 6.7K bytes - Viewed (1) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetIteratorTester.java
new IteratorTester<E>( 4, MODIFIABLE, getSubjectGenerator().order(asList(e0(), e1(), e1(), e2())), IteratorTester.KnownOrder.KNOWN_ORDER) { @Override protected Iterator<E> newTargetIterator() { return getSubjectGenerator().create(e0(), e1(), e1(), e2()).iterator(); } }.test(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4.5K bytes - Viewed (0) -
guava/src/com/google/common/hash/ChecksumHashFunction.java
this.checksum = checkNotNull(checksum); } @Override protected void update(byte b) { checksum.update(b); } @Override protected void update(byte[] bytes, int off, int len) { checksum.update(bytes, off, len); } @Override @J2ObjCIncompatible protected void update(ByteBuffer b) { if (!ChecksumMethodHandles.updateByteBuffer(checksum, b)) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingSortedMapTest.java
private final SortedMap<K, V> backingSortedMap; StandardImplForwardingSortedMap(SortedMap<K, V> backingSortedMap) { this.backingSortedMap = backingSortedMap; } @Override protected SortedMap<K, V> delegate() { return backingSortedMap; } @Override public boolean containsKey(Object key) { return standardContainsKey(key); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 20:34:52 UTC 2025 - 7.7K bytes - Viewed (0)