Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for convlit (0.2 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. .teamcity/.mvn/wrapper/maven-wrapper.jar

    andLineConverter.class package org.apache.maven.wrapper.cli; public abstract interface CommandLineConverter { public abstract Object convert(Iterable) throws CommandLineArgumentE; public abstract Object convert(Iterable, Object) throws CommandLineArgumentE; public abstract Object convert(ParsedCommandLine) throws CommandLineArgumentE; public abstract Object convert(ParsedCommandLine, Object) throws CommandLineArgumentE; public abstract void configure(CommandLineParser); } org/apache/maven/wrappe...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "CDFBRA", argLength: 1, reg: gpfp, asm: "CDFBRA", clobberFlags: true}, // convert int32 to float64
    		{name: "CEGBRA", argLength: 1, reg: gpfp, asm: "CEGBRA", clobberFlags: true}, // convert int64 to float32
    		{name: "CDGBRA", argLength: 1, reg: gpfp, asm: "CDGBRA", clobberFlags: true}, // convert int64 to float64
    		{name: "CLFEBR", argLength: 1, reg: fpgp, asm: "CLFEBR", clobberFlags: true}, // convert float32 to uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    Throwable); } org/gradle/cli/CommandLineConverter.class package org.gradle.cli; public abstract interface CommandLineConverter { public abstract Object convert(Iterable, Object) throws CommandLineArgumentE; public abstract Object convert(ParsedCommandLine, Object) throws CommandLineArgumentE; public abstract void configure(CommandLineParser); } org/gradle/cli/CommandLineOption.class package org.gradle.cli; public synchronized class CommandLineOption { private final java.util.Set options; private Class...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
Back to top