Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 213 for conflicting (0.64 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

         *
         * The preferred version of a module provides a hint when resolving the version,
         * but will not be honored in the presence of conflicting constraints.
         *
         * @return the preferred version, or empty string if no preferred version specified. Never null.
         */
        String getPreferredVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            }
    
            where:
            mapping << [false, true]
        }
    
        def "reports failure when project dependency references a project with multiple conflicting publications"() {
            createBuildScripts("""
    project(":project2") {
        publishing {
            publications {
                extraComp(MavenPublication) {
                    from components.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. pkg/kube/informerfactory/factory.go

    		return
    	}
    	l := log.Warnf
    	if features.EnableUnsafeAssertions && !allowedOverlap(resource) {
    		l = log.Fatalf
    	}
    	l("for type %v, registered conflicting ObjectTransform. Stack: %v", resource, string(debug.Stack()))
    }
    
    func (f *informerFactory) makeStartableInformer(informer cache.SharedIndexInformer, key informerKey) StartableInformer {
    	return StartableInformer{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. tests/callbacks_test.go

    			results:   []string{"c3", "c1", "c5", "c2", "c4"},
    		},
    		{
    			callbacks: []callback{{h: c1, before: "c3", after: "c4"}, {h: c2, before: "c4", after: "c5"}, {h: c3, before: "c5"}, {h: c4}, {h: c5}},
    			err:       "conflicting",
    		},
    		{
    			callbacks: []callback{{h: c1}, {h: c2, before: "c4", after: "c5"}, {h: c3}, {h: c4}, {h: c5}, {h: c2, remove: true}},
    			results:   []string{"c1", "c3", "c4", "c5"},
    		},
    		{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/env_write.txt

    stdout /non-exist/gopath
    
    # go env -w does not override OS environment, and warns about that
    env GOPATH=$root/other
    go env -w GOPATH=$root/non-exist/gopath2
    stderr 'warning: go env -w GOPATH=... does not override conflicting OS environment variable'
    go env GOPATH
    stdout $root/other
    
    # but go env -w does do the update, and unsetting the env var exposes the change
    env GOPATH=
    go env GOPATH
    stdout $root/non-exist/gopath2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            }
    
            then:
            outputEquals """
    Type 'Whatever' property 'prop' has conflicting type annotations declared: @Input, @Output.
    
    Reason: The different annotations have different semantics and Gradle cannot determine which one to pick.
    
    Possible solution: Choose between one of the conflicting annotations.
    
    ${validationMessage("conflicting_annotations")}
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_device_propagation.cc

             isa<TF::IdentityOp, TF::IdentityNOp, TF::ShapeOp>(op);
    }
    
    // Finds nonconflicting TPU device for an operation from its operands. If an
    // operand has no device or a non TPU device, or if there are conflicting
    // devices, and empty StringRef will be returned. Control dependencies,
    // NextIteration.Source -> NextIteration.Sink token dependencies, and
    // LoopCond -> Switch data dependencies are ignored.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

            is ConeKotlinTypeProjectionIn -> "in ${type.renderTypeAsKotlinType()}"
            is ConeKotlinTypeProjectionOut -> "out ${type.renderTypeAsKotlinType()}"
            is ConeKotlinTypeConflictingProjection -> "CONFLICTING-PROJECTION ${type.renderTypeAsKotlinType()}"
            is ConeKotlinType -> renderTypeAsKotlinType()
        }
    
        private object DummyScopeProvider : FirScopeProvider() {
            override fun getUseSiteMemberScope(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsIntegrationTest.groovy

                    constraint('org:c:{strictly 1.0}', 'org:c:1.0')
                }
            }
        }
    
        @RequiredFeature(feature=GradleMetadataResolveRunner.GRADLE_METADATA, value="true")
        def "conflicting version constraints fail resolution"() {
            given:
            repository {
                'org:a:1.0' {
                    dependsOn(group: 'org', artifact: 'b', version: '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/labels.go

    	annotations := map[string]string{}
    
    	// Kubelet always overrides device plugin annotations if they are conflicting
    	for _, a := range opts.Annotations {
    		annotations[a.Name] = a.Value
    	}
    
    	annotations[containerHashLabel] = strconv.FormatUint(kubecontainer.HashContainer(container), 16)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top