Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 231 for conflicting (0.37 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    		s.AddKnownTypeWithName(gv.WithKind("InternalSimple"), &runtimetesting.ExternalSimple{})
    		panicked <- false
    	}()
    	if !<-panicked {
    		t.Errorf("Expected AddKnownTypesWithName to panic with conflicting type registrations")
    	}
    
    	go func() {
    		defer func() {
    			if recover() != nil {
    				panicked <- true
    			}
    		}()
    
    		s.AddUnversionedTypes(gv, &runtimetesting.InternalSimple{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  2. operator/pkg/object/objects.go

    func (o *K8sObject) UnstructuredObject() *unstructured.Unstructured {
    	return o.object
    }
    
    // ResolveK8sConflict - This method resolves k8s object possible
    // conflicting settings. Which K8sObjects may need such method
    // depends on the type of the K8sObject.
    func (o *K8sObject) ResolveK8sConflict() *K8sObject {
    	if o.Kind == names.PDBStr {
    		return resolvePDBConflict(o)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
  3. pkg/config/analysis/msg/messages.gen.go

    	// Description: Conflicting hosts on VirtualServices associated with mesh gateway
    	ConflictingMeshGatewayVirtualServiceHosts = diag.NewMessageType(diag.Error, "IST0109", "The VirtualServices %s associated with mesh gateway define the same host %s which can lead to undefined behavior. This can be fixed by merging the conflicting VirtualServices into a single resource.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice_test.go

    				Uri: &networking.StringMatch{
    					MatchType: &networking.StringMatch_Regex{Regex: "^/productpage"},
    				},
    			},
    			expected: false,
    		},
    		{
    			name: "regex uri in root and delegate has conflicting uri match",
    			root: &networking.HTTPMatchRequest{
    				Uri: &networking.StringMatch{
    					MatchType: &networking.StringMatch_Regex{Regex: "^/productpage"},
    				},
    			},
    			leaf: &networking.HTTPMatchRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. src/net/http/pattern.go

    	rel := combineRelationships(mrel, prel)
    	if rel == equivalent {
    		return fmt.Sprintf("%s matches the same requests as %s", p1, p2)
    	}
    	if rel != overlaps {
    		panic("describeConflict called with non-conflicting patterns")
    	}
    	if prel == overlaps {
    		return fmt.Sprintf(`%[1]s and %[2]s both match some paths, like %[3]q.
    But neither is more specific than the other.
    %[1]s matches %[4]q, but %[2]s doesn't.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                            }
    
                            if (resolved == null) {
                                // TODO add better exception that can detail the two conflicting artifacts
                                ArtifactResolutionException are = new ArtifactResolutionException(
                                        "Cannot resolve artifact version conflict between "
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            json.project.configurations[0].dependencies[1].name == "grr:bzz:1.0"
            json.project.configurations[0].dependencies[1].resolvable == 'FAILED'
        }
    
        def "conflicting dependencies are marked as such"() {
            given:
            mavenRepo.module("foo", "bar", "1.0").publish()
            mavenRepo.module("foo", "bar", "2.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// StatusReasonAlreadyExists means the resource you are creating already exists.
    	// Details (optional):
    	//   "kind" string - the kind attribute of the conflicting resource
    	//   "id"   string - the identifier of the conflicting resource
    	// Status code 409
    	StatusReasonAlreadyExists StatusReason = "AlreadyExists"
    
    	// StatusReasonConflict means the requested operation cannot be completed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // well-formed. The zero value of Tag is Und.
    type Tag struct {
    	// TODO: the following fields have the form TagTypeID. This name is chosen
    	// to allow refactoring the public package without conflicting with its
    	// Base, Script, and Region methods. Once the transition is fully completed
    	// the ID can be stripped from the name.
    
    	LangID   Language
    	RegionID Region
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/envcmd/env.go

    			base.Fatalf("go: multiple values for key: %s", key)
    		}
    		add[key] = val
    		if osVal := osEnv[key]; osVal != "" && osVal != val {
    			fmt.Fprintf(os.Stderr, "warning: go env -w %s=... does not override conflicting OS environment variable\n", key)
    		}
    	}
    
    	if err := checkBuildConfig(add, nil); err != nil {
    		base.Fatal(err)
    	}
    
    	gotmp, okGOTMP := add["GOTMPDIR"]
    	if okGOTMP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top