- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for System (0.04 sec)
-
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
try (OutputStream out = sourceFile.openOutputStream(false)) { out.write(content.getBytes("UTF-8")); } sourceFile.close(); // Wait for file system to sync Thread.sleep(500); System.gc(); Thread.sleep(200); // Verify source exists CIFSContext verifyContext = createFreshContext();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
cmd/iam.go
} // SetUsersSysType - sets the users system type, regular or LDAP. func (sys *IAMSys) SetUsersSysType(t UsersSysType) { sys.usersSysType = t } // GetUsersSysType - returns the users system type for this IAM func (sys *IAMSys) GetUsersSysType() UsersSysType { return sys.usersSysType } // NewIAMSys - creates new config system object. func NewIAMSys() *IAMSys { return &IAMSys{
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 75.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt
peer.sendFrame().ping(true, Http2Connection.AWAIT_PING, 5) peer.play() // Play it back. val connection = connect(peer) val pingAtNanos = System.nanoTime() connection.writePingAndAwaitPong() val elapsedNanos = System.nanoTime() - pingAtNanos assertThat(elapsedNanos).isGreaterThan(0L) assertThat(elapsedNanos).isLessThan(TimeUnit.SECONDS.toNanos(1))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 75.5K bytes - Viewed (0) -
src/main/resources/fess_config.properties
-Dorg.apache.pdfbox.rendering.UsePureJavaCMYKConversion=true\n\ #-Xdebug\n\ #-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=127.0.0.1:8000\n\ # job # System job IDs for scheduled jobs. job.system.job.ids=default_crawler # Template for web crawler job title. job.template.title.web=Web Crawler - {0} # Template for file crawler job title. job.template.title.file=File Crawler - {0}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 51.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
System.arraycopy(this.sbuf, 4, negoReqBuffer, 0, reqLen); } negotiatePeek(); r = smb2neg.initResponse(getContext()); final int respLen = r.decode(this.sbuf, 4); r.received(); if (doPreauth) { negoRespBuffer = new byte[respLen];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
* * ```java * String attack = "http://example.com/static/images/../../../../../etc/passwd"; * System.out.println(new URL(attack).getPath()); * System.out.println(new URI(attack).getPath()); * System.out.println(HttpUrl.parse(attack).encodedPath()); * ``` * * By canonicalizing the input paths, they are complicit in directory traversal attacks. Code that
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 63.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
lsarpc.LsarOpenPolicy2 openPolicy2 = new lsarpc.LsarOpenPolicy2("system", mockObjAttr, 1, mockPolicyHandle); openPolicy2.encode_in(mockNdrBuffer); verify(mockNdrBuffer).enc_ndr_referent("system", 1); verify(mockNdrBuffer).enc_ndr_string("system"); verify(mockObjAttr).encode(mockNdrBuffer); verify(mockNdrBuffer).enc_ndr_long(1); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* * - method reference: Inside Google, CacheBuilder is used from the implementation of a custom * ClassLoader that is sometimes used as a system classloader. That's a problem because * method-reference linking tries to look up the system classloader, and it fails because there * isn't one yet. * * - lambda: Outside Google, we got a report of a similar problem in
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
Map<String, Object> propMap = new ConcurrentHashMap<>(); // // system.properties // default void storeSystemProperties() { ComponentUtil.getSystemProperties().store(); } default String getSystemProperty(final String key) { return ComponentUtil.getSystemProperties().getProperty(key, System.getProperty(Constants.SYSTEM_PROP_PREFIX + key)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0)