Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 215 for conflicting (1.42 sec)

  1. pkg/config/analysis/analyzers/deployment/services.go

    				m.Line = line
    			}
    
    			// Reporting the message for the deployment, port and conflicting services.
    			c.Report(gvk.Deployment, m)
    		}
    	}
    }
    
    // analyzeDeploymentPortProtocol analyzes the targetPorts conflicting
    func (s *ServiceAssociationAnalyzer) analyzeDeploymentTargetPorts(r *resource.Instance, c analysis.Context) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue28268.go

    // errorcheck
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that follow-on errors due to conflicting
    // struct field and method names are suppressed.
    
    package p
    
    type T struct {
    	a, b, c int
    	E
    }
    
    type E struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 764 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top