- Sort Score
- Num 10 results
- Language All
Results 1461 - 1470 of 1,826 for system (0.21 seconds)
-
docs/tr/docs/_llm-test.md
* parent class * subclass * child class * sibling class * class method * header * headers * authorization header * `Authorization` header * forwarded header * dependency injection system * dependency * dependable * dependant * I/O bound * CPU bound * concurrency * parallelism * multiprocessing * env var * environment variable * `PATH` * `PATH` variable
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 11.1K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/ArrayMap.java
*/ protected Entry<K, V> removeList(final int index) { final Entry<K, V> e = listTable[index]; final int numMoved = size - index - 1; if (numMoved > 0) { System.arraycopy(listTable, index + 1, listTable, index, numMoved); } listTable[--size] = null; return e; } /** * Ensures capacity when the size exceeds the threshold.Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 20.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemBoundaryTest.java
source.put(FieldNames.ROLES, Arrays.asList("role1")); source.put(FieldNames.LANGUAGES, Arrays.asList("en")); source.put(FieldNames.KINDS, Arrays.asList("query")); source.put(FieldNames.TIMESTAMP, System.currentTimeMillis()); SuggestItem item = SuggestItem.parseSource(source); assertNotNull(item); assertEquals("test", item.getText()); assertEquals(100L, item.getQueryFreq());
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Jan 17 05:10:37 GMT 2026 - 22.2K bytes - Click Count (0) -
build-logic/src/main/kotlin/BndBuildAction.kt
throw GradleException("Bundle $archiveFileName has errors") } builtJar.write(archiveFile) archiveFile.setLastModified(System.currentTimeMillis()) } } catch (e: Exception) { throw GradleException("Bnd build failed", e) } } private fun isZip(file: File): Boolean = try { ZipFile(file).close()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 09:17:33 GMT 2026 - 8.9K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java
} private void printErrors(ArtifactResolutionResult result) { if (result.hasMissingArtifacts()) { for (Artifact artifact : result.getMissingArtifacts()) { System.err.println("Missing: " + artifact); } } if (result.hasExceptions()) { for (Exception e : result.getExceptions()) { e.printStackTrace(); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 26 10:49:22 GMT 2025 - 10.1K bytes - Click Count (0) -
okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt
class Builder { internal var client: OkHttpClient? = null internal var url: HttpUrl? = null internal var includeIPv6 = true internal var post = false internal var systemDns = Dns.SYSTEM internal var bootstrapDnsHosts: List<InetAddress>? = null internal var resolvePrivateAddresses = false internal var resolvePublicAddresses = true fun build(): DnsOverHttps {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat May 10 11:15:14 GMT 2025 - 8.6K bytes - Click Count (0) -
src/main/java/jcifs/http/NtlmServlet.java
@Override public void init(final ServletConfig config) throws ServletException { super.init(config); final Properties p = new Properties(); p.putAll(System.getProperties()); /* * Set jcifs properties we know we want; soTimeout and cachePolicy to 10min. */ p.setProperty("jcifs.smb.client.soTimeout", "300000");Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.1K bytes - Click Count (1) -
src/main/java/jcifs/smb1/netbios/Name.java
dst[dstIndex] = (byte) 0x00; return 1; } // copy new scope in dst[dstIndex] = (byte) '.'; dstIndex++; try { System.arraycopy(scope.getBytes(Name.OEM_ENCODING), 0, dst, dstIndex, scope.length()); } catch (final UnsupportedEncodingException uee) {} dstIndex += scope.length(); dst[dstIndex++] = (byte) 0x00;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7.2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java
*/ @Deprecated public interface RepositorySystem { String DEFAULT_LOCAL_REPO_ID = MavenRepositorySystem.DEFAULT_LOCAL_REPO_ID; @SuppressWarnings("checkstyle:constantname") String userHome = System.getProperty("user.home"); @SuppressWarnings("checkstyle:constantname") File userMavenConfigurationHome = new File(userHome, ".m2"); @SuppressWarnings("checkstyle:constantname")Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 7.7K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
if (CACHE_POLICY == 0) { return; } long expiration = -1; if (CACHE_POLICY != FOREVER) { expiration = System.currentTimeMillis() + CACHE_POLICY * 1000; } cacheAddress(hostName, addr, expiration); } static void cacheAddress(final Name hostName, final NbtAddress addr, final long expiration) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.7K bytes - Click Count (0)