- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 108 for setFlags (0.04 sec)
-
src/main/java/jcifs/ACE.java
/** * Returns the flags for this ACE. The <code>isInherited()</code> * method checks the <code>FLAGS_INHERITED</code> bit in these flags. * * @return the ACE flags */ int getFlags(); /** * Returns true if this ACE is an inherited ACE and false if it is a direct ACE. * <p> * Note: For reasons not fully understood, <code>FLAGS_INHERITED</code> may
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
reconnect(); if (message == null) { message = new Type1Message(); if (LM_COMPATIBILITY > 2) { message.setFlag(NtlmFlags.NTLMSSP_REQUEST_TARGET, true); } } else { String domain = DEFAULT_DOMAIN; String user = Type3Message.getDefaultUser();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
} /** * Returns the flags for this ACE. The <code>isInherited()</code> * method checks the <code>FLAGS_INHERITED</code> bit in these flags. * @return the ACE flags */ public int getFlags() { return flags; } /** * Returns the 'Apply To' text for inheritance of ACEs on * directories such as 'This folder, subfolder and files'. For
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
setupReadMethod(m, propertyName); } else if (methodName.startsWith("set")) { if (m.getParameterTypes().length != 1 || methodName.equals("setClass") || m.getReturnType() != void.class) { continue; } final String propertyName = StringUtil.decapitalize(methodName.substring(3));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
README.md
.build(); ``` ### Request Parameters ```java SuggestResponse response = suggester.suggest() .setQuery("search term") .setSize(10) // max results .setTags(new String[]{"category"}) // filter by tags .setRoles(new String[]{"user"}) // filter by roles .setLanguages(new String[]{"en", "ja"}) // language preference
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
cmd/admin-handlers.go
if nerr.Err != nil { err := AdminError{ Code: AdminUpdateApplyFailure, Message: nerr.Err.Error(), StatusCode: http.StatusInternalServerError, } logger.GetReqInfo(ctx).SetTags("peerAddress", nerr.Host.String()) adminLogIf(ctx, fmt.Errorf("server update failed with %w", err)) writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 99.6K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvPairsTest.java
assertEquals(AvPair.MsvAvFlags, pair.getType(), "Pair type should be MsvAvFlags"); assertTrue(pair instanceof AvFlags, "Should be decoded as AvFlags"); assertEquals(0x12345678, ((AvFlags) pair).getFlags(), "Flags value should match"); } /** * Test decode with multiple AvPairs */ @Test @DisplayName("Decode multiple AvPairs with EOL")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
String[] fields = { "field1", "field2" }; item.setFields(fields); assertArrayEquals(fields, item.getFields()); // Test tags String[] tags = { "tag1", "tag2" }; item.setTags(tags); assertArrayEquals(tags, item.getTags()); // Test roles String[] roles = { "admin", "user" }; item.setRoles(roles); assertArrayEquals(roles, item.getRoles());
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
final int start = dstIndex; if (log.isDebugEnabled()) { log.debug("Opening " + this.name); log.debug("Flags are " + Hexdump.toHexString(getFlags(), 4)); } SMBUtil.writeInt2(57, dst, dstIndex); dst[dstIndex + 2] = this.securityFlags; dst[dstIndex + 3] = this.requestedOplockLevel; dstIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
@Override public void setUid(final int uid) { // ignore } /** * Gets the flags for this message. * * @return the flags */ public final int getFlags() { return this.flags; } /** * Adds the specified flags to this message. * * @param flag the flags to add */ public final void addFlags(final int flag) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0)