Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 231 for conflicting (0.16 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

         * put duplicate dependencies on the classpath. The order will always be arbitrary and break one
         * use case or another.
         */
        @Test
        @ToBeFixedForConfigurationCache
        void "conflicting versions of the same library for compile and compile-only mapped to classpath"() {
            // given
            mavenRepo.module('org.gradle.test', 'conflictingDependency', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TableCollectors.java

        return TableCollectors.<T, R, C, V, I>toTable(
            rowFunction,
            columnFunction,
            valueFunction,
            (v1, v2) -> {
              throw new IllegalStateException("Conflicting values " + v1 + " and " + v2);
            },
            tableSupplier);
      }
    
      static <
              T extends @Nullable Object,
              R extends @Nullable Object,
              C extends @Nullable Object,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/memory/store.go

    var (
    	errNotFound      = errors.New("item not found")
    	errAlreadyExists = errors.New("item already exists")
    	// TODO: can we make this compatible with kerror.IsConflict without imports the library?
    	errConflict = errors.New("conflicting resource version, try again")
    )
    
    const ResourceVersion string = "ResourceVersion"
    
    // Make creates an in-memory config store from a config schemas
    // It is with validation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:property-validation:cannot-write-to-reserved-location' : 'Cannot write to reserved location',
            'validation:property-validation:conflicting-annotations' : 'Type has conflicting annotation',
            'validation:property-validation:ignored-property-must-not-be-annotated' : 'Has wrong combination of annotations',
            'validation:property-validation:implicit-dependency' : 'Property has implicit dependency',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/fix/fix.go

    }
    
    // renameTop renames all references to the top-level name old.
    // It reports whether it makes any changes.
    func renameTop(f *ast.File, old, new string) bool {
    	var fixed bool
    
    	// Rename any conflicting imports
    	// (assuming package name is last element of path).
    	for _, s := range f.Imports {
    		if s.Name != nil {
    			if s.Name.Name == old {
    				s.Name.Name = new
    				fixed = true
    			}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. test-site/activator

      JAVA_OPTS          Environment variable, if unset uses ""
      SBT_OPTS           Environment variable, if unset uses ""
      ACTIVATOR_OPTS     Environment variable, if unset uses ""
    
    In the case of duplicated or conflicting options, the order above
    shows precedence: environment variables lowest, command line options highest.
    EOM
    }
    
    ###  ------------------------------- ###
    ###  Main script                     ###
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  10. 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)
Back to top