- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 282 for Short1 (0.11 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcLookupSids.java
super(policyHandle, new LsarSidArrayX(sids), new lsarpc.LsarRefDomainList(), new lsarpc.LsarTransNameArray(), (short)1, sids.length); this.sids = sids; ptype = 0; flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
* * Uses a subject that contains kerberos credentials for use in GSSAPI context establishment. * * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs. * This can be a problem if using DFS in it's default configuration as they still return referrals in short form. * See <a href="https://support.microsoft.com/en-us/kb/244380">KB-244380</a> for compatible server configuration.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcQueryInformationPolicy.java
import jcifs.dcerpc.ndr.NdrObject; @SuppressWarnings ( "javadoc" ) public class MsrpcQueryInformationPolicy extends lsarpc.LsarQueryInformationPolicy { public MsrpcQueryInformationPolicy ( LsaPolicyHandle policyHandle, short level, NdrObject info ) { super(policyHandle, level, info); this.ptype = 0; this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
docs/en/docs/how-to/extending-openapi.md
* `title`: The OpenAPI title, shown in the docs. * `version`: The version of your API, e.g. `2.5.0`. * `openapi_version`: The version of the OpenAPI specification used. By default, the latest: `3.1.0`. * `summary`: A short summary of the API. * `description`: The description of your API, this can include markdown and will be shown in the docs. * `routes`: A list of routes, these are each of the registered *path operations*. They are taken from `app.routes`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 22:39:38 UTC 2024 - 3.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt
} // Optimization: check whether hostname is too short to match the pattern. hostName must be at // least as long as the pattern because asterisk must match the whole left-most label and // hostname starts with a non-empty label. Thus, asterisk has to match one or more characters. if (hostname.length < pattern.length) { return false // Hostname too short to match the pattern. } if ("*." == pattern) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 14:55:09 UTC 2024 - 7.7K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/AbstractHasher.java
for (int remaining = b.remaining(); remaining > 0; remaining--) { putByte(b.get()); } } return this; } @Override @CanIgnoreReturnValue public Hasher putShort(short s) { putByte((byte) s); putByte((byte) (s >>> 8)); return this; } @Override @CanIgnoreReturnValue public Hasher putInt(int i) { putByte((byte) i);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 15 20:59:00 UTC 2022 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
* get proper ticket caching. * * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs/Realm. * This can be a problem if using DFS in it's default configuration as that still returns referrals in short form. * See <a href="https://support.microsoft.com/en-us/kb/244380">KB-244380</a> for compatible server configuration.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.1K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoFailureException.java
* */ public class MojoFailureException extends AbstractMojoExecutionException { /** * Construct a new <code>MojoFailureException</code> exception providing the source and a short and long message: * these messages are used to improve the message written at the end of Maven build. * * @param source * @param shortMessage * @param longMessage */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/FreshValueGeneratorTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return calibrateCpuLoad(0L); } public boolean calibrateCpuLoad(final long timeoutInMillis) { final short percent = ComponentUtil.getFessConfig().getAdaptiveLoadControlAsInteger().shortValue(); if (percent <= 0) { return true; } short current = getSystemCpuPercent(); if (current < percent) { return true; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0)