- Sort Score
- Num 10 results
- Language All
Results 3571 - 3580 of 4,422 for Final (0.05 seconds)
-
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java
* @deprecated since 4.0.0, use {@code maven-api-impl} jar instead */ @Deprecated(since = "4.0.0") public class MavenSessionBuilderSupplier implements Supplier<SessionBuilder> { protected final RepositorySystem repositorySystem; protected final InternalScopeManager scopeManager; public MavenSessionBuilderSupplier(RepositorySystem repositorySystem) { this.repositorySystem = requireNonNull(repositorySystem);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Mar 28 11:22:05 GMT 2026 - 8.1K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrCloseHandle.java
/** * Creates a new request to close a SAM handle. * * @param policyHandle the policy handle to close */ public MsrpcSamrCloseHandle(final rpc.policy_handle policyHandle) { super(policyHandle); ptype = 0; flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.5K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/Internal.java
/** This class is for {@code com.google.common.util.concurrent} use only! */ @J2ktIncompatible @GwtIncompatible // java.time.Duration @IgnoreJRERequirement // We use this method only from within APIs that require a Duration. final class Internal { /** * Returns the number of nanoseconds of the given duration without throwing or overflowing. * * <p>Instead of throwing {@link ArithmeticException}, this method silently saturates to eitherCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Apr 14 16:07:06 GMT 2025 - 1.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/UrlNormalizingPostProcessor.java
* * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") class UrlNormalizingPostProcessor implements InterpolationPostProcessor { private static final Set<String> URL_EXPRESSIONS; static { Set<String> expressions = new HashSet<>(); expressions.add("project.url"); expressions.add("project.scm.url");Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 2.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
} /** * Adds a shutdown listener to be notified when the executor is shutting down. * * @param listener the shutdown listener to add */ public void addShutdownListener(final ShutdownListener listener) { shutdownListener = listener; } /** * Interface for listening to shutdown events. */ public interface ShutdownListener { /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.1K bytes - Click Count (0) -
guava/src/com/google/common/base/Ticker.java
/** * A ticker that reads the current time using {@link System#nanoTime}. * * @since 10.0 */ public static Ticker systemTicker() { return SYSTEM_TICKER; } private static final Ticker SYSTEM_TICKER = new Ticker() { @Override @SuppressWarnings("GoodTime") // reading system time without TimeSource public long read() { return System.nanoTime(); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 1.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpMemoryRegion.java
* * For TCP fallback, memory regions are just wrappers around * ByteBuffers since no real RDMA registration is needed. */ public class TcpMemoryRegion extends RdmaMemoryRegion { private static final AtomicInteger keyGenerator = new AtomicInteger(1000); /** * Create new TCP memory region * * @param buffer memory buffer * @param access access permissions (ignored for TCP) */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 2.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/IncludesArtifactFilter.java
import java.util.Set; import org.apache.maven.artifact.Artifact; /** * Filter to include from a list of artifact patterns. * */ public class IncludesArtifactFilter implements ArtifactFilter { private final Set<String> patterns; public IncludesArtifactFilter(List<String> patterns) { this.patterns = new LinkedHashSet<>(patterns); } @Override public boolean include(Artifact artifact) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/StandaloneTestPlugin.java
* run integration and unit tests. Use BuildPlugin if you want to build main * code as well as tests. */ public class StandaloneTestPlugin implements Plugin<Project> { @Override public void apply(final Project project) { project.getPluginManager().apply(StandaloneRestTestPlugin.class); project.getTasks().register("test", Test.class).configure(test -> {
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Jun 23 09:36:58 GMT 2021 - 1.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/ThreadFactoryBuilderTest.java
* @author Martin Buchholz */ @NullUnmarked @GwtIncompatible @J2ktIncompatible public class ThreadFactoryBuilderTest extends TestCase { private final Runnable monitoredRunnable = () -> completed = true; private static final UncaughtExceptionHandler UNCAUGHT_EXCEPTION_HANDLER = (thread, throwable) -> {}; private ThreadFactoryBuilder builder; private volatile boolean completed = false;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 7.8K bytes - Click Count (0)