- Sort Score
- Result 10 results
- Languages All
Results 3001 - 3010 of 3,920 for extenders (0.1 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java
*/ package jcifs.smb1.smb1; import java.util.Date; import jcifs.smb1.Config; import jcifs.smb1.util.Hexdump; class SmbComOpenAndX extends AndXServerMessageBlock { // flags (not the same as flags constructor argument) private static final int FLAGS_RETURN_ADDITIONAL_INFO = 0x01; private static final int FLAGS_REQUEST_OPLOCK = 0x02;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/OplockTests.java
import jcifs.smb.SmbTreeInternal; import jcifs.util.transport.RequestTimeoutException; /** * @author mbechler * */ @SuppressWarnings ( "javadoc" ) @RunWith ( Parameterized.class ) public class OplockTests extends BaseCIFSTest { /** * @param name * @param properties */ public OplockTests ( String name, Map<String, String> properties ) { super(name, properties); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 6.1K bytes - Viewed (0) -
guava/src/com/google/common/math/ToDoubleRounder.java
/** * Helper type to implement rounding {@code X} to a representable {@code double} value according to * a {@link RoundingMode}. */ @GwtIncompatible @ElementTypesAreNonnullByDefault abstract class ToDoubleRounder<X extends Number & Comparable<X>> { /** * Returns x rounded to either the greatest double less than or equal to the precise value of x, * or the least double greater than or equal to the precise value of x. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 07 17:50:39 UTC 2024 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java
import org.eclipse.aether.repository.RemoteRepository; import org.eclipse.aether.util.artifact.SubArtifact; /** * DefaultArtifactDeployer */ @Named @Deprecated public class DefaultArtifactDeployer extends AbstractLogEnabled implements ArtifactDeployer { @Inject private RepositorySystem repoSystem; @Inject private LegacySupport legacySupport;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/UserGuideTransformTask.groovy
* </ul> * */ @CacheableTask abstract class UserGuideTransformTask extends DefaultTask { @PathSensitive(PathSensitivity.NONE) @InputFile abstract RegularFileProperty getSourceFile(); @PathSensitive(PathSensitivity.NONE) @InputFile
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 5.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java
* * @throws ExecutionException if the computation threw an exception * @throws CancellationException if the computation was cancelled */ @CanIgnoreReturnValue @ParametricNullness public static <V extends @Nullable Object> V getUninterruptibly(Future<V> future) throws ExecutionException { boolean interrupted = false; try { while (true) { try { return future.get();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 20.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/TestThread.java
* callAndAssertWaits} by the test. * * @param <L> the type of the lock-like object to be used * @author Justin T. Sampson */ public final class TestThread<L> extends Thread implements TearDown { private static final long DUE_DILIGENCE_MILLIS = 100; private static final long TIMEOUT_MILLIS = 5000; private final L lockLikeObject;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 10.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
import static org.apache.maven.cling.invoker.Utils.stripLeadingAndTrailingQuotes; import static org.apache.maven.cling.invoker.Utils.toMap; public abstract class BaseParser<O extends Options, R extends InvokerRequest<O>> implements Parser<R> { @SuppressWarnings("VisibilityModifier") public static class LocalContext { public final ParserRequest parserRequest;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (0) -
docs/en/overrides/main.html
{% extends "base.html" %} {% block announce %} <div class="announce-wrapper"> <div id="announce-left"> <div class="item"> <a class="announce-link" href="https://twitter.com/fastapi" target="_blank"> <span class="twemoji twitter"> {% include ".icons/fontawesome/brands/twitter.svg" %} </span> Follow <strong>@fastapi</strong> on <strong>Twitter</strong> to stay updated </a> </div> <div class="item">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Oct 31 09:13:26 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
import org.lastaflute.web.Execute; import org.lastaflute.web.response.JsonResponse; import org.lastaflute.web.response.StreamResponse; import jakarta.annotation.Resource; public class ApiAdminDictStopwordsAction extends FessApiAdminAction { private static final Logger logger = LogManager.getLogger(ApiAdminDictStopwordsAction.class); @Resource private StopwordsService stopwordsService;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.2K bytes - Viewed (0)