Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 750 for Conflict (0.14 sec)

  1. src/net/http/routing_index.go

    		}
    	}
    }
    
    // possiblyConflictingPatterns calls f on all patterns that might conflict with
    // pat. If f returns a non-nil error, possiblyConflictingPatterns returns immediately
    // with that error.
    //
    // To be correct, possiblyConflictingPatterns must include all patterns that
    // might conflict. But it may also include patterns that cannot conflict.
    // For instance, an implementation that returns all registered patterns is correct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. CODE_OF_CONDUCT.md

    If you are experiencing or witnessing conflict, we ask you to use the following escalation strategy to address the conflict:
    
    1.  Address the perceived conflict directly with those involved, preferably in a
        real-time medium.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 05 18:43:16 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/PotentialConflict.java

     */
    
    package org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.conflicts;
    
    import org.gradle.api.Action;
    import org.gradle.api.artifacts.ModuleIdentifier;
    
    public interface PotentialConflict {
        /**
         * Executes an action with each module that participates in the conflict.
         * In a typical version conflict, e.g. org:foo:1.0 VS org:foo:2.0 there is only one participating module: org:foo.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/options/validation_test.go

    )
    
    func TestValidateAPIPriorityAndFairness(t *testing.T) {
    	const conflict = "conflicts with --enable-priority-and-fairness=true"
    	tests := []struct {
    		runtimeConfig    string
    		errShouldContain string
    	}{
    		{
    			runtimeConfig:    "api/all=false",
    			errShouldContain: conflict,
    		},
    		{
    			runtimeConfig:    "api/beta=false",
    			errShouldContain: "",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverFactory.java

        // methods ----------------------------------------------------------------
    
        /**
         * Gets a conflict resolver of the specified type.
         *
         * @param type the type of conflict resolver to obtain
         * @return the conflict resolver
         * @throws ConflictResolverNotFoundException
         *          if the specified type was not found
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandlerTest.groovy

            !conflict.conflictExists()
    
            when:
            conflict = handler.registerCandidate(
                candidate(capability, cs2)
            )
    
            then:
            conflict.conflictExists()
    
            when:
            // use a reasonably high number so that the test becomes at best flaky if we break the contract
            50.times {
                ComponentState cs = component("group", "m_${it}")
                expectedIds << cs.id.module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                failure.assertHasCause("""Module 'cglib:cglib-nodep' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5($variant)]""")
            }
    
            where:
            fixConflict | description
            false       | 'conflict fix not applied'
            true        | 'conflict fix applied'
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/edit.go

    			prev := module.Version{Path: r.Path, Version: v}
    			if gover.ModCompare(r.Path, v, r.Version) > 0 {
    				conflicts = append(conflicts, Conflict{Path: []module.Version{prev}, Constraint: r})
    			} else {
    				conflicts = append(conflicts, Conflict{Path: []module.Version{r}, Constraint: prev})
    			}
    			continue
    		}
    
    		mustSelectVersion[r.Path] = r.Version
    		selectedRoot[r.Path] = r.Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/telemetry-default-selector.yaml

      namespace: ns1
    spec:
      metrics:
      - providers:
        - name: prometheus
        overrides:
        - match:
            metric: ALL_METRICS
          disabled: false
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: has-selector
      namespace: ns1
    spec:
      selector: # Since this has a selector, it shouldn't conflict with the other Telemetry in the namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/query.go

    }
    
    func reportConflict(pq *query, m module.Version, conflict versionReason) {
    	if pq.conflict != nil {
    		// We've already reported a conflict for the proposed query.
    		// Don't report it again, even if it has other conflicts.
    		return
    	}
    	pq.conflict = conflict.reason
    
    	proposed := versionReason{
    		version: m.Version,
    		reason:  pq,
    	}
    	if pq.isWildcard() && !conflict.reason.isWildcard() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top