Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for _get_settings (0.15 sec)

  1. pilot/pkg/model/cluster_local.go

    	hosts := ClusterLocalHosts{
    		specific: make(map[host.Name]struct{}, 0),
    		wildcard: make(map[host.Name]struct{}, 0),
    	}
    	for _, serviceSettings := range e.Mesh().ServiceSettings {
    		if serviceSettings.GetSettings().GetClusterLocal() {
    			for _, h := range serviceSettings.GetHosts() {
    				hostname := host.Name(h)
    				if hostname.IsWildCarded() {
    					hosts.wildcard.Insert(hostname)
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/BuildStateFactory.java

            // Expose any contributions from the parent's settings
            build.getMutableModel().setClassLoaderScope(() -> owner.getMutableModel().getSettings().getClassLoaderScope());
            return build;
        }
    
        public NestedBuildTree createNestedTree(
            BuildInvocationScopeId buildInvocationScopeId,
            BuildDefinition buildDefinition,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/SettingsDelegate.kt

                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        internal
        abstract val delegate: Settings
    
        override fun getSettings(): Settings =
            delegate.settings
    
        override fun getBuildscript(): ScriptHandler =
            delegate.buildscript
    
        override fun getSettingsDir(): File =
            delegate.settingsDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top