Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 231 for conflicting (0.15 sec)

  1. 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)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/TaskOptionsSpec.groovy

                            }
                        }
                    }
                    """
        }
    
        def "will prioritize built-in option over a task option with a conflicting name"() {
            when:
            buildScript """
                ${defineTaskWithProfileOption()}
    
                tasks.register('mytask', MyTask.class)
            """
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler.java

            resolutionAction.execute(result);
            if (selected != null) {
                maybeSetReason(conflict.participants, selected);
            }
            LOGGER.debug("Selected {} from conflicting modules {}.", selected, conflict.candidates);
        }
    
        private void maybeSetReason(Set<ModuleIdentifier> partifipants, ComponentResolutionState selected) {
            for (ModuleIdentifier identifier : partifipants) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. native-image-tests/src/main/kotlin/okhttp3/RunTests.kt

     */
    fun buildTestEngine(): TestEngine = JupiterTestEngine()
    
    /**
     * Returns a fixed set of test classes from testlist.txt, skipping any not found in the
     * current classpath.  The IDE runs with less classes to avoid conflicting module ownership.
     */
    fun testSelectors(inputFile: File? = null): List<DiscoverySelector> {
      val sampleTestClass = SampleTest::class.java
    
      val lines =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

            dependencies.assertHasLibrary('TEST', 'compile-1.0.jar')
            dependencies.assertHasLibrary('TEST', 'compileOnly-1.0.jar')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void "conflicting versions of the same library requested for compile and compile-only mapped to IDEA scopes"() {
            // given
            mavenRepo.module('org.gradle.test', 'bothCompileAndCompileOnly', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

                                    Version.V40,
                                    "Ignored POM import for: " + toString(dependency) + " as already imported "
                                            + toString(present) + ". Add the conflicting managed dependency directly "
                                            + "to the dependencyManagement section of the POM.");
                        }
                    }
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/net/http/routing_index.go

    		// All paths that a dollar pattern matches end in a slash; no paths that
    		// an ordinary pattern matches do. So only other dollar or multi
    		// patterns can conflict with a dollar pattern. Furthermore, conflicting
    		// dollar patterns must have the {$} in the same position.
    		return apply(idx.segments[routingIndexKey{s: "/", pos: len(pat.segments) - 1}])
    	}
    	// For ordinary and multi patterns, the only conflicts can be with a multi,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/INSTALL.md

    you are likely using a go version prior to 1.16 and must explicitly specify the k8s.io/client-go version you want.
    For example:
    ```sh
    go get k8s.io/client-go@v0.20.4
    ```
    
    ### Conflicting requirements for older client-go versions
    
    If you get a message like
    `module k8s.io/api@latest found, but does not contain package k8s.io/api/auditregistration/v1alpha1`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    	// errReasonEnforced is the reason for added node affinity not matching.
    	errReasonEnforced = "node(s) didn't match scheduler-enforced node affinity"
    
    	// errReasonConflict is the reason for pod's conflicting affinity rules.
    	errReasonConflict = "pod affinity terms conflict"
    )
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (pl *NodeAffinity) Name() string {
    	return Name
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

          if (it == resource_id_to_device_.end()) continue;
          if (!result || result == it->second) {
            result = it->getSecond();
            continue;
          }
          // Got conflicting assignments
          return std::nullopt;
        }
        return result;
      }
    
      // Records the device assignment for a resource. If the new assignment
      // conflicts with an existing one, returns an error.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top