Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for get$setting (0.14 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

        }
    
        @Deprecated
        public ArtifactRepository getMirrorRepository(ArtifactRepository repository) {
    
            Mirror mirror = mirrorSelector.getMirror(
                    repository, legacySupport.getSession().getSettings().getMirrors());
    
            if (mirror != null) {
                String id = mirror.getId();
                if (id == null) {
                    // TODO this should be illegal in settings.xml
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java

                        PluginNotFoundException, PluginVersionNotFoundException {
            return verifyPlugin(plugin, project, session.getSettings(), session.getLocalRepository());
        }
    
        public PluginDescriptor loadPluginFully(Plugin plugin, MavenProject project, MavenSession session)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/ProtoSession.java

            return new ProtoSession(
                    session, repositorySystem, repositories, null, lookup, new Context(userProperties, systemProperties));
        }
    
        @Override
        public Settings getSettings() {
            return Settings.newInstance();
        }
    
        @Override
        public Map<String, String> getUserProperties() {
            return Map.of();
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. mockwebserver-deprecated/api/mockwebserver.api

    	public final fun getHeadersDelay (Ljava/util/concurrent/TimeUnit;)J
    	public final fun getHttp2ErrorCode ()I
    	public final fun getPushPromises ()Ljava/util/List;
    	public final fun getSettings ()Lokhttp3/internal/http2/Settings;
    	public final fun getSocketPolicy ()Lokhttp3/mockwebserver/SocketPolicy;
    	public final fun getStatus ()Ljava/lang/String;
    	public final fun getThrottleBytesPerPeriod ()J
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

         *
         * @return The system properties, never {@code null}.
         */
        public Properties getSystemProperties() {
            return request.getSystemProperties();
        }
    
        public Settings getSettings() {
            return settings;
        }
    
        public List<MavenProject> getProjects() {
            return projects;
        }
    
        /**
         * @deprecated use {@link #getTopDirectory()} ()}
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                    .flatMap(p -> p.getModel().getDelegate().getProfiles().stream())
                    .map(Profile::getId);
            final Stream<String> settingsProfiles =
                    session.getSettings().getProfiles().stream().map(org.apache.maven.settings.Profile::getId);
            final Stream<String> superPomProfiles = superPomModels.values().stream()
                    .flatMap(p -> p.getProfiles().stream())
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 27.5K bytes
    - Viewed (1)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

     */
    @Experimental
    @ThreadSafe
    public interface Session {
    
        /**
         * Retrieves the settings for the current session.
         *
         * @return the settings instance
         */
        @Nonnull
        Settings getSettings();
    
        /**
         * Retrieves the local repository associated with this session.
         *
         * @return the local repository instance
         */
        @Nonnull
        LocalRepository getLocalRepository();
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 16:43:07 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. test-site/activator-launch-1.3.2.jar

    pushContext(); public static void popContext(); public final void configureDefault(); private synchronized boolean isInterrupted(); public final void checkInterrupted(); public static String getWorkingRevision(); public final core.settings.IvySettings getSettings(); public final core.event.EventManager getEventManager(); public final core.resolve.ResolveEngine getResolveEngine(); public final void setSettings(core.settings.IvySettings); public util.MessageLoggerEngine getLoggerEngine(); static void <clinit>();...
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (0)
  9. cmd/site-replication.go

    		LDAPGroupSearchBase:    globalIAMSys.LDAPConfig.LDAP.GroupSearchBaseDistName,
    		LDAPGroupSearchFilter:  globalIAMSys.LDAPConfig.LDAP.GroupSearchFilter,
    	}
    	s.OpenID = globalIAMSys.OpenIDConfig.GetSettings()
    	if s.OpenID.Enabled {
    		s.OpenID.Region = globalSite.Region()
    	}
    	return s
    }
    
    func (c *SiteReplicationSys) validateIDPSettings(ctx context.Context, peers []PeerSiteInfo) error {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
Back to top