- Sort Score
- Num 10 results
- Language All
Results 1061 - 1070 of 3,666 for hist (0.28 seconds)
-
src/test/java/jcifs/CIFSContextTest.java
// Given String hint = "hint"; Throwable error = new Exception(); when(mockContext.renewCredentials(hint, error)).thenReturn(true); // When boolean renewed = mockContext.renewCredentials(hint, error); // Then assertTrue(renewed); verify(mockContext).renewCredentials(hint, error); }Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.8K bytes - Click Count (0) -
docs/batch-jobs/README.md
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Oct 06 06:00:43 GMT 2022 - 4.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/exception/ExceptionSummary.java
private String message; private String reference; private List<ExceptionSummary> children; public ExceptionSummary(Throwable exception, String message, String reference) { this(exception, message, reference, null); } public ExceptionSummary(Throwable exception, String message, String reference, List<ExceptionSummary> children) { this.exception = exception;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildListCalculator.java
@Singleton public class BuildListCalculator { public ProjectBuildList calculateProjectBuilds(MavenSession session, List<TaskSegment> taskSegments) { List<ProjectSegment> projectBuilds = new ArrayList<>(); MavenProject rootProject = session.getTopLevelProject(); for (TaskSegment taskSegment : taskSegments) { List<MavenProject> projects; if (taskSegment.isAggregating()) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionPlanItem.java
public ExecutionPlanItem(MojoExecution mojoExecution) { this.mojoExecution = mojoExecution; } public static List<ExecutionPlanItem> createExecutionPlanItems( MavenProject mavenProject, List<MojoExecution> executions) { BuilderCommon.attachToThread(mavenProject); List<ExecutionPlanItem> result = new ArrayList<>(); for (MojoExecution mojoExecution : executions) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.5K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnenc/EncryptOptions.java
*/ Optional<Boolean> yes(); /** * Returns the list of encryption goals to be executed. * These goals can include operations like "init", "add-server", "delete-server", etc. * * @return an {@link Optional} containing the list of goals, or empty if not specified */ @Nonnull Optional<List<String>> goals();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 2K bytes - Click Count (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/SingletonImmutableList.java
import static java.util.Collections.singletonList; import java.util.List; /** * GWT emulated version of {@link SingletonImmutableList}. * * @author Hayward Chan */ final class SingletonImmutableList<E> extends ForwardingImmutableList<E> { private final transient List<E> delegate; private final E element; SingletonImmutableList(E element) {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 01 22:23:20 GMT 2025 - 1.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java
import org.apache.maven.project.Graph.Vertex; /** * ProjectSorter */ public class ProjectSorter { private Graph graph; private List<MavenProject> sortedProjects; private Map<String, MavenProject> projectMap; /** * Sort a list of projects. * <ul> * <li>collect all the vertices for the projects that we want to build.</li>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 10.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginArtifactsCache.java
*/ class CacheRecord { private final List<Artifact> artifacts; public List<Artifact> getArtifacts() { return artifacts; } public PluginResolutionException getException() { return exception; } private final PluginResolutionException exception; public CacheRecord(List<Artifact> artifacts) { this.artifacts = artifacts;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java
* <p>The default implementation returns an empty list, which means to apply a language-dependent pattern. * For example, for the Java language, the pattern includes all files with the {@code .java} suffix.</p> * * @see java.nio.file.FileSystem#getPathMatcher(String) */ default List<String> includes() { return List.of(); } /** * {@return the list of patterns for the files to exclude}Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 07 13:11:07 GMT 2025 - 14.2K bytes - Click Count (0)