- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for RETRYING (0.05 sec)
-
src/main/java/jcifs/smb/SmbTreeConnection.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
README.md
* Unify authentication subsystem, NTLMSSP/Kerberos support * Large ReadX/WriteX support * Streaming list operations * NtTransNotifyChange support * Google patches: various bugfixes, lastAccess support, retrying requests * A proper test suite * Various fixes ## Others ### This jcifs or jcifs-ng jcifs-ng will be a proper choice for many users. There are a lot of SMB devices in the world.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed May 10 09:29:34 UTC 2023 - 1.5K bytes - Viewed (0) -
bin/retry.sh
# determine if a retry should be attempted. # Example: retry.sh "connection timed out" ./my-flaky-script.sh some args # This will run "my-flaky-script.sh", retrying any failed runs that output "connection timed out" up # to 5 times. function fail { echo "${1}" >&2 exit 1 } function isatty() { if [ -t 1 ] ; then return 0 else return 1 fi
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jun 11 16:08:08 UTC 2021 - 2K bytes - Viewed (0) -
internal/store/store.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 4.2K bytes - Viewed (0) -
docs/batch-jobs/README.md
- Target location from where the objects must be copied to - Fine grained filtering is available to pick relevant objects from source to copy from MinIO batch jobs framework also provides - Retrying a failed job automatically driven by user input - Monitoring job progress in real-time - Send notifications upon completion or failure to user configured target
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 06 06:00:43 UTC 2022 - 4.8K bytes - Viewed (0) -
architecture/networking/controllers.md
* Correctness at startup; with the sequencing above, items are only processed once all informers are synced. This means queries will not return stale data at startup. * Deduping of identical events * Automatic retrying of failed events (configurable) The above logic is critical to handle correctly to ensure correctness of a controller.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Feb 09 17:41:25 UTC 2024 - 4.9K bytes - Viewed (0) -
docs/features/calls.md
## Retrying Requests Sometimes connections fail: either a pooled connection was stale and disconnected, or the webserver itself couldn’t be reached. OkHttp will retry the request with a different route if one is available.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 3.9K bytes - Viewed (0) -
okhttp-sse/src/test/java/okhttp3/sse/internal/ServerSentEventIteratorTest.kt
} @Test fun namePrefixIgnored() { consumeEvents( """ |data: a |eventually |database |identity |retrying | | """.trimMargin(), ) assertThat(callbacks.remove()).isEqualTo(Event(null, null, "a")) } @Test fun nakedNameClearsIdAndTypeAppendsData() { consumeEvents(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 6.4K bytes - Viewed (0) -
cmd/mrf.go
continue } } now := time.Now() if now.Sub(u.Queued) < time.Second { // let recently failed networks to reconnect // making MRF wait for 1s before retrying, // i.e 4 reconnect attempts. time.Sleep(time.Second) } // wait on timer per heal wait := healSleeper.Timer(context.Background()) scan := madmin.HealNormalScan
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:26:05 UTC 2024 - 6.5K bytes - Viewed (0) -
cmd/batch-handlers.go
} cancel() if ri.Failed { ri.ObjectsFailed = 0 ri.Bucket = "" ri.Object = "" ri.Objects = 0 ri.BytesFailed = 0 ri.BytesTransferred = 0 retry = true // indicate we are retrying.. time.Sleep(delay + time.Duration(rnd.Float64()*float64(delay))) continue } break } return nil } // toObjectInfo converts minio.ObjectInfo to ObjectInfo
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 18 15:32:09 UTC 2024 - 62.2K bytes - Viewed (0)