Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 159 for typeName (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    }
    var comparableTypes = []namedCELType{
    	{typeName: "int", celType: cel.IntType},
    	{typeName: "uint", celType: cel.UintType},
    	{typeName: "double", celType: cel.DoubleType},
    	{typeName: "bool", celType: cel.BoolType},
    	{typeName: "duration", celType: cel.DurationType},
    	{typeName: "timestamp", celType: cel.TimestampType},
    	{typeName: "string", celType: cel.StringType},
    	{typeName: "bytes", celType: cel.BytesType},
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/CodeGeneratingSignatureTreeVisitor.java

            TypeName implementationOwner = TypeUtils.typeName(request.getImplementationInfo().getOwner());
            String implementationName = request.getImplementationInfo().getName();
            if (request.getInterceptedCallable().getKind() == CallableKindInfo.AFTER_CONSTRUCTOR) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. maven-di/src/main/java/org/apache/maven/di/impl/Utils.java

                return "@" + ReflectionUtils.getDisplayName(annotationType);
            }
            String typeName = annotationType.getName();
            String str = annotation.toString();
            return str.startsWith("@" + typeName)
                    ? "@" + ReflectionUtils.getDisplayName(annotationType) + str.substring(typeName.length() + 1)
                    : str;
        }
    
        public static String getDisplayString(Object object) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    			return
    		}
    		arg := call.Args[0]
    
    		// Retrieve target type name.
    		var tname *types.TypeName
    		switch fun := call.Fun.(type) {
    		case *ast.Ident:
    			tname, _ = pass.TypesInfo.Uses[fun].(*types.TypeName)
    		case *ast.SelectorExpr:
    			tname, _ = pass.TypesInfo.Uses[fun.Sel].(*types.TypeName)
    		}
    		if tname == nil {
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    // AssertyTypeEq<T1, T2>::type is defined iff T1 and T2 are the same
    // type.  This can be used as a compile-time assertion to ensure that
    // two types are equal.
    
    template <typename T1, typename T2>
    struct AssertTypeEq;
    
    template <typename T>
    struct AssertTypeEq<T, T> {
      typedef bool type;
    };
    
    // A unique type used as the default value for the arguments of class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.h

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tfrt/basic_kernels/opdefs/types.h"  // from @tf_runtime
    
    namespace tfrt {
    namespace fallback_common {
    
    template <typename OpTy>
    mlir::LogicalResult VerifyExecuteOpCommon(OpTy op) {
      auto op_attr_array = op.getOpAttrs().getValue();
      for (auto op_attr : op_attr_array) {
        auto key_value = mlir::dyn_cast<mlir::ArrayAttr>(op_attr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/MatchesSignatureGeneratingSignatureTreeVisitor.java

                ? CodeBlock.of("receiverClass")
                : CodeBlock.of("arg$L", paramIndex);
    
            int childArgCount = paramIndex + 1;
            TypeName entryChildType = TypeUtils.typeName(entry.type);
            CodeBlock matchExpr = entry.kind == RECEIVER_AS_CLASS ?
                CodeBlock.of("isStatic && $T.class.isAssignableFrom($L)", entryChildType.box(), argExpr) :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go121.go

    func (*Alias) Underlying() types.Type { panic("unreachable") }
    func (*Alias) Obj() *types.TypeName   { panic("unreachable") }
    func Rhs(alias *Alias) types.Type     { panic("unreachable") }
    
    // Unalias returns the type t for go <=1.21.
    func Unalias(t types.Type) types.Type { return t }
    
    func newAlias(name *types.TypeName, rhs types.Type) *Alias { panic("unreachable") }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 962 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.h

    // Find the first op with any of the specified types on each path rooted at the
    // `root` node in a tree. Additional checks can be applied via `predicate`. The
    // results are stored in `ops`.
    template <typename T, typename... Types>
    LogicalResult GetFirstOpsOfType(
        func::FuncOp root, SymbolTable &symtab,
        const std::function<bool(SymbolUserOpInterface)> &predicate,
        llvm::SmallVector<SymbolUserOpInterface> &ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 16 06:18:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/AbstractLanguageSourceSet.java

        }
    
        private static synchronized String guessLanguageName(String typeName) {
            String language = LANGUAGES.get(typeName);
            if (language != null) {
                return language;
            }
            language = typeName.replaceAll("LanguageSourceSet$", "").replaceAll("SourceSet$", "").replaceAll("Source$", "").replaceAll("Set$", "");
            LANGUAGES.put(typeName, language);
            return language;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top