- Sort Score
- Result 10 results
- Languages All
Results 461 - 470 of 3,853 for Hint (0.03 sec)
-
fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/util/CrawlerWebServer.java
* @author shinsuke * */ public class CrawlerWebServer { private int port = 8080; private File docRoot; private Server server; private boolean tempDocRoot = false; public CrawlerWebServer(final int port) { this(port, createDocRoot(3)); tempDocRoot = true; } public CrawlerWebServer(final int port, final File docRoot) { this.port = port;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.3K bytes - Viewed (0) -
internal/bucket/replication/datatypes_gen.go
// Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message func (z StatusType) Msgsize() (s int) { s = msgp.StringPrefixSize + len(string(z)) return } // DecodeMsg implements msgp.Decodable func (z *Type) DecodeMsg(dc *msgp.Reader) (err error) { { var zb0001 int zb0001, err = dc.ReadInt() if err != nil { err = msgp.WrapError(err) return } (*z) = Type(zb0001) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Mar 08 19:08:18 UTC 2024 - 2.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/SidTest.java
} @Test public void resolveWellKnownUsers () throws IOException { SID domsid = new SID(getRequiredProperty(TestProperties.TEST_DOMAIN_SID)); int rids[] = new int[] { 500, 501 }; for ( int rid : rids ) { SID sid = new SID(domsid, rid); sid.resolve(getRequiredProperty(TestProperties.TEST_DOMAIN_DC), withTestNTLMCredentials(getContext()));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java
@Override public int remove(@CheckForNull Object element, int occurrences) { if (occurrences == 0) { return count(element); } CollectPreconditions.checkPositive(occurrences, "occurrences"); AtomicInteger existingCounter = safeGet(countMap, element); if (existingCounter == null) { return 0; } while (true) { int oldValue = existingCounter.get();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 21.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SecurityBlob.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/SMBSigningDigest.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UnicodeString.java
*/ public UnicodeString ( String str, boolean zterm ) { this.zterm = zterm; int len = str.length(); int zt = zterm ? 1 : 0; this.length = this.maximum_length = (short) ( ( len + zt ) * 2 ); this.buffer = new short[len + zt]; int i; for ( i = 0; i < len; i++ ) { this.buffer[ i ] = (short) str.charAt(i); } if ( zterm ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebConfigBhv.java
doDelete(entity, null); } public int queryDelete(CBCall<WebConfigCB> cbLambda) { return doQueryDelete(createCB(cbLambda), null); } public int[] batchInsert(List<WebConfig> list) { return batchInsert(list, null, null); } public int[] batchInsert(List<WebConfig> list, RequestOptionCall<BulkRequestBuilder> call) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableRangeMapTest.java
private static final ImmutableList<Range<Integer>> RANGES; private static final int MIN_BOUND = 0; private static final int MAX_BOUND = 10; static { ImmutableList.Builder<Range<Integer>> builder = ImmutableList.builder(); builder.add(Range.<Integer>all()); // Add one-ended ranges for (int i = MIN_BOUND; i <= MAX_BOUND; i++) { for (BoundType type : BoundType.values()) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 9.6K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingServerSocketFactory.kt
} @Throws(IOException::class) override fun createServerSocket(port: Int): ServerSocket { val serverSocket = delegate.createServerSocket(port) return configureServerSocket(serverSocket) } @Throws(IOException::class) override fun createServerSocket( port: Int, backlog: Int, ): ServerSocket { val serverSocket = delegate.createServerSocket(port, backlog)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2K bytes - Viewed (0)