- Sort Score
- Result 10 results
- Languages All
Results 561 - 570 of 3,920 for extenders (0.06 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/testers/QueueOfferTester.java
* * @author Jared Levy */ @GwtCompatible @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") public class QueueOfferTester<E> extends AbstractQueueTester<E> { @CollectionFeature.Require(SUPPORTS_ADD) public void testOffer_supportedNotPresent() { assertTrue("offer(notPresent) should return true", getQueue().offer(e3())); expectAdded(e3()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 20:00:30 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/LsaPolicyHandle.java
import java.io.IOException; import jcifs.dcerpc.DcerpcHandle; import jcifs.dcerpc.rpc; import jcifs.smb.SmbException; @SuppressWarnings ( "javadoc" ) public class LsaPolicyHandle extends rpc.policy_handle implements AutoCloseable { private final DcerpcHandle handle; private boolean opened; public LsaPolicyHandle ( DcerpcHandle handle, String server, int access ) throws IOException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferral.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; class Trans2GetDfsReferral extends SmbComTransaction { private int maxReferralLevel = 3; Trans2GetDfsReferral( String filename ) { path = filename; command = SMB_COM_TRANSACTION2; subCommand = TRANS2_GET_DFS_REFERRAL;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransPeekNamedPipe.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; class TransPeekNamedPipe extends SmbComTransaction { private int fid; TransPeekNamedPipe( String pipeName, int fid ) { name = pipeName; this.fid = fid; command = SMB_COM_TRANSACTION;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/ModifierUtilTest.java
import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.HashMap; import java.util.Map; import junit.framework.TestCase; /** * @author shot */ public class ModifierUtilTest extends TestCase { /** * @throws Exception */ public void testIsPublic() throws Exception { final Field f = Hoge.class.getDeclaredField("s");
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/InvalidProjectModelException.java
import java.io.File; import org.apache.maven.project.validation.ModelValidationResult; /** * InvalidProjectModelException */ @Deprecated public class InvalidProjectModelException extends ProjectBuildingException { private ModelValidationResult validationResult; public InvalidProjectModelException(String projectId, String message, File pomLocation) { super(projectId, message, pomLocation);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerException.java
* process, such as build failures, plugin errors, or other runtime issues. * * @since 4.0.0 */ @Experimental public class InvokerException extends MavenException { /** * Constructs a new {@code InvokerException} 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) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationMissingRule.java
import japicmp.model.JApiField; import japicmp.model.JApiHasAnnotations; import japicmp.model.JApiMethod; import me.champeau.gradle.japicmp.report.Violation; import java.util.Map; public class SinceAnnotationMissingRule extends AbstractGradleViolationRule { public static final String SINCE_ERROR_MESSAGE = "Is not annotated with @since "; public SinceAnnotationMissingRule(Map<String, Object> params) { super(params); }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 21 16:02:23 UTC 2023 - 2.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java
import org.codelibs.fess.crawler.container.CrawlerContainer; import jakarta.annotation.Resource; /** * * @param <T> Pooled object * * @author shinsuke */ public class CrawlerPooledObjectFactory<T> extends BasePooledObjectFactory<T> { @Resource protected CrawlerContainer crawlerContainer; protected String componentName; protected OnDestroyListener<T> onDestroyListener; /*
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 2.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TemporaryFileInputStream.java
import java.io.InputStream; import org.codelibs.core.io.FileUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @author shinsuke * */ public class TemporaryFileInputStream extends InputStream { private static final Logger logger = LoggerFactory.getLogger(TemporaryFileInputStream.class); private final File tempFile; private final FileInputStream fileInputStream;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.3K bytes - Viewed (0)