Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 231 for conflicting (0.23 sec)

  1. pkg/config/analysis/analyzers/virtualservice/conflictingmeshgatewayhosts.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // ConflictingMeshGatewayHostsAnalyzer checks if multiple virtual services
    // associated with the mesh gateway have conflicting hosts. The behavior is
    // undefined if conflicts exist.
    type ConflictingMeshGatewayHostsAnalyzer struct{}
    
    var _ analysis.Analyzer = &ConflictingMeshGatewayHostsAnalyzer{}
    
    // Metadata implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainerTest.groovy

            expect:
            container.size == 0
        }
    
        def "contains conflicting element"() {
            container.newElement("a", [1], null)
            container.newElement("b", [1, 2], null)
            expect:
            container.size == 1
            container.popConflict().toString() == "b:1,2"
        }
    
        def "contains multiple conflicting elements"() {
            container.newElement("a", [1, 2], null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/DuplicateMojoDescriptorException.java

                    + System.lineSeparator() + "Existing implementation is: " + existingImplementation
                    + System.lineSeparator() + "Conflicting implementation is: " + newImplementation);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/pod_devices.go

    		for k, v := range resp.Envs {
    			if e, ok := envsMap[k]; ok {
    				klog.V(4).InfoS("Skip existing env", "envKey", k, "envValue", v)
    				if e != v {
    					klog.ErrorS(nil, "Environment variable has conflicting setting", "envKey", k, "expected", v, "got", e)
    				}
    				continue
    			}
    			klog.V(4).InfoS("Add env", "envKey", k, "envValue", v)
    			envsMap[k] = v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/NearestConflictResolver.java

     */
    package org.apache.maven.repository.legacy.resolver.conflict;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.artifact.resolver.ResolutionNode;
    
    /**
     * Resolves conflicting artifacts by always selecting the nearest declaration. Nearest is defined as the
     * declaration that has the least transitive steps away from the project being built.
     *
     * @since 3.0
     */
    @Named("nearest")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/launch_to_device_attribute.mlir

    // -----
    
    
    // Tests TensorFlow op with conflicting `device` attribute compared to parent
    // `tf_device.launch`.
    func.func @conflicting_device() {
      tf_executor.graph {
        %0 = tf_executor.island {
          // expected-error@+1 {{'tf_device.launch' op inner op has conflicting 'device' attribute, got 'GPU:0' but expected 'CPU:0'}}
          "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 17:10:32 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_shadow.txt

    stdout '^\(.*gopath(\\|/)src(\\|/)shadow(\\|/)root2(\\|/)src(\\|/)foo\) \('$WORK'(\\|/)?gopath(\\|/)src(\\|/)shadow(\\|/)root1(\\|/)src(\\|/)foo\)$'
    
    # The error for go install should mention the conflicting directory.
    ! go install -n ./shadow/root2/src/foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictResolutionResult.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder.ComponentState;
    
    public interface ConflictResolutionResult {
    
        /**
         * Performs an action on all conflicting modules.
         * @param action the action to execute on each participating module
         */
        void withParticipatingModules(Action<? super ModuleIdentifier> action);
    
        /**
         * The actual selected component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. releasenotes/notes/gateway-api118.yaml

        Additionally, users using this feature must update their control plane to Istio 1.16.5+ or 1.17.3+ before adopting Istio 1.18.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 08:37:21 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesDefiningUsingConfigurationsIntegrationTest.groovy

        @UsesSample("dependencyManagement/definingUsingConfigurations-custom")
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor) // Sample only works with isolated distribution classpath, because otherwise multiple JARs contain conflicting versions of 'javax/servlet/descriptor/JspConfigDescriptor'
        def "can declare and resolve custom configuration with #dsl dsl"() {
            setup:
            executer.inDirectory(sample.dir.file(dsl))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top