Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 75 for toRType (0.34 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyMapNotationConverterTest.groovy

    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class DependencyMapNotationConverterTest extends Specification {
    
        def parser = NotationParserBuilder.toType(ExternalModuleDependency).converter(new DependencyMapNotationConverter<DefaultExternalModuleDependency>(TestUtil.instantiatorFactory().decorateLenient(), DefaultExternalModuleDependency.class)).toComposite()
    
        def "with artifact"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementGlobalScopeServices.java

        NotationParser<Object, ComponentSelector> createComponentSelectorFactory(ImmutableModuleIdentifierFactory moduleIdentifierFactory, CrossBuildInMemoryCacheFactory cacheFactory) {
            return NotationParserBuilder
                .toType(ComponentSelector.class)
                .converter(new CrossBuildCachingNotationConverter<>(new ModuleSelectorStringNotationConverter(moduleIdentifierFactory), cacheFactory.newCache()))
                .toComposite();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            return find(ModelPath.path(path), type);
        }
    
        @Override
        public <T> T find(ModelPath path, ModelType<T> type) {
            return toType(type, get(path), "find(ModelPath, ModelType)");
        }
    
        private <T> T toType(ModelType<T> type, ModelNodeInternal node, String msg) {
            if (node == null) {
                return null;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataProcessorTest.groovy

        def dependencyConstraintMetadataNotationParser = DependencyMetadataNotationParser.parser(instantiator, DependencyConstraintMetadataImpl, stringInterner)
        def moduleIdentifierNotationParser = NotationParserBuilder.toType(ModuleIdentifier).converter(new ModuleIdentifierNotationConverter(new DefaultImmutableModuleIdentifierFactory())).toComposite();
        def componentIdentifierNotationParser = new ComponentIdentifierParserFactory().create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternSet.java

    /**
     * Standalone implementation of {@link PatternFilterable}.
     */
    public class PatternSet implements AntBuilderAware, PatternFilterable {
    
        private static final NotationParser<Object, String> PARSER = NotationParserBuilder.toType(String.class).fromCharSequence().toComposite();
        private final PatternSpecFactory patternSpecFactory;
    
        private Set<String> includes;
        private Set<String> excludes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/graph.go

    // will delete each orphaned "from" vertex, but will never delete the "to" vertex
    func (g *Graph) deleteEdges_locked(fromType, toType vertexType, toNamespace, toName string) {
    	// get the "to" side
    	toVert, exists := g.getVertex_rlocked(toType, toNamespace, toName)
    	if !exists {
    		return
    	}
    
    	// delete all edges between vertices of fromType and toVert
    	neighborsToRemove := []*namedVertex{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandler.java

            this.instantiator = instantiator;
            this.ruleActionAdapter = ruleActionAdapter;
            this.moduleIdentifierNotationParser = NotationParserBuilder
                .toType(ModuleIdentifier.class)
                .fromCharSequence(new ModuleIdentifierNotationConverter(moduleIdentifierFactory))
                .toComposite();
            this.ruleExecutor = ruleExecutor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. src/go/internal/gccgoimporter/testdata/v1reflect.gox

     func (t <type 23>) NumMethod () <type -11>;
     func (t <type 23>) MethodByName (name <type -16>) (m <type 24>, ok <type -15>);
    >>; .reflect.ptrToThis <type 21>; }>
     func (t <type 39 *<type 4>>) .reflect.toType () <type 26>;
     func (t <type 39>) .reflect.rawString () <type -16>;
     func (t <type 39>) String () <type -16>;
     func (t <type 39>) Size () <type -13>;
     func (t <type 39>) Bits () <type -11>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                                         OpBuilder &builder) {
      auto broadcast_dims = GetI64ElementsAttr({feature_dim}, &builder);
      auto to_type = mlir::cast<RankedTensorType>(broadcast_to.getType());
      auto result_shape = builder.create<shape::ShapeOfOp>(loc, broadcast_to);
      auto result_extents_type = GetExtentsTensorTypeFor(to_type);
      auto result_extents = builder.create<shape::ToExtentTensorOp>(
          loc, result_extents_type, result_shape);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // instead of an argument type convertible to a target type.
    //
    // The syntax for using ImplicitCast_ is the same as for static_cast:
    //
    //   ImplicitCast_<ToType>(expr)
    //
    // ImplicitCast_ would have been part of the C++ standard library,
    // but the proposal was submitted too late.  It will probably make
    // its way into the language in the future.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top