Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for toRType (1.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top