Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for convlit (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        void "can deal with transitive with parent in conflict"() {
            /*
                Graph looks likeā€¦
    
                \--- org:a:1.0
                     \--- org:in-conflict:1.0 -> 2.0
                          \--- org:target:1.0
                               \--- org:target-child:1.0
                \--- org:b:1.0
                     \--- org:b-child:1.0
                          \--- org:in-conflict:2.0 (*)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    	// Start with the current listener's filter chains.
    	merged = append(merged, current.chains...)
    
    	for _, incoming := range incoming {
    		conflict := false
    
    		for _, existing := range merged {
    			conflict = existing.conflictsWith(incoming)
    
    			if conflict {
    				// NOTE: While pluginParams.Service can be nil,
    				// this code cannot be reached if Service is nil because a pluginParams.Service can be nil only
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            mavenRepo.module("org.utils", "optional-lib", '5.0').publish()
    
            //above models the scenario where org.utils:api and org.utils:impl are libraries that must be resolved with the same version
            //however due to the conflict resolution, org.utils:api:1.5 and org.utils.impl:1.3 are resolved.
    
            buildFile << """
                $common
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    type ConstraintError struct {
    	// Conflict lists the source of the conflict for each version in mustSelect
    	// that could not be selected due to the requirements of some other version in
    	// mustSelect.
    	Conflicts []Conflict
    }
    
    func (e *ConstraintError) Error() string {
    	b := new(strings.Builder)
    	b.WriteString("version constraints conflict:")
    	for _, c := range e.Conflicts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // %13 = stablehlo.convert %11  // i8->i32 cast for q1.
    // %14 = stablehlo.convert %3  // [Optional] i8->i32 cast for z1.
    // %15 = stablehlo.broadcast_in_dim %14  // Operand = %4 if no `convert` above.
    // %16 = stablehlo.subtract %13, %15  // q1 - z1
    // %17 = stablehlo.convert %12  // i8->i32 cast for q2.
    // %18 = stablehlo.convert %6  // [Optional] i8->i32 cast for z2.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/MapsTest.java

        assertEquals((Integer) 1, converter.convert("one"));
        assertEquals((Integer) 2, converter.convert("two"));
        try {
          converter.convert("three");
          fail();
        } catch (IllegalArgumentException expected) {
        }
    
        biMap.put("three", 3);
    
        assertEquals((Integer) 1, converter.convert("one"));
        assertEquals((Integer) 2, converter.convert("two"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                e.getModelId(), interimResult.pomFile, convert(e.getProblems()));
                    } else {
                        project.setModel(new org.apache.maven.model.Model(interimResult.result.getEffectiveModel()));
                        result = new DefaultProjectBuildingResult(project, convert(e.getProblems()), null);
                    }
                    return Collections.singletonList(result);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	delegate  runtime.ObjectConvertor
    	validator unstructuredSchemaCoercer
    }
    
    var _ runtime.ObjectConvertor = schemaCoercingConverter{}
    
    func (v schemaCoercingConverter) Convert(in, out, context interface{}) error {
    	if err := v.delegate.Convert(in, out, context); err != nil {
    		return err
    	}
    
    	if u, ok := out.(*unstructured.Unstructured); ok {
    		if _, err := v.validator.apply(u); err != nil {
    			return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        dd.addDependencyConfiguration(conf, substitute(attributes.getValue("name")));
                    } else if (("conflict".equals(qName) && state == State.DEPS) || "manager".equals(qName) && state == State.CONFLICT) {
                        LOGGER.debug("Ivy.xml conflict managers are not supported by Gradle. Ignoring conflict manager declared in {}", getResource().getDisplayName());
                    } else if ("override".equals(qName) && state == State.DEPS) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. common/scripts/metallb-native.yaml

              be optionally associated with a BGP session.
            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top