- Sort Score
- Result 10 results
- Languages All
Results 511 - 520 of 1,686 for super (0.06 sec)
-
src/main/java/jcifs/ntlmssp/av/AvTimestamp.java
import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class AvTimestamp extends AvPair { /** * @param raw */ public AvTimestamp ( byte[] raw ) { super(AvPair.MsvAvTimestamp, raw); } /** * * @param ts */ public AvTimestamp ( long ts ) { this(encode(ts)); } /** * @param ts
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlWriterException.java
/** * @param message the message for the exception * @param e the exception itself */ public XmlWriterException(String message, Location location, Exception e) { super(message, e); this.location = location; } public Location getLocation() { return location; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Mar 25 10:50:01 UTC 2024 - 1.4K bytes - Viewed (0) -
fastapi/background.py
Read more about it in the [FastAPI docs for Background Tasks](https://fastapi.tiangolo.com/tutorial/background-tasks/). """
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Apr 02 02:48:51 UTC 2024 - 1.7K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingMissingRule.java
import me.champeau.gradle.japicmp.report.Violation; import java.util.Map; public class IncubatingMissingRule extends AbstractGradleViolationRule { public IncubatingMissingRule(Map<String, Object> params) { super(params); } @Override public Violation maybeViolation(final JApiCompatibility member) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 06 19:15:15 UTC 2022 - 1.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/MapMakerInternalMap.java
implements StrongValueEntry<K, V, StrongKeyStrongValueEntry<K, V>> { @CheckForNull private volatile V value = null; private StrongKeyStrongValueEntry(K key, int hash) { super(key, hash); } @Override @CheckForNull public final V getValue() { return value; } private static final class LinkedStrongKeyStrongValueEntry<K, V>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 90.8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/OpenJSSEPlatform.kt
// Enable ALPN. val names = alpnProtocolNames(protocols) sslParameters.applicationProtocols = names.toTypedArray() sslSocket.sslParameters = sslParameters } } else { super.configureTlsExtensions(sslSocket, hostname, protocols) } } override fun getSelectedProtocol(sslSocket: SSLSocket): String? = if (sslSocket is org.openjsse.javax.net.ssl.SSLSocket) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ReverseOrdering.java
@GwtCompatible(serializable = true) @ElementTypesAreNonnullByDefault final class ReverseOrdering<T extends @Nullable Object> extends Ordering<T> implements Serializable { final Ordering<? super T> forwardOrder; ReverseOrdering(Ordering<? super T> forwardOrder) { this.forwardOrder = checkNotNull(forwardOrder); } @Override public int compare(@ParametricNullness T a, @ParametricNullness T b) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sun Jun 20 14:22:42 UTC 2021 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
private byte[] blob = null; /** * * @param config * @param andx */ public SmbComSessionSetupAndXResponse ( Configuration config, ServerMessageBlock andx ) { super(config, andx); } /** * @return the nativeLanMan */ public final String getNativeLanMan () { return this.nativeLanMan; } /** * @return the nativeOs
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformation.java
private int informationLevel; /** * * @param config * @param informationLevel */ public Trans2QueryFSInformation ( Configuration config, int informationLevel ) { super(config, SMB_COM_TRANSACTION2, TRANS2_QUERY_FS_INFORMATION); this.informationLevel = informationLevel; this.totalParameterCount = 2; this.totalDataCount = 0; this.maxParameterCount = 0;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponse.java
private final byte[] outputBuffer; /** * @param config * @param inB */ public TransTransactNamedPipeResponse ( Configuration config, byte[] inB ) { super(config); this.outputBuffer = inB; } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:05:22 UTC 2020 - 2.5K bytes - Viewed (0)