- Sort Score
- Result 10 results
- Languages All
Results 1441 - 1450 of 3,920 for extenders (0.05 sec)
-
guava-testlib/test/com/google/common/collect/testing/MinimalIterableTest.java
import java.util.NoSuchElementException; import junit.framework.TestCase; /** * Unit test for {@link MinimalIterable}. * * @author Kevin Bourrillion */ @GwtCompatible public class MinimalIterableTest extends TestCase { public void testOf_empty() { Iterable<String> iterable = MinimalIterable.<String>of(); Iterator<String> iterator = iterable.iterator(); assertFalse(iterator.hasNext());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 2.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/DescendingImmutableSortedMultiset.java
* * @author Louis Wasserman */ @SuppressWarnings("serial") // uses writeReplace, not default serialization @GwtIncompatible @ElementTypesAreNonnullByDefault final class DescendingImmutableSortedMultiset<E> extends ImmutableSortedMultiset<E> { private final transient ImmutableSortedMultiset<E> forward; DescendingImmutableSortedMultiset(ImmutableSortedMultiset<E> forward) { this.forward = forward; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndXResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import java.io.IOException; import java.io.InputStream; class SmbComOpenAndXResponse extends AndXServerMessageBlock { int fid, fileAttributes, dataSize, grantedAccess, fileType, deviceState, action, serverFid; long lastWriteTime;
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/main/java/jcifs/netbios/SessionRequestPacket.java
package jcifs.netbios; import java.io.IOException; import java.io.InputStream; import jcifs.Configuration; import jcifs.NetbiosName; /** * */ public class SessionRequestPacket extends SessionServicePacket { private Name calledName, callingName; SessionRequestPacket ( Configuration config ) { this.calledName = new Name(config); this.callingName = new Name(config);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcException.java
*/ package jcifs.smb1.dcerpc; import java.io.*; import jcifs.smb1.smb1.WinError; import jcifs.smb1.util.Hexdump; public class DcerpcException extends IOException implements DcerpcError, WinError { static String getMessageByDcerpcError(int errcode) { int min = 0; int max = DCERPC_FAULT_CODES.length; while (max >= min) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import jcifs.smb1.util.Hexdump; class NtTransQuerySecurityDesc extends SmbComNtTransaction { int fid; int securityInformation; NtTransQuerySecurityDesc( int fid, int securityInformation ) { this.fid = fid; this.securityInformation = securityInformation;
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/smb1/com/SmbComDelete.java
import jcifs.Configuration; import jcifs.SmbConstants; import jcifs.internal.smb1.ServerMessageBlock; import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * */ public class SmbComDelete extends ServerMessageBlock { private int searchAttributes; /** * * @param config * @param path */ public SmbComDelete ( Configuration config, String path ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/composition/DependencyManagementImporter.java
* @param problems The container used to collect problems that were encountered, must not be {@code null}. */ Model importManagement( Model target, List<? extends DependencyManagement> sources, ModelBuildingRequest request, ModelProblemCollector problems);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserException.java
* it indicates that the Maven execution should be stopped and the user should correct the issue. * * @since 4.0.0 */ @Experimental public class ParserException extends MavenException { /** * Constructs a new ParserException with the specified detail message. * * @param message the detail message explaining the cause of the exception */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t11/ProjectInheritanceTest.java
/** * Verifies scope of root project is preserved regardless of parent dependency management. * * @see <a href="https://issues.apache.org/jira/browse/MNG-2919">MNG-2919</a> */ @Deprecated class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase { // ---------------------------------------------------------------------- // // p1 inherits from p0 // p0 inherits from super model //
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0)