Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,153 for projectId (0.07 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        Path getPomPath();
    
        /**
         * Sets the POM file of the project to build. Note that providing the path to a POM file via this method will make
         * the model builder operate in project mode. This mode is meant for effective models that are employed during the
         * build process of a local project. Hence the effective model will support the notion of a project directory. To
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/forked/DefaultForkedMavenInvoker.java

                cmdAndArguments.add("--resume-from");
                cmdAndArguments.add(mavenOptions.resumeFrom().get());
            }
            if (mavenOptions.projects().isPresent()) {
                cmdAndArguments.add("--projects");
                cmdAndArguments.add(String.join(",", mavenOptions.projects().get()));
            }
            if (mavenOptions.alsoMake().orElse(false)) {
                cmdAndArguments.add("--also-make");
            }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/curl/io/ContentOutputStream.java

    public class ContentOutputStream extends DeferredFileOutputStream {
    
        protected static final Logger logger = Logger.getLogger(ContentOutputStream.class.getName());
    
        protected static final String PREFIX = "curl4j-";
    
        protected static final String SUFFIX = ".tmp";
    
        protected boolean done = false;
    
        public ContentOutputStream(final int threshold, final File tmpDir) {
    Registered: Thu Oct 31 02:32:13 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/admin/dict/DictCrudTestBase.java

    import io.restassured.path.json.JsonPath;
    
    public abstract class DictCrudTestBase extends CrudTestBase {
        protected String dictId;
    
        abstract protected String getDictType();
    
        private static final String LIST_ENDPOINT_SUFFIX = "settings";
        private static final String ITEM_ENDPOINT_SUFFIX = "setting";
    
        @Override
        protected String getListEndpointSuffix() {
            return LIST_ENDPOINT_SUFFIX + "/" + dictId;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java

        Optional<Boolean> resume();
    
        /**
         * Returns the project to resume the build from.
         *
         * @return an {@link Optional} containing the project name to resume from, or empty if not specified
         */
        @Nonnull
        Optional<String> resumeFrom();
    
        /**
         * Returns the list of specified reactor projects to build instead of all projects.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 03 16:03:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzer.java

                    sortedProjects.stream().noneMatch(project -> result.getBuildSummary(project) instanceof BuildSuccess);
    
            if (hasNoSuccess) {
                return Optional.empty();
            }
    
            List<String> remainingProjects = sortedProjects.stream()
                    .filter(project -> result.getBuildSummary(project) == null
                            || result.getBuildSummary(project) instanceof BuildFailure)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsCrawlingInfoParamCB.java

            }
            return _specification;
        }
    
        protected void assertQueryPurpose() {
        }
    
        protected void assertAggregationPurpose() {
        }
    
        protected void assertSpecifyPurpose() {
        }
    
        public static class HpSpecification {
            protected List<String> columnList = new ArrayList<>();
    
            public void doColumn(String name) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/bsentity/BsFavoriteLog.java

        /** createdAt */
        protected LocalDateTime createdAt;
    
        /** docId */
        protected String docId;
    
        /** queryId */
        protected String queryId;
    
        /** url */
        protected String url;
    
        /** userInfoId */
        protected String userInfoId;
    
        // [Referrers] *comment only
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsDuplicateHostCB.java

            }
            return _specification;
        }
    
        protected void assertQueryPurpose() {
        }
    
        protected void assertAggregationPurpose() {
        }
    
        protected void assertSpecifyPurpose() {
        }
    
        public static class HpSpecification {
            protected List<String> columnList = new ArrayList<>();
    
            public void doColumn(String name) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsJobLogCB.java

            }
            return _specification;
        }
    
        protected void assertQueryPurpose() {
        }
    
        protected void assertAggregationPurpose() {
        }
    
        protected void assertSpecifyPurpose() {
        }
    
        public static class HpSpecification {
            protected List<String> columnList = new ArrayList<>();
    
            public void doColumn(String name) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top