Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 384 for getTid (0.18 sec)

  1. 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)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultLocalRepository.java

        }
    
        @Nonnull
        public org.eclipse.aether.repository.LocalRepository getRepository() {
            return repository;
        }
    
        @Nonnull
        @Override
        public String getId() {
            return repository.getId();
        }
    
        @Nonnull
        @Override
        public String getType() {
            return repository.getContentType();
        }
    
        @Nonnull
        @Override
        public Path getPath() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    length; public void BytesURLStreamHandle(byte[]); public java.net.URLConnection openConnection(java.net.URL); } org/codehaus/classworlds/ClassRealm.class package org.codehaus.classworlds; public abstract interface ClassRealm { public abstract String getId(); public abstract ClassWorld getWorld(); public abstract void importFrom(String, String) throws NoSuchRealmException; public abstract void addConstituent(java.net.URL); public abstract ClassRealm locateSourceRealm(String); public abstract void se...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 41.6K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/UserLocalArtifactRepository.java

            // with multiple local repository implementations yet.
            artifact.setFile(artifactFile);
    
            return artifact;
        }
    
        @Override
        public String getId() {
            return localRepository.getId();
        }
    
        @Override
        public String pathOfLocalRepositoryMetadata(ArtifactMetadata metadata, ArtifactRepository repository) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

         */
        public DefaultLifecycleMapping(final List<Lifecycle> lifecycles) {
            this.lifecycleMap =
                    Collections.unmodifiableMap(lifecycles.stream().collect(toMap(Lifecycle::getId, identity())));
        }
    
        /**
         * Plexus: Populates the lifecycle map from the injected list of lifecycle mappings (if not already done).
         */
        private synchronized void initLifecycleMap() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:46:36 GMT 2024
    - 4K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulatorTest.java

            Repository r = new Repository();
            r.setId("test");
            r.setUrl("file:///test");
    
            Profile p = new Profile();
            p.setId("test");
            p.addPluginRepository(r);
    
            Settings settings = new Settings();
            settings.addProfile(p);
            settings.addActiveProfile(p.getId());
    
            testee.populateFromSettings(request, settings);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

                }
                item = newItem;
            }
    
            public ProtwordsItem write(final ProtwordsItem oldItem) {
                try {
                    if ((item == null) || (item.getId() != oldItem.getId()) || !item.isUpdated()) {
                        writer.write(oldItem.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
                        return oldItem;
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                }
                item = newItem;
            }
    
            public KuromojiItem write(final KuromojiItem oldItem) {
                try {
                    if ((item == null) || (item.getId() != oldItem.getId()) || !item.isUpdated()) {
                        writer.write(oldItem.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
                        return oldItem;
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

                }
                item = newItem;
            }
    
            public StopwordsItem write(final StopwordsItem oldItem) {
                try {
                    if ((item == null) || (item.getId() != oldItem.getId()) || !item.isUpdated()) {
                        writer.write(oldItem.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
                        return oldItem;
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                }
                item = newItem;
            }
    
            public SynonymItem write(final SynonymItem oldItem) {
                try {
                    if ((item == null) || (item.getId() != oldItem.getId()) || !item.isUpdated()) {
                        writer.write(oldItem.toLineString());
                        writer.write(Constants.LINE_SEPARATOR);
                        return oldItem;
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.5K bytes
    - Viewed (0)
Back to top