- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 352 for bracket (0.37 seconds)
-
src/main/java/jcifs/dcerpc/DcerpcConstants.java
int DCERPC_OBJECT_UUID = 0x80; /* if true, a non-nil object UUID */ // Packet Types (ptype) /** * Request packet type */ int RPC_PT_REQUEST = 0x00; /** * Ping packet type */ int RPC_PT_PING = 0x01; /** * Response packet type */ int RPC_PT_RESPONSE = 0x02; /** * Fault packet type - indicates an error */ int RPC_PT_FAULT = 0x03; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
try { final Bucket existingBucket = storage.get(bucket); if (existingBucket == null) { storage.create(BucketInfo.newBuilder(bucket).build()); logger.info("Created storage bucket: {}", bucket); } } catch (final Exception e) { logger.warn("Failed to ensure bucket exists: {}", bucket, e); } } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 10.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java
// Various GCS bucket and path formats assertEquals("gcs://bucket/", wizardAction.convertCrawlingPath("gcs://bucket/")); assertEquals("gcs://my-bucket/", wizardAction.convertCrawlingPath("gcs://my-bucket/")); assertEquals("gcs://bucket.with.dots/path", wizardAction.convertCrawlingPath("gcs://bucket.with.dots/path"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionAggregation.java
import org.opensearch.search.aggregations.bucket.range.IpRangeAggregationBuilder; import org.opensearch.search.aggregations.bucket.range.RangeAggregationBuilder; import org.opensearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder; import org.opensearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder; import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 12.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java
assertTrue(goAction.isFileSystemPath("s3://my-bucket-name/deep/nested/path/file.txt")); assertTrue(goAction.isFileSystemPath("s3://bucket-with-dashes/file")); } @Test public void test_isFileSystemPath_gcs_protocol() { assertTrue(goAction.isFileSystemPath("gcs://bucket/path/to/file.txt")); assertTrue(goAction.isFileSystemPath("gcs://my-bucket/folder/document.pdf"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 8.3K bytes - Click Count (0) -
docs/en/docs/python-types.md
``` ### Generic types { #generic-types } Some types can take "type parameters" in square brackets, to define their internal types, for example a "list of strings" would be declared `list[str]`. These types that can take type parameters are called **Generic types** or **Generics**. You can use the same builtin types as generics (with square brackets and types inside): * `list` * `tuple` * `set` * `dict`Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 11K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
url = "s3://my-bucket/path/to/file"; exp = "my-bucket"; assertEquals(exp, transformer.getHostOnFile(url)); url = "gcs://my-bucket/path/to/file"; exp = "my-bucket"; assertEquals(exp, transformer.getHostOnFile(url)); url = "s3://bucket-with-dashes/file"; exp = "bucket-with-dashes";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
assertTrue(protocolHelper.isValidFileProtocol("s3://bucket/path/to/file")); assertTrue(protocolHelper.isValidFileProtocol("gcs://bucket/path/to/file")); assertTrue(protocolHelper.isValidFileProtocol("s3://my-bucket/")); assertTrue(protocolHelper.isValidFileProtocol("gcs://my-bucket/folder/document.pdf")); assertFalse(protocolHelper.isValidWebProtocol("s3://bucket/path"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 35.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionAggregation.java
import org.opensearch.search.aggregations.bucket.range.IpRangeAggregationBuilder; import org.opensearch.search.aggregations.bucket.range.RangeAggregationBuilder; import org.opensearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder; import org.opensearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder; import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 12.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponseTest.java
byte[] packet = new byte[header.length + body.length]; System.arraycopy(header, 0, packet, 0, header.length); System.arraycopy(body, 0, packet, header.length, body.length); BaseConfiguration config = new BaseConfiguration(true); Smb2IoctlResponse resp = new Smb2IoctlResponse(config); int read = resp.decode(packet, 0);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.9K bytes - Click Count (0)