Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,239 for convlit (0.28 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/typeconversion/DefaultTypeConverter.java

                @Override
                public void convert(String notation, NotationConvertResult<? super File> result) throws TypeConversionException {
                    result.converted(fileResolver.resolve(notation));
                }
            }), File.class);
            registerConverters();
        }
    
        @Override
        public Object convert(Object notation, Class<?> type, boolean primitive) throws TypeConversionException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/FailOnVersionConflictGraphVisitor.java

                allConflicts.add(buildConflict(owner, selectionReason));
            }
        }
    
        private static Conflict buildConflict(DependencyGraphComponent owner, ComponentSelectionReason selectionReason) {
            ModuleIdentifier module = owner.getModuleVersion().getModule();
            return new Conflict(ImmutableList.copyOf(owner.getAllVersions()), buildConflictMessage(module, selectionReason));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainerTest.groovy

    class ConflictContainerTest extends Specification {
    
        @Subject container = new ConflictContainer<String, Integer>()
    
        def "no conflict when candidates are empty"() {
            def conflict = container.newElement('a', [], null)
    
            expect:
            conflict == null
            container.size == 0
        }
    
        def "contains few unconflicted elements"() {
            container.newElement("a", [1], null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/convert_mhlo_quant_to_int.mlir

    // CHECK:         %[[ROUND:.*]] = f32[] round-nearest-even(f32[] %[[CLAMP]])
    // CHECK:         %[[CONVERT_0:.*]] = u8[] convert(f32[] %[[ROUND]])
    // CHECK:         %[[CONVERT_1:.*]] = s32[] convert(u8[] %[[CONVERT_0]])
    // CHECK:         %[[SUB:.*]] = s32[] subtract(s32[] %[[CONVERT_1]],
    // CHECK:         %[[CONVERT_2:.*]] = f32[] convert(s32[] %[[SUB]])
    // CHECK:         %[[MUL:.*]] = f32[] multiply(f32[] %[[CONVERT_2]],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 07 16:28:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/structuredmerge.go

    	newObjVersioned, err := f.toVersioned(newObj)
    	if err != nil {
    		return nil, nil, fmt.Errorf("failed to convert new object (%v) to proper version (%v): %v", objectGVKNN(newObj), f.groupVersion, err)
    	}
    	liveObjVersioned, err := f.toVersioned(liveObj)
    	if err != nil {
    		return nil, nil, fmt.Errorf("failed to convert live object (%v) to proper version: %v", objectGVKNN(liveObj), err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                failure.assertHasCause("""Module 'cglib:cglib-nodep' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5($variant)]""")
            }
    
            where:
            fixConflict | description
            false       | 'conflict fix not applied'
            true        | 'conflict fix applied'
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/BuildOptionBackedConverter.java

            buildOptions.commandLineConverter().configure(parser);
        }
    
        public void convert(ParsedCommandLine commandLine, Map<String, String> properties, T target) {
            buildOptions.propertiesConverter().convert(properties, target);
            buildOptions.commandLineConverter().convert(commandLine, target);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/test/groovy/org/gradle/internal/typeconversion/TypeFilteringNotationConverterTest.groovy

            when:
            converter.convert(12L, result)
    
            then:
            0 * _._
        }
    
        def "delegates to target when notation is an instance of the target type"() {
            when:
            converter.convert(12.0, result)
    
            then:
            1 * target.convert(12.0, result)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue9370.go

    	_ = i != 1 // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
    	_ = i >= 1 // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
    	_ = 1 == i // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
    	_ = 1 != i // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.td

    // Declare bridge passes that perform legalization and/or lowering.
    
    include "mlir/Pass/PassBase.td"
    
    def ConvertTFQuantOpsToMHLO : Pass<"quant-convert-tf-quant-ops-to-mhlo", "mlir::func::FuncOp"> {
      let summary = "Convert TF Quant ops to MHLO quantizated ops.";
    
      let description = [{
        Convert TF Quant ops to MHLO quant ops.
      }];
    
      let constructor = "mlir::quant::stablehlo::CreateConvertTFQuantOpsToMHLOPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 01:41:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top