Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 600 for gotType (0.19 sec)

  1. src/go/types/gotype.go

    //go:build ignore
    
    // Build this command explicitly: go build gotype.go
    
    /*
    The gotype command, like the front-end of a Go compiler, parses and
    type-checks a single Go package. Errors are reported if the analysis
    fails; otherwise gotype is quiet (unless -v is set).
    
    Without a list of paths, gotype reads from standard input, which
    must provide a single Go source file defining a complete package.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/fix/gotypes.go

    package main
    
    import (
    	"go/ast"
    	"strconv"
    )
    
    func init() {
    	register(gotypesFix)
    }
    
    var gotypesFix = fix{
    	name: "gotypes",
    	date: "2015-07-16",
    	f:    gotypes,
    	desc: `Change imports of golang.org/x/tools/go/{exact,types} to go/{constant,types}`,
    }
    
    func gotypes(f *ast.File) bool {
    	fixed := fixGoTypes(f)
    	if fixGoExact(f) {
    		fixed = true
    	}
    	return fixed
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. test/typeparam/dottype.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. test/typeparam/dottype.out

    Keith Randall <******@****.***> 1627346462 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 29 17:15:21 UTC 2021
    - 47 bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompileJavaBuildOperationReportingCompiler.java

                    return new DefaultAnnotationProcessorDetails(result.getClassName(), toType(result.getType()), result.getExecutionTimeInMillis());
                }
    
                private AnnotationProcessorDetails.Type toType(IncrementalAnnotationProcessorType type) {
                    if (type == IncrementalAnnotationProcessorType.AGGREGATING) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/TypeMirrorToType.java

                    if (element != typeNesting.get(typeNesting.size() - 1)) {
                        typeName.append("$");
                    }
                }
            });
            typeName.append(";");
    
            return Type.getType(typeName.toString());
        }
    
        @Override
        public Type visitError(ErrorType t, Void unused) {
            throw unsupportedType(t);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. maven-di/src/test/java/org/apache/maven/di/impl/TypeUtilsTest.java

                Type expected = new Key<Set<Set<Set<Integer>>>>() {}.getType();
                assertEquals(expected, simplifyType(type));
            }
    
            {
                Type type = new Key<Set<Set<? extends Set<Integer>>>>() {}.getType();
                Type expected = new Key<Set<Set<Set<Integer>>>>() {}.getType();
                assertEquals(expected, simplifyType(type));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/java/source/JavaElementDelegatingTypeSourceWithSmartPointer.kt

        abstract val psiPointer: SmartPsiElementPointer<out PSI>
        abstract fun getType(psi: PSI): TYPE
    
        override val type: TYPE
            get() {
                val psi = psiPointer.element
                    ?: error("Cannot restore $psiPointer")
                return getType(psi)
            }
    }
    
    internal class JavaElementDelegatingVariableReturnTypeSourceWithSmartPointer<TYPE : PsiType>(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 14 09:25:26 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/convert_func_to_bfloat16.cc

      if (!converter.isLegal(convert_op.getOperand().getType())) {
        auto other_convert_op = dyn_cast_or_null<OtherConvertOp>(
            convert_op.getOperand().getDefiningOp());
        return other_convert_op &&
               converter.isLegal(other_convert_op.getOperand().getType());
      } else if (!converter.isLegal(convert_op.getResult().getType())) {
        if (!convert_op.getResult().hasOneUse()) {
          return false;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/Units.java

            public int compareTo(Units<Q> o) {
                if (o == this) {
                    return 0;
                }
                if (o.getType() != getType()) {
                    throw new IllegalArgumentException(String.format("Cannot compare units of %s with units of %s.", getType(), o.getType()));
                }
                return -1;
            }
    
            public void add(ScaledUnits<Q> units) {
                this.units.add(units);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top