- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 1,448 for convert (0.05 sec)
-
cmd/prepare-storage.go
if errors.Is(err, errDiskNotFound) && verboseLogging { if globalEndpoints.NEndpoints() > 1 { logger.Info("Unable to connect to %s: %v, will be retried", endpoints[i], isServerResolvable(endpoints[i], time.Second)) } else { logger.Fatal(err, "Unable to connect to %s: %v", endpoints[i], isServerResolvable(endpoints[i], time.Second)) } } else { if globalEndpoints.NEndpoints() > 1 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jul 12 20:51:54 UTC 2024 - 11.1K bytes - Viewed (1) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java
@Override public void setAccessResultData(final AccessResultData<String> accessResultDataAsOne) { accessResultData = accessResultDataAsOne; initializedData = true; } /** * Converts this access result to XContent format for OpenSearch indexing. * * @param builder The XContentBuilder to write to. * @param params Additional parameters for the conversion.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
// Test that multiple invocations return consistent results QueryContext context = new QueryContext("*:*", false); MatchAllDocsQuery query = new MatchAllDocsQuery(); float boost = 1.0f; QueryBuilder result1 = matchAllQueryCommand.execute(context, query, boost); QueryBuilder result2 = matchAllQueryCommand.execute(context, query, boost); assertNotNull(result1); assertNotNull(result2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbNamedPipe.java
* </pre> * * </td> * <td> * Open the Named Pipe foo for reading and writing. The pipe will behave like the <code>CallNamedPipe</code> interface. * </td> * </tr> * <tr> * <td > * * <pre> * new SmbNamedPipe("smb://server/IPC$/foo", SmbNamedPipe.PIPE_TYPE_RDWR | SmbNamedPipe.PIPE_TYPE_TRANSACT, context); * </pre> * * </td> * <td>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0) -
cmd/postpolicyform_test.go
}, { name: "unknown key Content-Encoding is error as it does not appear in policy", fv: defaultFormVals.Clone().Set(http.CanonicalHeaderKey(xhttp.ContentEncoding), "encoding-val"), wantErr: `Each form field that you specify in a form must appear in the list of policy conditions. "Content-Encoding" not specified in the policy.`, }, { name: "many bucket values",
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
import org.xml.sax.SAXException; import org.xml.sax.helpers.DefaultHandler; /** * Parser for Google Search Appliance (GSA) configuration files. * This SAX-based parser reads GSA XML configuration files and converts them into * Fess configuration objects including web crawling configurations, file crawling * configurations, and label types for access control. * * <p>The parser handles the following GSA configuration elements:
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
docs/features/interceptors.md
INFO: Sending request http://www.publicobject.com/helloworld.txt on null User-Agent: OkHttp Example INFO: Received response for https://publicobject.com/helloworld.txt in 1179.7ms Server: nginx/1.4.6 (Ubuntu) Content-Type: text/plain Content-Length: 1759 Connection: keep-alive ``` We can see that we were redirected because `response.request().url()` is different from `request.url()`. The two log statements log two different URLs.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeConnectionTraceTest.java
// Arrange: spy on instance to force connect() failure with specific exception CIFSContext ctx = mock(CIFSContext.class); SmbTreeConnectionTrace trace = Mockito.spy(new SmbTreeConnectionTrace(ctx)); doThrow(thrown).when(trace).connect(loc); // Act & Assert: both UnknownHostException and IOException should become CIFSException (SmbException)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindingTest.java
dcerpcBinding.setOption("endpoint", endpoint); dcerpcBinding.setOption("connect", "80"); String result = dcerpcBinding.toString(); assertTrue(result.startsWith(PROTO + ":" + SERVER + "[" + endpoint + ","), "toString should start correctly with endpoint."); assertTrue(result.contains("connect=80"), "toString should contain connect option."); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
* * @param delegate the underlying SMB transport to wrap * @param context the CIFS context for configuration */ public RdmaTransport(SmbTransportInternal delegate, CIFSContext context) { this.delegate = delegate; this.rdmaProvider = RdmaProviderFactory.getProvider(context.getConfig()); this.bufferManager = new RdmaBufferManager(rdmaProvider);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.9K bytes - Viewed (0)