- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 427 for Pflags (0.74 sec)
-
src/test/java/jcifs/smb/SmbCopyUtilTest.java
public class SmbCopyUtilTest { // --- Tests for openCopyTargetFile --- @ParameterizedTest @ValueSource(booleans = { true, false }) @DisplayName("openCopyTargetFile sets correct access flags depending on alsoRead") void openCopyTargetFile_accessMask_respectsAlsoRead(boolean alsoRead) throws Exception { // Arrange SmbFile dest = mock(SmbFile.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
docs/debugging/README.md
Example: ```sh minio server /data{1...4} ``` The command takes no flags ```sh mc support diagnostics myminio/ ``` The output printed will be of the form ```sh ● Admin Info ... ✔ ● CPU ... ✔ ● Disk Hardware ... ✔ ● Os Info ... ✔ ● Mem Info ... ✔
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected boolean disablePlainTextPasswords = true; /** OEM encoding for non-Unicode operations */ protected String oemEncoding = SmbConstants.DEFAULT_OEM_ENCODING; /** SMB flags2 field value */ protected int flags2 = 0; /** SMB client capabilities */ protected int capabilities = 0; /** Maximum number of concurrent SMB sessions */ protected int sessionLimit = SmbConstants.DEFAULT_SSN_LIMIT;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java
private void setNegotiatedFlags2(SmbComNegotiateResponse response, int flags2) { try { Field field = response.getClass().getDeclaredField("negotiatedFlags2"); field.setAccessible(true); field.set(response, flags2); } catch (Exception e) { throw new RuntimeException("Failed to set negotiatedFlags2 field", e); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
api/go1.txt
pkg flag, method (*FlagSet) Visit(func(*Flag)) pkg flag, method (*FlagSet) VisitAll(func(*Flag)) pkg flag, type ErrorHandling int pkg flag, type Flag struct pkg flag, type Flag struct, DefValue string pkg flag, type Flag struct, Name string pkg flag, type Flag struct, Usage string pkg flag, type Flag struct, Value Value pkg flag, type FlagSet struct pkg flag, type FlagSet struct, Usage func()
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java
/** * Creation time of the crawling information. */ public String createdTime; /** * Clears all pagination state and crawling information fields. * Resets all counts, page flags, and crawling-specific fields to their default values. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false; existNextPage = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java
* like writeandx will choke if session * closes in between */ } /** * Sets the write mode flags for this request. * * @param writeMode * the writeMode to set */ public final void setWriteMode(final int writeMode) { this.writeMode = writeMode; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
cmd/build-constants.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import "runtime" // DO NOT EDIT THIS FILE DIRECTLY. These are build-time constants // set through ‘buildscripts/gen-ldflags.go’. var ( // GOPATH - GOPATH value at the time of build. GOPATH = "" // GOROOT - GOROOT value at the time of build. GOROOT = "" // Version - version time.RFC3339. Version = "DEVELOPMENT.GOGET"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed May 01 17:57:52 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcMessage.java
* * @param opnum the operation number for this message */ protected WitnessRpcMessage(int opnum) { ptype = 0; // REQUEST flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; this.opnum = opnum; } @Override public int getOpnum() { return opnum; } /** * Gets the return code from the RPC operation.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java
super(config); this.fileId = fileId; this.fileName = fileName; } /** * Get the close flags * * @return the closeFlags */ public final int getCloseFlags() { return this.closeFlags; } /** * Get the file creation time *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0)