- Sort Score
- Result 10 results
- Languages All
Results 941 - 950 of 4,189 for intA (0.04 sec)
-
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
private BufferedReader br; private final List<String> list = new LinkedList<>(); private final int maxLineBuffer; public InputStreamThread(final InputStream is, final String charset, final int maxOutputLineBuffer) { try { br = new BufferedReader(new InputStreamReader(is, charset));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
public String errorName; public static final int DEFAULT_PAGE_SIZE = 20; public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; private int allRecordCount; private int allPageCount; private boolean existPrePage; private boolean existNextPage; private List<Integer> pageNumberList; private int pageSize; private int currentPageNumber; public String id;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/RepositoryCache.java
// this here, possibly indefinitely. // public interface RepositoryCache { /** * Puts the specified data into the cache. <strong>Warning:</strong> The cache will directly save the provided * reference. If the cached data is mutable, i.e. could be modified after being put into the cache, the caller is * responsible for creating a copy of the original data and store the copy in the cache. *
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/jcifs/dcerpc/msrpc/lsarpc.java
public static final int SID_NAME_DOMAIN = 3; public static final int SID_NAME_ALIAS = 4; public static final int SID_NAME_WKN_GRP = 5; public static final int SID_NAME_DELETED = 6; public static final int SID_NAME_INVALID = 7; public static final int SID_NAME_UNKNOWN = 8; public static class LsarTranslatedSid extends NdrObject { public int sid_type;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:40:13 UTC 2019 - 35.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingMultiset.java
* A sensible definition of {@link #setCount(Object, int, int)} in terms of {@link #count(Object)} * and {@link #setCount(Object, int)}. If you override either of these methods, you may wish to * override {@link #setCount(Object, int, int)} to forward to this implementation. * * @since 7.0 */ protected boolean standardSetCount(@ParametricNullness E element, int oldCount, int newCount) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 10.4K bytes - Viewed (0) -
cmd/endpoint-ellipses.go
} ep.argPatterns = argPatterns return ep, nil } // GetAllSets - parses all ellipses input arguments, expands them into // corresponding list of endpoints chunked evenly in accordance with a // specific set size. // For example: {1...64} is divided into 4 sets each of size 16. // This applies to even distributed setup syntax as well. func GetAllSets(setDriveCount uint64, args ...string) ([][]string, error) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 14.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/JdkBackedImmutableMap.java
// value will then be replaced by null, signaling that later entries with the same key should // be deleted. Map<K, @Nullable V> duplicates = null; int dupCount = 0; for (int i = 0; i < n; i++) { // requireNonNull is safe because the first `n` elements have been filled in. entryArray[i] = makeImmutable(requireNonNull(entryArray[i])); K key = entryArray[i].getKey();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 4.8K bytes - Viewed (0) -
internal/bucket/lifecycle/noncurrentversion.go
XMLName xml.Name `xml:"NoncurrentVersionExpiration"` NoncurrentDays ExpirationDays `xml:"NoncurrentDays,omitempty"` NewerNoncurrentVersions int `xml:"NewerNoncurrentVersions,omitempty"` MaxNoncurrentVersions int `xml:"MaxNoncurrentVersions,omitempty"` } var val noncurrentExpiration err := d.DecodeElement(&val, &startElement) if err != nil { return err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Dec 14 17:41:44 UTC 2021 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java
private static final long serialVersionUID = 1L; public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; private int allRecordCount; private int allPageCount; private boolean existPrePage; private boolean existNextPage; private List<Integer> pageNumberList; private int pageSize; private int currentPageNumber; public String id; public String name;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.4K bytes - Viewed (0) -
docs_src/python_types/tutorial007.py
from typing import Set, Tuple def process_items(items_t: Tuple[int, int, str], items_s: Set[bytes]):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Apr 11 17:20:32 UTC 2020 - 131 bytes - Viewed (0)