Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 274 for GetID (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

        public ArtifactRepositoryPolicy getReleases() {
            return releases;
        }
    
        public String getKey() {
            return getId();
        }
    
        public String toString() {
            StringBuilder sb = new StringBuilder(256);
    
            sb.append("      id: ").append(getId()).append(LS);
            sb.append("      url: ").append(getUrl()).append(LS);
            sb.append("   layout: ").append(layout != null ? layout : "none");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 11K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                return userInfoBhv.selectByPK(id).map(e -> {
                    final Map<String, String> params = new LinkedHashMap<>();
                    params.put("User Info ID", e.getId());
                    params.put("Created Time", FessFunctions.formatDate(e.getCreatedAt()));
                    params.put("Updated Time", FessFunctions.formatDate(e.getUpdatedAt()));
                    return params;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/DefaultLifecyclesTest.java

            assertThat(dl.getLifeCycles().get(0).getId(), is("clean"));
            assertThat(dl.getLifeCycles().get(1).getId(), is("default"));
            assertThat(dl.getLifeCycles().get(2).getId(), is("site"));
            assertThat(dl.getLifeCycles().get(3).getId(), is("wrapper"));
            assertThat(dl.getLifeCycles().get(4).getId(), is("etl"));
        }
    
        private Lifecycle getLifeCycleById(String id) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

                return null;
            });
            stopwordsService.store(body.dictId, entity);
            return asJson(
                    new ApiResult.ApiUpdateResponse().id(String.valueOf(entity.getId())).created(true).status(ApiResult.Status.OK).result());
        }
    
        // POST /api/admin/dict/stopwords/setting/{dictId}
        @Execute
        public JsonResponse<ApiResult> post$setting(final String dictId, final EditBody body) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/artifact/repository/layout/DefaultRepositoryLayout.java

        private static final char PATH_SEPARATOR = '/';
    
        private static final char GROUP_SEPARATOR = '.';
    
        private static final char ARTIFACT_SEPARATOR = '-';
    
        public String getId() {
            return "default";
        }
    
        public String pathOf(Artifact artifact) {
            ArtifactHandler artifactHandler = artifact.getArtifactHandler();
    
            StringBuilder path = new StringBuilder(128);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

         * @return a profile
         */
        public static Profile convertToSettingsProfile(org.apache.maven.api.model.Profile modelProfile) {
            Profile.Builder profile = Profile.newBuilder();
    
            profile.id(modelProfile.getId());
    
            org.apache.maven.api.model.Activation modelActivation = modelProfile.getActivation();
    
            if (modelActivation != null) {
                Activation.Builder activation = Activation.newBuilder();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                .getDelegate()
                                .getDistributionManagement()
                                .getRepository();
                        if (r.getId() != null
                                && !r.getId().isEmpty()
                                && r.getUrl() != null
                                && !r.getUrl().isEmpty()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java

                    if (logger.isDebugEnabled()) {
                        logger.warn("Failed to retrieve plugin descriptor for {}: {}", plugin.getId(), e.getMessage(), e);
                    } else {
                        logger.warn("Failed to retrieve plugin descriptor for {}: {}", plugin.getId(), e.getMessage());
                    }
                }
            }
    
            return null;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java

        public static Profile convertFromProfileXmlProfile(org.apache.maven.profiles.Profile profileXmlProfile) {
            Profile profile = new Profile();
    
            profile.setId(profileXmlProfile.getId());
    
            profile.setSource("profiles.xml");
    
            org.apache.maven.profiles.Activation profileActivation = profileXmlProfile.getActivation();
    
            if (profileActivation != null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(4, executions.size());
            assertEquals("default-resources", executions.get(0).getId());
            assertEquals("default-testResources", executions.get(1).getId());
            assertEquals("test-1", executions.get(2).getId());
            assertEquals("test-2", executions.get(3).getId());
        }
    
        @Test
        void testPluginDeclarationsRetainPomOrderAfterInjectionOfDefaultPlugins() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
Back to top