- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 589 for limits (0.06 sec)
-
cmd/object-lambda-handlers.go
host = globalMinioEndpointURL.Host secure = globalMinioEndpointURL.Scheme == "https" } duration := time.Until(cred.Expiration) if duration > time.Hour || duration < time.Hour { // Always limit to 1 hour. duration = time.Hour } clnt, err := miniogo.New(host, &miniogo.Options{ Creds: credentials.NewStaticV4(cred.AccessKey, cred.SecretKey, cred.SessionToken), Secure: secure,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jul 18 21:56:31 UTC 2025 - 6.5K bytes - Viewed (0) -
cmd/untar.go
case formatGzip: gz, err := gzip.NewReader(bf) if err != nil { return err } defer gz.Close() r = gz case formatS2: r = s2.NewReader(bf) case formatZstd: // Limit to 16 MiB per stream. dec, err := zstd.NewReader(bf, zstd.WithDecoderMaxWindow(16<<20)) if err != nil { return err } defer dec.Close() r = dec case formatBZ2:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 6K bytes - Viewed (2) -
src/main/java/jcifs/config/BaseConfiguration.java
return true; } return !this.disallowCompound.contains(command); } /** * Gets the batch limit for a specific command * * @param cmd the command to get the batch limit for * @return the batch limit for the command, or null if not set */ protected Integer doGetBatchLimit(final String cmd) { return null; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/ChannelFailoverTest.java
} @Test void testFailoverStateRetryLogic() { ChannelFailover.FailoverState state = new ChannelFailover.FailoverState("test-channel"); // Should allow retries up to limit assertTrue(state.shouldRetry()); state.incrementRetry(); // Retry 1 assertTrue(state.shouldRetry()); state.incrementRetry(); // Retry 2 assertTrue(state.shouldRetry());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponseTest.java
@ParameterizedTest @ValueSource(ints = { 0, 1, 10, 100, 500, 1024 }) void testReadDataWireFormatVariousSizes(int dataSize) throws SMBProtocolDecodingException { // Test with various data sizes within buffer limit byte[] testData = new byte[dataSize]; Arrays.fill(testData, (byte) 0xAB); byte[] buffer = new byte[dataSize + 100]; System.arraycopy(testData, 0, buffer, 20, dataSize);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.5K bytes - Viewed (0) -
docs/features/events.md
0002 0.554 responseBodyEnd 0002 0.554 connectionReleased 0002 0.554 callEnd 0001 0.624 responseBodyEnd 0001 0.624 connectionReleased 0001 0.624 callEnd ``` The `EventListener.Factory` also makes it possible to limit metrics to a subset of calls. This one captures metrics on a random 10%: ```java class MetricsEventListener extends EventListener { private static final Factory FACTORY = new Factory() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 7.7K bytes - Viewed (0) -
ci/official/envs/windows_x86_2022
TFCI_WHL_BAZEL_TEST_ENABLE=0 TFCI_WHL_SIZE_LIMIT=450M TFCI_WHL_SIZE_LIMIT_ENABLE=1 TFCI_WHL_IMPORT_TEST_ENABLE=1 TFCI_PYTHON_VERIFY_PIP_INSTALL_ARGS="" # Used to simulate a T:\ drive within the container, to a limited extent, # via a symlink. # Helpful since the internal CI utilizes a T:\ drive, part of which is mounted # to the container, and would result in C:\<path> != T:\<path> mismatches,
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Mar 19 00:58:54 UTC 2025 - 2.7K bytes - Viewed (0) -
docs/ja/docs/tutorial/query-param-models.md
もしクライアントが**クエリパラメータ**として**余分な**データを送ろうとすると、**エラー**レスポンスが返されます。 例えば、クライアントがクエリパラメータ `tool` に、値 `plumbus` を設定して送ろうとすると: ```http https://example.com/items/?limit=10&tool=plumbus ``` クエリパラメータ `tool` が許可されていないことを通知する**エラー**レスポンスが返されます。 ```json { "detail": [ { "type": "extra_forbidden", "loc": ["query", "tool"],
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 28 14:18:46 UTC 2025 - 2.7K bytes - Viewed (0) -
NOTICE
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Jan 15 23:53:08 UTC 2020 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/ItemForm.java
public String path; /** * Default constructor. */ public ItemForm() { // Default constructor } /** The name of the storage item, limited to 100 characters */ @Size(max = 100) public String name; /** The file to be uploaded for the storage item */ public MultipartFormFile uploadFile;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0)