- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 182 for delegation (0.08 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl
ACB_ENC_TXT_PWD_ALLOWED = 0x00000800, /* 1 = Encryped text password is allowed */ ACB_SMARTCARD_REQUIRED = 0x00001000, /* 1 = Smart Card required */ ACB_TRUSTED_FOR_DELEGATION = 0x00002000, /* 1 = Trusted for Delegation */ ACB_NOT_DELEGATED = 0x00004000, /* 1 = Not delegated */ ACB_USE_DES_KEY_ONLY = 0x00008000, /* 1 = Use DES key only */ ACB_DONT_REQUIRE_PREAUTH = 0x00010000 /* 1 = Preauth not required */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ReverseOrdering.java
} @SuppressWarnings("unchecked") // how to explain? @Override public <S extends T> Ordering<S> reverse() { return (Ordering<S>) forwardOrder; } // Override the min/max methods to "hoist" delegation outside loops @Override public <E extends T> E min(@ParametricNullness E a, @ParametricNullness E b) { return forwardOrder.max(a, b); } @Override public <E extends T> E min(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sun Jun 20 14:22:42 UTC 2021 - 3.2K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingImmutableCollection.java
import java.util.Collection; import org.checkerframework.checker.nullness.qual.Nullable; /** * A GWT-only class only used by GWT emulations. It is used to consolidate the definitions of method * delegation to save code size. * * @author Hayward Chan */ // TODO: Make this class GWT serializable. @ElementTypesAreNonnullByDefault class ForwardingImmutableCollection<E> extends ImmutableCollection<E> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 23 18:43:40 UTC 2024 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ReverseNaturalOrdering.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sun Jun 20 14:22:42 UTC 2021 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.idl
ACB_ENC_TXT_PWD_ALLOWED = 0x00000800, /* 1 = Encryped text password is allowed */ ACB_SMARTCARD_REQUIRED = 0x00001000, /* 1 = Smart Card required */ ACB_TRUSTED_FOR_DELEGATION = 0x00002000, /* 1 = Trusted for Delegation */ ACB_NOT_DELEGATED = 0x00004000, /* 1 = Not delegated */ ACB_USE_DES_KEY_ONLY = 0x00008000, /* 1 = Use DES key only */ ACB_DONT_REQUIRE_PREAUTH = 0x00010000 /* 1 = Preauth not required */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ReverseNaturalOrdering.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sun Jun 20 14:22:42 UTC 2021 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenInit.java
import org.bouncycastle.asn1.*; import jcifs.util.Hexdump; /** * SPNEGO initial token */ @SuppressWarnings ( "javadoc" ) public class NegTokenInit extends SpnegoToken { public static final int DELEGATION = 0x80; public static final int MUTUAL_AUTHENTICATION = 0x40; public static final int REPLAY_DETECTION = 0x20; public static final int SEQUENCE_CHECKING = 0x10; public static final int ANONYMITY = 0x08;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Oct 01 12:01:17 UTC 2023 - 7.9K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/TimeLimiter.java
public interface TimeLimiter { /** * Returns an instance of {@code interfaceType} that delegates all method calls to the {@code * target} object, enforcing the specified time limit on each call. This time-limited delegation * is also performed for calls to {@link Object#equals}, {@link Object#hashCode}, and {@link * Object#toString}. * * <p>If the target method call finishes before the limit is reached, the return value or
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 18:32:03 UTC 2023 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
protected static final String SPNEGO_INITIALIZED = "spnego.initialized"; protected static final String SPNEGO_EXCLUDE_DIRS = "spnego.exclude.dirs"; protected static final String SPNEGO_ALLOW_DELEGATION = "spnego.allow.delegation"; protected static final String SPNEGO_ALLOW_LOCALHOST = "spnego.allow.localhost"; protected static final String SPNEGO_PROMPT_NTLM = "spnego.prompt.ntlm";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 11.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
*/ @Override public int getFlags () { int contextFlags = 0; if ( this.gssContext.getCredDelegState() ) { contextFlags |= NegTokenInit.DELEGATION; } if ( this.gssContext.getMutualAuthState() ) { contextFlags |= NegTokenInit.MUTUAL_AUTHENTICATION; } if ( this.gssContext.getReplayDetState() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Aug 02 08:22:42 UTC 2018 - 13.9K bytes - Viewed (0)