Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for resume (0.22 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java

        /**
         * Indicates whether or not the build could be resumed by a second invocation of Maven.
         * @see BuildResumptionDataRepository
         * @return <code>true</code> when it is possible to resume the build, <code>false</code> otherwise.
         */
        boolean canResume();
    
        /**
         * Indicate that the build can or cannot be resumed by a second invocation of Maven.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionAnalyzer.java

    /**
     * Instances of this class are responsible for determining whether it makes sense to "resume" a build (i.e., using
     * the {@code --resume} flag.
     */
    public interface BuildResumptionAnalyzer {
        /**
         * Construct an instance of {@link BuildResumptionData} based on the outcome of the current Maven build.
         * @param result Outcome of the current Maven build.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

     */
    @Named
    @Singleton
    public class DefaultBuildResumptionDataRepository implements BuildResumptionDataRepository {
        private static final String RESUME_PROPERTIES_FILENAME = "resume.properties";
        private static final String REMAINING_PROJECTS = "remainingProjects";
        private static final String PROPERTY_DELIMITER = ", ";
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/samr.java

            public int resume_handle;
            public int acct_flags;
            public SamrSamArray sam;
            public int num_entries;
    
    
            public SamrEnumerateAliasesInDomain ( rpc.policy_handle domain_handle, int resume_handle, int acct_flags, SamrSamArray sam,
                    int num_entries ) {
                this.domain_handle = domain_handle;
                this.resume_handle = resume_handle;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 15.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java

        // flags
    
        static final int FLAGS_CLOSE_AFTER_THIS_REQUEST = 0x01;
        static final int FLAGS_CLOSE_IF_END_REACHED = 0x02;
        static final int FLAGS_RETURN_RESUME_KEYS = 0x04;
        static final int FLAGS_RESUME_FROM_PREVIOUS_END = 0x08;
        static final int FLAGS_FIND_WITH_BACKUP_INTENT = 0x10;
    
        private int searchAttributes;
        private int tflags;
        private int informationLevel;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java

    /**
     * Instances of this interface retrieve and store data for the --resume / -r feature. This data is used to ensure newer
     * builds of the same project, that have the -r command-line flag, skip successfully built projects during earlier
     * invocations of Maven.
     */
    public interface BuildResumptionDataRepository {
        /**
         * Persists any data needed to resume the build at a later point in time, using a new Maven invocation. This method
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java

     * under the License.
     */
    package org.apache.maven.execution;
    
    import java.util.List;
    
    /**
     * This class holds the information required to enable resuming a Maven build with {@code --resume}.
     */
    public class BuildResumptionData {
        /**
         * The list of projects that remain to be built.
         */
        private final List<String> remainingProjects;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

            Result<ProjectDependencyGraph> result = graphBuilder.build(session);
    
            assertThat(result.hasErrors())
                    .withFailMessage("Expected result not to have errors")
                    .isFalse();
            List<MavenProject> actualReactorProjects = result.get().getSortedProjects();
            assertEquals(2, actualReactorProjects.size());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 27.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

                this.domain_handle = domain_handle;
                this.resume_handle = resume_handle;
                this.acct_flags = acct_flags;
                this.sam = sam;
                this.num_entries = num_entries;
            }
    
            public void encode_in(NdrBuffer _dst) throws NdrException {
                domain_handle.encode(_dst);
                _dst.enc_ndr_long(resume_handle);
                _dst.enc_ndr_long(acct_flags);
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 14K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

            public int prefmaxlen;
            public int totalentries;
            public int resume_handle;
    
            public ShareEnumAll(String servername,
                        int level,
                        NdrObject info,
                        int prefmaxlen,
                        int totalentries,
                        int resume_handle) {
                this.servername = servername;
                this.level = level;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 18.4K bytes
    - Viewed (0)
Back to top