- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 2,192 for supe (0.03 sec)
-
guava-tests/test/com/google/common/io/FlushablesTest.java
- // make sure that no exception is thrown regardless of value of
- // 'swallowException' when the mock does not throw an exception.
- setupFlushable(false);
- doFlush(mockFlushable, false, false);
- setupFlushable(false);
- doFlush(mockFlushable, true, false);
- }
- public void testFlush_flushableWithEatenException() throws IOException {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 3.3K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java
- final AtomicReferenceFieldUpdater<
- ? super AggregateFutureState<?>, ? super @Nullable Set<Throwable>>
- seenExceptionsUpdater;
- final AtomicIntegerFieldUpdater<? super AggregateFutureState<?>> remainingCountUpdater;
- SafeAtomicHelper(
- AtomicReferenceFieldUpdater<
- ? super AggregateFutureState<?>, ? super @Nullable Set<Throwable>>
- seenExceptionsUpdater,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 28 20:40:51 UTC 2024 - 8.4K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestFileWagon.java
- addTransfer("getTransfer " + resource.getName());
- super.getTransfer(resource, destination, input, closeInput, maxSize);
- }
- public void get(String resourceName, File destination)
- throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException {
- addTransfer("get " + resourceName);
- insideGet = true;
- super.get(resourceName, destination);
- insideGet = false;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulationException.java
- public MavenExecutionRequestPopulationException(String message) {
- super(message);
- }
- public MavenExecutionRequestPopulationException(Throwable cause) {
- super(cause);
- }
- public MavenExecutionRequestPopulationException(String message, Throwable cause) {
- super(message, cause);
- }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/SourceSinkFactories.java
- }
- }
- private static class UrlByteSourceFactory extends FileByteSourceFactory {
- @SuppressWarnings("CheckReturnValue") // only using super.createSource to create a file
- @Override
- public ByteSource createSource(byte[] bytes) throws IOException {
- super.createSource(bytes);
- return Resources.asByteSource(getFile().toURI().toURL());
- }
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SMBSignatureValidationException.java
- public SMBSignatureValidationException () {
- super();
- }
- /**
- * @param msg
- * @param rootCause
- */
- public SMBSignatureValidationException ( String msg, Throwable rootCause ) {
- super(msg, rootCause);
- }
- /**
- * @param msg
- */
- public SMBSignatureValidationException ( String msg ) {
- super(msg);
- }
- /**
- *
- */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java
- /**
- *
- * @param config
- */
- public SmbComOpenAndXResponse ( Configuration config ) {
- super(config);
- }
- /**
- * @param config
- * @param andxResp
- */
- public SmbComOpenAndXResponse ( Configuration config, SmbComSeekResponse andxResp ) {
- super(config, andxResp);
- }
- /**
- * @return the fid
- */
- public final int getFid () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java
- super(config, SMB_COM_READ_ANDX);
- this.openTimeout = 0xFFFFFFFF;
- }
- /**
- *
- * @param config
- * @param fid
- * @param offset
- * @param maxCount
- * @param andx
- */
- public SmbComReadAndX ( Configuration config, int fid, long offset, int maxCount, ServerMessageBlock andx ) {
- super(config, SMB_COM_READ_ANDX, andx);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/metadata/ResolutionGroup.java
- super(pomArtifact, artifacts, resolutionRepositories);
- }
- public ResolutionGroup(
- Artifact pomArtifact,
- Artifact relocatedArtifact,
- Set<Artifact> artifacts,
- Map<String, Artifact> managedVersions,
- List<ArtifactRepository> resolutionRepositories) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SearchQueryException.java
- public SearchQueryException(final String message, final Throwable cause) {
- super(message, cause);
- }
- public SearchQueryException(final String message) {
- super(message);
- }
- public SearchQueryException(final Throwable cause) {
- super(cause);
- }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0)