- Sort Score
- Result 10 results
- Languages All
Results 1791 - 1800 of 2,149 for concept (0.08 sec)
-
src/test/java/jcifs/smb/StaticJAASConfigurationTest.java
assertEquals(LoginModuleControlFlag.REQUIRED, e1.getControlFlag()); assertEquals(LoginModuleControlFlag.REQUIRED, e2.getControlFlag()); assertEquals(e1.getOptions(), e2.getOptions(), "Options content should be equivalent across calls"); } @Test @DisplayName("Options map is not mutated by configuration (verify no writes)") void optionsMap_notMutated_verifyNoWrites() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
docs/en/docs/how-to/custom-request-and-route.md
/// The only thing the function returned by `GzipRequest.get_route_handler` does differently is convert the `Request` to a `GzipRequest`. Doing this, our `GzipRequest` will take care of decompressing the data (if necessary) before passing it to our *path operations*. After that, all of the processing logic is the same.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.normalizer; /** * The HankakuKanaToZenkakuKana class implements the Normalizer interface to convert * half-width Katakana characters (Hankaku Kana) to full-width Katakana characters (Zenkaku Kana). * It also handles the conversion of voiced and semi-voiced sound marks. *
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
* to create an NbtAddress internal to this netbios package), no query is * sent on the wire and the only state this object has is it's IP address * (but that's enough to connect to a host using *SMBSERVER for CallingName). * * 2) IP Address, NetBIOS name, nodeType, groupName - If however a * legal NetBIOS name string is used a name query request will retreive
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
// Default constructor } /** Length of the QoS information. */ public int length; /** Security impersonation level. */ public short impersonation_level; /** Context tracking mode. */ public byte context_mode; /** Indicates if only effective privileges should be used. */ public byte effective_only; @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
private final Lmhosts lmhosts = new Lmhosts(); private Name unknownName; private NbtAddress unknownAddress; /** * Constructs a name service client with the given context. * * @param tc the CIFS context containing configuration */ public NameServiceClientImpl(final CIFSContext tc) { this(tc.getConfig().getNetbiosLocalPort(), tc.getConfig().getNetbiosLocalAddress(), tc); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java
assertNotNull(result, String.format("Should create information for type %d, class %d", infoType, infoClass)); } @Test @DisplayName("Test readBytesWireFormat preserves buffer content") void testReadBytesWireFormatPreservesBuffer() throws Exception { response = new Smb2QueryInfoResponse(mockConfig, Smb2Constants.SMB2_0_INFO_FILE, FileInformation.FILE_INTERNAL_INFO);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
@Override public String getIndexFieldTitle() { return "title"; } @Override public String getIndexFieldContent() { return "content"; } @Override public String getIndexFieldUrl() { return "url"; } @Override public String getIndexFieldSite() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/LoggingEventListenerTest.kt
.build() url = server.url("/") } @Test fun get() { assumeNotWindows() server.enqueue( MockResponse .Builder() .body("Hello!") .setHeader("Content-Type", PLAIN) .build(), ) val response = client.newCall(request().build()).execute() assertThat(response.body).isNotNull() response.body.bytes() logRecorder
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 10.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt
* @param domain A canonicalized domain. An International Domain Name (IDN) should be punycode * encoded. */ fun getEffectiveTldPlusOne(domain: String): String? { // We use UTF-8 in the list so we need to convert to Unicode. val unicodeDomain = IDN.toUnicode(domain) val domainLabels = splitDomain(unicodeDomain) val rule = findMatchingRule(domainLabels)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.5K bytes - Viewed (0)