- Sort Score
- Result 10 results
- Languages All
Results 2741 - 2750 of 3,920 for extenders (0.06 sec)
-
guava/src/com/google/common/collect/SingletonImmutableSet.java
*/ @GwtCompatible(serializable = true, emulated = true) @SuppressWarnings("serial") // uses writeReplace(), not default serialization @ElementTypesAreNonnullByDefault final class SingletonImmutableSet<E> extends ImmutableSet<E> { // We deliberately avoid caching the asList and hashCode here, to ensure that with // compressed oops, a SingletonImmutableSet packs all the way down to the optimal 16 bytes. final transient E element;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClRuntimeException.java
package org.codelibs.core.exception; import org.codelibs.core.message.MessageFormatter; /** * A base exception class for CoreLib. * * @author higa * @author shinsuke */ public class ClRuntimeException extends RuntimeException { private static final long serialVersionUID = -4452607868694297329L; private final String messageCode; private final Object[] args; private final String message;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndXResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import java.io.UnsupportedEncodingException; class SmbComSessionSetupAndXResponse extends AndXServerMessageBlock { private String nativeOs = ""; private String nativeLanMan = ""; private String primaryDomain = ""; boolean isLoggedInAsGuest; byte[] blob = null;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndXResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import java.io.UnsupportedEncodingException; class SmbComTreeConnectAndXResponse extends AndXServerMessageBlock { private static final int SMB_SUPPORT_SEARCH_BITS = 0x0001; private static final int SMB_SHARE_IS_IN_DFS = 0x0002; boolean supportSearchBits, shareIsInDfs;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformation.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import jcifs.smb1.util.Hexdump; class Trans2QueryPathInformation extends SmbComTransaction { private int informationLevel; Trans2QueryPathInformation( String filename, int informationLevel ) { path = filename; this.informationLevel = informationLevel;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2FlushRequest.java
import jcifs.internal.smb2.ServerMessageBlock2Request; import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class Smb2FlushRequest extends ServerMessageBlock2Request<Smb2FlushResponse> implements RequestWithFileId { private byte[] fileId; /** * @param config * @param fileId */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponse.java
import jcifs.Configuration; import jcifs.RuntimeCIFSException; import jcifs.internal.dtyp.SecurityDescriptor; import jcifs.internal.util.SMBUtil; /** * */ public class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse { private SecurityDescriptor securityDescriptor; /** * * @param config */ public NtTransQuerySecurityDescResponse ( Configuration config ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java
* or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits * the problem. * */ public interface ModelProblem extends BuilderProblem { /** * Version */ enum Version { // based on ModeBuildingResult.validationLevel BASE, V20, V30, V31, V40,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManager.java
import org.apache.maven.api.annotations.Nonnull; /** * Service to manage {@link Toolchain}s. * * @since 4.0.0 */ @Experimental public interface ToolchainManager extends Service { /** * * @param session * @param type * @param requirements * @return the selected {@link Toolchain}s * @throws ToolchainManagerException if an exception occurs
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 2.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/TransportProvider.java
* resolver preference regarding transport is altered, it will affect this service as well. * * @since 4.0.0 */ @Experimental @Consumer public interface TransportProvider extends Service { /** * Provides new {@link Transport} instance for given {@link RemoteRepository}, if possible. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 2.1K bytes - Viewed (0)