Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for Gotype (0.22 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

            private final Class<? extends T> type;
            protected final Collector<T> delegate;
            private final ValueCollector<T> valueCollector;
    
            public TypedCollector(@Nullable Class<? extends T> type, Collector<T> delegate) {
                this.type = type;
                this.delegate = delegate;
                this.valueCollector = ValueSanitizers.collectorFor(type);
            }
    
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

        ^bb0(%arg0: tensor<i64>, %arg1: tensor<i64>):
          %cond = "vhlo.compare_v1"(%arg0, %arg1) {
            comparison_direction = #vhlo<comparison_direction_v1 LT>,
            compare_type = #vhlo<comparison_type_v1 NOTYPE>
          } : (tensor<i64>, tensor<i64>) -> tensor<i1>
          "vhlo.return_v1"(%cond) : (tensor<i1>) -> ()
        }, {
        ^bb0(%arg0: tensor<i64>, %arg1: tensor<i64>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. 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 (1)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

     *   jaxDoclet
     * }
     *
     * dependencies {
     *   //jaxDoclet "some.interesting:Dependency:1.0"
     * }
     *
     * task generateRestApiDocs(type: Javadoc) {
     *   source = sourceSets.main.allJava
     *   destinationDir = reporting.file("rest-api-docs")
     *   options.docletpath = configurations.jaxDoclet.files.asType(List)
     *   options.doclet = "com.lunatech.doclets.jax.jaxrs.JAXRSDoclet"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/iimport.go

    }
    
    // canReuse reports whether the type rhs on the RHS of the declaration for def
    // may be re-used.
    //
    // Specifically, if def is non-nil and rhs is an interface type with methods, it
    // may not be re-used because we have a convention of setting the receiver type
    // for interface methods to def.
    func canReuse(def *types.Named, rhs types.Type) bool {
    	if def == nil {
    		return true
    	}
    	iface, _ := rhs.(*types.Interface)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

       HasChloCompareType<"::mlir::chlo::ComparisonType::SIGNED">,
       HasChloCompareType<"::mlir::chlo::ComparisonType::UNSIGNED">,
       HasChloCompareType<"::mlir::chlo::ComparisonType::NOTYPE">]>,
       "compare type supported by TensorFlow">;
    
    class CHLO_ComparisonDirectionValue<string enumStr> :
      ConstantAttr<CHLO_ComparisonDirectionAttr, "::mlir::chlo::ComparisonDirection::" # enumStr>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/expr.go

    		// the same type.
    		//
    		// the only conversion that isn't a no-op is concrete == interface.
    		// in that case, check comparability of the concrete type.
    		// The conversion allocates, so only do it if the concrete type is huge.
    		converted := false
    		if r.Type().Kind() != types.TBLANK {
    			aop, _ = assignOp(l.Type(), r.Type())
    			if aop != ir.OXXX {
    				if r.Type().IsInterface() && !l.Type().IsInterface() && !types.IsComparable(l.Type()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/stmt.go

    				continue
    			}
    			if n1.Op() != ir.OTYPE {
    				base.ErrorfAt(ncase.Pos(), errors.NotAType, "%L is not a type", n1)
    				continue
    			}
    			if !n1.Type().IsInterface() {
    				why := ImplementsExplain(n1.Type(), t)
    				if why != "" {
    					base.ErrorfAt(ncase.Pos(), errors.ImpossibleAssert, "impossible type switch case: %L cannot have dynamic type %v (%s)", guard.X, n1.Type(), why)
    				}
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. src/cmd/trace/regions.go

    // regionFingerprint is a way to categorize regions that goes just one step beyond the region's Type
    // by including the top stack frame.
    type regionFingerprint struct {
    	Frame trace.StackFrame
    	Type  string
    }
    
    func fingerprintRegion(r *trace.UserRegionSummary) regionFingerprint {
    	return regionFingerprint{
    		Frame: regionTopStackFrame(r),
    		Type:  r.Name,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

    <?xml version="1.0"?>
    
    <!DOCTYPE suppressions PUBLIC
        "-//Puppy Crawl//DTD Suppressions 1.1//EN"
        "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
    
    <suppressions>
        <!-- These packages are duplicated in core-api, don't require a package-info.java in each place -->
        <suppress checks="JavadocPackage"
                  files=".*[/\\]stdlib-java-extensions[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\][^/\\]+"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top