Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 213 for conflicting (0.3 sec)

  1. pkg/test/framework/label/filter.go

    		} else {
    			present = append(present, l)
    		}
    	}
    
    	pSet := NewSet(present...)
    	aSet := NewSet(absent...)
    
    	if pSet.containsAny(aSet) || aSet.containsAny(pSet) {
    		return Selector{}, fmt.Errorf("conflicting selector specification: %q", s)
    	}
    
    	return NewSelector(present, absent), nil
    }
    
    // Selects returns true, if the given label set satisfies the Selector.
    func (f *Selector) Selects(inputs Set) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

                this.kind = kind
                this
            }
    
            ConflictingAnnotation inConflict(List<String> conflicting) {
                inConflict = conflicting
                this
            }
    
            ConflictingAnnotation inConflict(String... conflicting) {
                inConflict(Arrays.asList(conflicting))
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  3. src/runtime/defs_linux.go

    //go:build ignore
    
    /*
    Input to cgo -cdefs
    
    GOARCH=amd64 go tool cgo -cdefs defs_linux.go defs1_linux.go >defs_linux_amd64.h
    */
    
    package runtime
    
    /*
    // Linux glibc and Linux kernel define different and conflicting
    // definitions for struct sigaction, struct timespec, etc.
    // We want the kernel ones, which are in the asm/* headers.
    // But then we'd get conflicts when we include the system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsVisibilityIntegrationTest.groovy

                        }
                    }
                }
            """
    
            then:
            succeeds 'build'
        }
    
        def "can reliably compile and unit test a plugin that depends on a conflicting version off a non-public Gradle API"() {
            when:
            buildFile << testablePluginProject()
            buildFile << """
                dependencies {
                    implementation 'com.google.guava:guava:19.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

            when:
            changeMessage("goodbye world", first, second, third)
    
            then:
            succeeds("resolve")
        }
    
        def "produces a sensible error when nested builds define conflicting source mappings"() {
            given:
            vcsMapping('org.test:first', first)
            vcsMapping('org.test:second', second)
            nestedVcsMapping(first, 'org.test:third', third)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/workcmd/work.go

    specified has no effect.
    
    The replace directive has the same syntax as the replace directive in a
    go.mod file and takes precedence over replaces in go.mod files.  It is
    primarily intended to override conflicting replaces in different workspace
    modules.
    
    To determine whether the go command is operating in workspace mode, use
    the "go env GOWORK" command. This will specify the workspace file being
    used.
    `,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    		},
    	},
    	{
    		name:       "conflicting gateways detect",
    		inputFiles: []string{"testdata/conflicting-gateways.yaml"},
    		analyzer:   &gateway.ConflictingGatewayAnalyzer{},
    		expected: []message{
    			{msg.ConflictingGateways, "Gateway alpha"},
    			{msg.ConflictingGateways, "Gateway beta"},
    		},
    	},
    	{
    		name:       "conflicting gateways detect: no port",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

            result.testClass("SomeTests").assertTestCount(1, 0, 0)
            result.testClass("SomeTests").assertTestsExecuted('catAOk1')
        }
    
        def "emits warning when specifying a conflicting include/exclude"() {
            given:
            testSources.with {
                testClass('CategoryATests')
                    .withCategoryOrTag('CategoryA')
                    .with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. callbacks.go

    					sorted = append(sorted[:sortedIdx], append([]string{c.name}, sorted[sortedIdx:]...)...)
    				} else if curIdx > sortedIdx {
    					return fmt.Errorf("conflicting callback %s with before %s", c.name, c.before)
    				}
    			} else if idx := getRIndex(names, c.before); idx != -1 {
    				// if before callback exists
    				cs[idx].after = c.name
    			}
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/pkg.go

    // the existing package name and the provided name must match.
    func NewPkg(path, name string) *Pkg {
    	if p := pkgMap[path]; p != nil {
    		if name != "" && p.Name != name {
    			panic(fmt.Sprintf("conflicting package names %s and %s for path %q", p.Name, name, path))
    		}
    		return p
    	}
    
    	p := new(Pkg)
    	p.Path = path
    	p.Name = name
    	if path == "go.shape" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:28:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top