- Sort Score
- Result 10 results
- Languages All
Results 1051 - 1060 of 1,319 for content2 (0.47 sec)
-
src/main/java/jcifs/internal/witness/WitnessClient.java
* * @param witnessServer the witness server address * @param context the CIFS context * @throws IOException if initialization fails */ public WitnessClient(InetAddress witnessServer, CIFSContext context) throws IOException { this(witnessServer, context, new WitnessRpcClient(witnessServer, context)); } /**Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmSspTest.java
// Verify assertNull(result, "Authentication result should be null"); // Capture the header value to verify its contents ArgumentCaptor<String> headerCaptor = ArgumentCaptor.forClass(String.class); verify(mockResponse).setHeader(eq("WWW-Authenticate"), headerCaptor.capture()); String headerValue = headerCaptor.getValue();Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.4K bytes - Viewed (1) -
docs/ru/docs/tutorial/first-steps.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 12.9K bytes - Viewed (0) -
docs/lambda/README.md
if __name__ == '__main__': app.run() ``` When you're writing a Lambda function for use with MinIO, the function is based on event context that MinIO provides to the Lambda function. The event context provides information about the request being made. It contains the parameters with relevant context. The fields used to create the Lambda function are as follows:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.7K bytes - Viewed (0) -
.github/workflows/tests.yml
name: tests on: push: branches-ignore: - 'gh-pages' pull_request: branches-ignore: - 'gh-pages' permissions: contents: read jobs: # Label of the container job sqlite: strategy: matrix: go: ['1.23', '1.24'] platform: [ubuntu-latest] # can not run in windows OS runs-on: ${{ matrix.platform }} steps: - name: Set up Go 1.xRegistered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EchoRequestTest.java
int bytesRead = echoRequest.readBytesWireFormat(buffer, 0); assertEquals(0, bytesRead); } @Test @DisplayName("Should return 0 regardless of buffer content") void testReadBytesWithVariousBufferContent() { byte[] emptyBuffer = new byte[100]; byte[] fullBuffer = new byte[100]; for (int i = 0; i < fullBuffer.length; i++) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
docs/select/README.md
## Enabling Parquet Format Parquet is DISABLED by default since hostile crafted input can easily crash the server. If you are in a controlled environment where it is safe to assume no hostile content can be uploaded to your cluster you can safely enable Parquet. To enable Parquet set the environment variable `MINIO_API_SELECT_PARQUET=on`. ## Example using Python API ### 1. Prerequisites
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
*/ public static RelatedQueryHelper getRelatedQueryHelper() { return getComponent(RELATED_QUERY_HELPER); } /** * Gets the related content helper component. * @return The related content helper. */ public static RelatedContentHelper getRelatedContentHelper() { return getComponent(RELATED_CONTENT_HELPER); } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectRequestTest.java
// Given Configuration mockConfig = mock(Configuration.class); Smb2TreeDisconnectRequest request = new Smb2TreeDisconnectRequest(mockConfig); // Various buffer contents byte[] emptyBuffer = new byte[256]; byte[] fullBuffer = createTestData(256); // When int emptyRead = request.readBytesWireFormat(emptyBuffer, 0);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
cmd/erasure-sets.go
// TransitionObject - transition object content to target tier. func (s *erasureSets) TransitionObject(ctx context.Context, bucket, object string, opts ObjectOptions) error { return s.getHashedSet(object).TransitionObject(ctx, bucket, object, opts) } // RestoreTransitionedObject - restore transitioned object content locally on this cluster.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 37K bytes - Viewed (1)