- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for SAE (0.03 sec)
-
src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java
*/ public abstract class NtlmAuthenticator { private static NtlmAuthenticator auth; private String url; private SmbAuthException sae; private void reset() { url = null; sae = null; } /** Set the default <tt>NtlmAuthenticator</tt>. Once the default authenticator is set it cannot be changed. Calling this metho again will have no effect. */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.8K bytes - Viewed (0) -
src/cmd/asm/internal/asm/line_test.go
{"VADDPD.SAE.BCST X0, X1, X2", `can't combine rounding/SAE and broadcast`}, {"VADDPD.BCST.SAE X0, X1, X2", `can't combine rounding/SAE and broadcast`}, {"VADDPD.BCST.Z.SAE X0, X1, X2", `Z suffix should be the last; can't combine rounding/SAE and broadcast`}, {"VADDPD.SAE.SAE X0, X1, X2", `duplicate suffix "SAE"`}, {"VADDPD.RZ_SAE.SAE X0, X1, X2", `bad suffix combination`},
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 29 07:48:38 UTC 2023 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmAuthenticator.java
} /** * @param a * @param url * @param sae * @return credentials returned by prompt */ public static NtlmPasswordAuthenticator requestNtlmPasswordAuthentication ( NtlmAuthenticator a, String url, SmbAuthException sae ) { if ( a == null ) { return null; } synchronized ( a ) { a.url = url; a.sae = sae;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64error.s
VADDPD.RZ_SAE Y3, Y2, K1, Y1 // ERROR "unsupported rounding" VADDPD.RN_SAE Y3, Y2, K1, Y1 // ERROR "unsupported rounding" // Unsupported SAE. VMAXPD.SAE (AX), Z2, K1, Z1 // ERROR "illegal SAE with memory argument" VADDPD.SAE X3, X2, K1, X1 // ERROR "unsupported SAE" // Unsupported zeroing. VFPCLASSPDX.Z $0, (AX), K2, K1 // ERROR "unsupported zeroing" VFPCLASSPDY.Z $0, (AX), K2, K1 // ERROR "unsupported zeroing"
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jun 14 00:03:57 UTC 2023 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
this.openFlags = openFlags; this.access = (openFlags >>> 16) & 0xFFFF; if( append ) { try { fp = file.length(); } catch( SmbAuthException sae ) { throw sae; } catch( SmbException se ) { fp = 0L; } } if( file instanceof SmbNamedPipe && file.unc.startsWith( "\\pipe\\" )) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.8K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
} try { getTransportContext().getTransportPool().logon(getTransportContext(), dc); } catch ( SmbAuthException sae ) { response.setHeader("WWW-Authenticate", "NTLM"); if ( offerBasic ) { response.addHeader("WWW-Authenticate", "Basic realm=\"" + this.realm + "\""); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.6K bytes - Viewed (0)