- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 324 for flags2 (0.1 sec)
-
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
/** * Returns the default flags for a Type-3 message created in response * to the given Type-2 message in the current environment. * * @return An <code>int</code> containing the default flags. */ public static int getDefaultFlags(Type2Message type2) { if (type2 == null) return DEFAULT_FLAGS; int flags = NTLMSSP_NEGOTIATE_NTLM;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
* context to use * @param flags * The flags to apply to this message. * @param challenge * The challenge from the domain controller/server. * @param target * The authentication target. */ public Type2Message ( CIFSContext tc, int flags, byte[] challenge, String target ) { setFlags(flags); setChallenge(challenge);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.4K bytes - Viewed (0) -
cmd/metacache-entries_test.go
Signature: [4]byte{2, 1, 1, 1}, Type: ObjectType, Flags: 0, }}, {header: xlMetaV2VersionHeader{ VersionID: [16]byte{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}, ModTime: baseTime.Add(30 * time.Minute).UnixNano(), Signature: [4]byte{1, 1, 1, 1}, Type: ObjectType, Flags: 0, }}, }, }, // Has a completely different version id
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 31.6K bytes - Viewed (0) -
src/test/java/jcifs/tests/NtlmTest.java
} @Test public void testParsingType1 () throws IOException { int flags = 0x80000000; String suppliedDomain = "TESTDOM"; String suppliedWorkstation = "TESTWS"; Type1Message t1 = new Type1Message(this.context, flags, suppliedDomain, suppliedWorkstation); int origFlags = t1.getFlags();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 16 10:38:43 UTC 2018 - 4.8K bytes - Viewed (0) -
.gitattributes
# Always check-out / check-in files with LF line endings. * text=auto eol=lf hack/verify-flags/known-flags.txt merge=union test/test_owners.csv merge=union **/zz_generated.*.go linguist-generated=true **/types.generated.go linguist-generated=true **/generated.pb.go linguist-generated=true **/generated.proto **/types_swagger_doc_generated.go linguist-generated=true api/openapi-spec/*.json linguist-generated=true
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Mon Oct 28 20:33:50 UTC 2024 - 510 bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
* ACL editor will rebuild all children ACEs and set this flag accordingly. */ public boolean isInherited() { return (flags & FLAGS_INHERITED) != 0; } /** * Returns the flags for this ACE. The </tt>isInherited()</tt> * method checks the <tt>FLAGS_INHERITED</tt> bit in these flags. */ public int getFlags() { return flags; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/OplockTests.java
throw e; } } } else if ( trans.hasCapability(SmbConstants.CAP_NT_SMBS) ) { int flags = SmbConstants.O_CREAT; int sharing = SmbConstants.FILE_SHARE_DELETE | SmbConstants.FILE_SHARE_READ | SmbConstants.FILE_SHARE_WRITE;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 6.1K bytes - Viewed (0) -
cmd/fmt-gen.go
Usage: "Generate format.json files for an erasure server pool", Flags: append(fmtGenFlags, GlobalFlags...), Action: fmtGenMain, Hidden: true, CustomHelpTemplate: `NAME: {{.HelpName}} - {{.Usage}} USAGE: {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR1 [DIR2..] {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR{1...64} {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR{1...64} DIR{65...128} DIR:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:22:04 UTC 2024 - 3.7K bytes - Viewed (0) -
istioctl/pkg/multicluster/options.go
type KubeOptions struct { Kubeconfig string Context string Namespace string } // Inherit the common kubernetes flags defined in the root package. This is a bit of a hack, // but it allows us to directly get the final values for each of these flags without needing // to pass pointers-to-flags through all of the (sub)commands. func (o *KubeOptions) prepare(ctx cli.Context) { o.Namespace = ctx.Namespace() if o.Namespace == "" {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Aug 01 23:59:49 UTC 2023 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java
return new String( "Trans2FindFirst2[" + super.toString() + ",searchAttributes=0x" + Hexdump.toHexString( searchAttributes, 2 ) + ",searchCount=" + LIST_COUNT + ",flags=0x" + Hexdump.toHexString( flags, 2 ) + ",informationLevel=0x" + Hexdump.toHexString( informationLevel, 3 ) + ",searchStorageType=" + searchStorageType + ",filename=" + path + "]" ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0)