- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 748 for onload (0.11 sec)
-
src/main/java/jcifs/smb1/Config.java
} } } /** * Load the <code>Config</code> with properties from the stream * <code>in</code> from a <code>Properties</code> file. * * @param in the input stream to load properties from * @throws IOException if an I/O error occurs */ public static void load(final InputStream in) throws IOException { if (in != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/tr/stopwords.txt
o olan olarak oldu olduğu olduğunu olduklarını olmadı olmadığı olmak olması olmayan olmaz olsa olsun olup olur olursa oluyor on ona ondan onlar onlardan onları onların onu onun otuz oysa öyle pek rağmen sadece sanki sekiz seksen sen senden seni senin siz sizden sizi sizin
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 19 06:31:02 UTC 2018 - 1.5K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/PostMultipart.java
private static final MediaType MEDIA_TYPE_PNG = MediaType.get("image/png"); private final OkHttpClient client = new OkHttpClient(); public void run() throws Exception { // Use the imgur image upload API as documented at https://api.imgur.com/endpoints/image RequestBody requestBody = new MultipartBody.Builder() .setType(MultipartBody.FORM) .addFormDataPart("title", "Square Logo")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jun 24 12:59:42 UTC 2019 - 2.2K bytes - Viewed (0) -
buildscripts/heal-inconsistent-versions.sh
export MINIO_CI_CD=1 mkdir ${WORK_DIR} C_PWD=${PWD} if [ ! -x "$PWD/mc" ]; then MC_BUILD_DIR="mc-$RANDOM" if ! git clone --quiet https://github.com/minio/mc "$MC_BUILD_DIR"; then echo "failed to download https://github.com/minio/mc" purge "${MC_BUILD_DIR}" exit 1 fi (cd "${MC_BUILD_DIR}" && go build -o "$C_PWD/mc") # remove mc source. purge "${MC_BUILD_DIR}" fi
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 26 05:07:25 UTC 2023 - 1.9K bytes - Viewed (0) -
.github/workflows/replication.yaml
- name: Test Versioning run: | sudo sysctl net.ipv6.conf.all.disable_ipv6=0 sudo sysctl net.ipv6.conf.default.disable_ipv6=0 make test-versioning - name: Test Multipart upload with failures run: | sudo sysctl net.ipv6.conf.all.disable_ipv6=0 sudo sysctl net.ipv6.conf.default.disable_ipv6=0
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/LruHashMap.java
private static final long serialVersionUID = 1L; /** * Default initial capacity. */ protected static final int DEFAULT_INITIAL_CAPACITY = 16; /** * Default load factor. */ protected static final float DEFAULT_LOAD_FACTOR = 0.75f; /** * Upper limit on the number of entries. */ protected final int limitSize; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.3K bytes - Viewed (0) -
cmd/site-replication-utils.go
// Run the site resync metrics load in a loop for { if err := sm.load(ctx, newObjectLayerFn()); err == nil { <-ctx.Done() return } duration := max(time.Duration(r.Float64()*float64(time.Second*10)), // Make sure to sleep at least a second to avoid high CPU ticks. time.Second) time.Sleep(duration) } } // load resync metrics saved on disk into memory
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
try { Files.createDirectories(stateDirectory); } catch (IOException e) { log.error("Failed to create handle state directory: " + stateDirectory, e); } // Load persisted handles on startup loadPersistedHandles(); // Schedule periodic persistence and cleanup scheduler.scheduleAtFixedRate(this::periodicMaintenance, 30, 30, TimeUnit.SECONDS); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
public void test_load() { // Test load method User user = createTestUser("testuser", "password123"); User result = ldapChain.load(user); assertSame(user, result); assertEquals(user, testLdapManager.appliedUser); assertTrue(testLdapManager.applyCalled); } public void test_load_withNullUser() { // Test load with null user
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
docs/ko/docs/advanced/sub-applications.md
{* ../../docs_src/sub_applications/tutorial001.py hl[11, 19] *} ### 자동으로 생성된 API 문서 확인 이제, `uvicorn`으로 메인 응용프로그램을 실행하십시오. 당신의 파일이 `main.py`라면, 이렇게 실행합니다: <div class="termy"> ```console $ uvicorn main:app --reload <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Jun 12 07:32:09 UTC 2025 - 3.7K bytes - Viewed (0)