Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 434 for Resolution (0.2 sec)

  1. pilot/pkg/xds/eds_test.go

    		})
    	}
    }
    
    // Validates the behavior when Service resolution type is updated after initial EDS push.
    // See https://github.com/istio/istio/issues/18355 for more details.
    func TestEDSServiceResolutionUpdate(t *testing.T) {
    	for _, resolution := range []model.Resolution{model.DNSLB, model.DNSRoundRobinLB} {
    		t.Run(fmt.Sprintf("resolution_%s", resolution), func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    [[sec:troubleshooting_dependency_resolution]]
    == Debugging dependency resolution
    
    Common dependency resolution issues, such as resolving version conflicts, are covered in <<viewing_debugging_dependencies.adoc#sec:debugging-build-scans,Troubleshooting Dependency Resolution>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/service.go

    	Alias
    )
    
    // String converts Resolution in to String.
    func (resolution Resolution) String() string {
    	switch resolution {
    	case ClientSideLB:
    		return "ClientSide"
    	case DNSLB:
    		return "DNS"
    	case DNSRoundRobinLB:
    		return "DNSRoundRobin"
    	case Passthrough:
    		return "Passthrough"
    	default:
    		return fmt.Sprintf("%d", int(resolution))
    	}
    }
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

     * <p>
     * Declares a <code>pmdAux</code> configuration to add transitive compileOnly dependencies to the PMD's auxclasspath. This is only needed if PMD complains about NoClassDefFoundError during type
     * resolution.
     * <p>
     * For each source set that is to be analyzed, a {@link Pmd} task is created and configured to analyze all Java code.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <description>The type of dependency.</description>
            </field>
          </fields>
        </class>
    
        <class xdoc.anchorName="resolution">
          <name>Resolution</name>
          <version>2.0.0+</version>
          <description>Dependency collection or resolution injection.</description>
          <fields>
            <field>
              <name>field</name>
              <required>false</required>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

    import com.github.javaparser.symbolsolver.javaparsermodel.JavaParserFacade
    import com.github.javaparser.symbolsolver.resolution.typesolvers.CombinedTypeSolver
    import com.github.javaparser.symbolsolver.resolution.typesolvers.JavaParserTypeSolver
    import com.github.javaparser.symbolsolver.resolution.typesolvers.ReflectionTypeSolver
    import gradlebuild.basics.util.KotlinSourceParser
    import org.gradle.workers.WorkAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 25 02:53:14 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

    import java.util.Map;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * A ModuleComponentRepository that loads and saves resolution results in the dependency resolution cache.
     *
     * The `LocateInCacheRepositoryAccess` provided by {@link #getLocalAccess()} will attempt to handle any resolution request
     * directly from the cache, checking for cache expiry based on the `ResolutionStrategy` in operation.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

        }
    
        // In theory we shouldn't allow this because it can lead to inconsistent dependency
        // resolution: it means that two strictly equivalent configurations, with the same
        // dependencies, could resolve differently in the same project, after some rules
        // have been added. However, the Nebula Resolution Rules plugin depends on this
        // behavior, because it downloads rules in a JSON format and applies them to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

                            module("org:c:2.0")
                        }
                    }
                }
            }
        }
    
        def "module selected by conflict resolution can be selected again in a another pass of conflict resolution"()
        {
            mavenRepo.module("org", "a", "1.0").publish()
            mavenRepo.module("org", "a", "2.0").dependsOn("org", "b", "2.5").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

    import org.jetbrains.kotlin.analysis.api.analyze
    import org.jetbrains.kotlin.analysis.api.annotations.annotations
    import org.jetbrains.kotlin.analysis.api.resolution.KaSuccessCallInfo
    import org.jetbrains.kotlin.analysis.api.resolution.successfulFunctionCallOrNull
    import org.jetbrains.kotlin.analysis.api.resolution.symbol
    import org.jetbrains.kotlin.analysis.api.standalone.buildStandaloneAnalysisAPISession
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top