Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 231 for conflicting (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

            host: reviews
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
      namespace: foo
    spec:
      hosts:
      - reviews # shouldn't generate an error as there's no conflicting VirtualService
      http:
      - route:
        - destination:
            host: reviews
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
      namespace: bar
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 3.3K 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. pkg/scheduler/framework/plugins/helper/spread.go

    	rsl appslisters.ReplicaSetLister,
    	ssl appslisters.StatefulSetLister,
    ) labels.Selector {
    	labelSet := make(labels.Set)
    	// Since services, RCs, RSs and SSs match the pod, they won't have conflicting
    	// labels. Merging is safe.
    
    	if services, err := GetPodServices(sl, pod); err == nil {
    		for _, service := range services {
    			labelSet = labels.Merge(labelSet, service.Spec.Selector)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 20:04:48 UTC 2021
    - 3.4K bytes
    - Viewed (0)
Back to top