Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for GetTypeName (0.15 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/clang/ClangToolChain.java

            toolChain.getObjcppCompiler().setExecutable("clang++");
            toolChain.getAssembler().setExecutable("clang");
        }
    
        @Override
        protected String getTypeName() {
            return "Clang";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    #  include <acxx_demangle.h>
    # endif  // GTEST_HASH_CXXABI_H_
    
    namespace testing {
    namespace internal {
    
    // GetTypeName<T>() returns a human-readable name of type T.
    // NB: This function is also used in Google Mock, so don't move it inside of
    // the typed-test-only section below.
    template <typename T>
    std::string GetTypeName() {
    # if GTEST_HAS_RTTI
    
      const char* const name = typeid(T).name();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/AbstractLanguageSourceSet.java

            super(identifier, publicType);
            this.source = source;
            super.builtBy(source.getBuildDependencies());
        }
    
        protected String getLanguageName() {
            return guessLanguageName(getTypeName());
        }
    
        private static synchronized String guessLanguageName(String typeName) {
            String language = LANGUAGES.get(typeName);
            if (language != null) {
                return language;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/AggregateMultiProjectTaskReportModel.java

                    }
                }
            }
        }
    
        private TaskDetails mergedTaskDetails(TaskDetails task) {
            return TaskDetails.of(
                Path.path(task.getPath().getName()),
                task.getTypeName(),
                task.getDescription()
            );
        }
    
        private boolean isVisible(String group) {
            if (Strings.isNullOrEmpty(group)) {
                return detail;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/import_utils.cc

      protobuf::io::ArrayInputStream binary_stream(input.data(), input.size());
      if (proto->ParseFromZeroCopyStream(&binary_stream)) return absl::OkStatus();
    
      LOG(ERROR) << "Error parsing Protobuf: " << proto->GetTypeName();
      return errors::InvalidArgument("Could not parse input proto");
    }
    
    template <class T>
    Status LoadProtoFromFileImpl(absl::string_view input_filename, T* proto) {
      const auto file_or_err =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_pass.h

      void runOnOperation() final {
        if (!getFunction().isExternal()) runOnFunction();
      }
    
     protected:
      // Returns the derived pass name.
      StringRef getName() const override { return llvm::getTypeName<T>(); }
    
      // A clone method to create a copy of this pass.
      std::unique_ptr<Pass> clonePass() const override {
        return std::make_unique<T>(*static_cast<const T*>(this));
      }
    };
    
    }  // namespace tac
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

        // GraphOp.
        return cast<GraphOp>(graph_op_range.begin());
      }
    
      return {};
    }
    
    // Gets the string representation of the type name.
    std::string GetTypeName(const Type type) {
      std::string type_name{};
      auto os = llvm::raw_string_ostream{type_name};
      os << type;
      return type_name;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. maven-di/src/main/java/org/apache/maven/di/Key.java

            }
            return hash;
        }
    
        @Override
        public String toString() {
            return (qualifier != null ? qualifier + " " : "") + type.getTypeName();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftcToolChain.java

            toolChain.add(instantiator.newInstance(DefaultCommandLineToolConfiguration.class, ToolType.STRIPPER));
        }
    
        @Override
        protected String getTypeName() {
            return "Swift Compiler";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilder.java

            }
        }
    
        public static String introductionFor(Optional<TypeValidationData> additionalData, boolean typeIrrelevantInErrorMessage) {
            Optional<String> rootType = additionalData.map(TypeValidationData::getTypeName)
                .map(Object::toString)
                .filter(DefaultTypeAwareProblemBuilder::shouldRenderType);
            Optional<DefaultPluginId> pluginId = additionalData.map(TypeValidationData::getPluginId)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top