Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for getLogs (0.32 sec)

  1. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    ; public abstract void release(); public abstract void removeAttribute(String); public abstract void setAttribute(String, Object); public static LogFactory getFactory() throws LogConfigurationExce; public static Log getLog(Class) throws LogConfigurationExce; public static Log getLog(String) throws LogConfigurationExce; public static void release(ClassLoader); public static void releaseAll(); protected static ClassLoader getContextClassLoade() throws LogConfigurationExce; private static LogFactory...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftCompiler.java

        private static class SwiftCompileArgsTransformer implements ArgsTransformer<SwiftCompileSpec> {
            @Override
            public List<String> transform(SwiftCompileSpec swiftCompileSpec) {
                return swiftCompileSpec.getArgs();
            }
        }
    
        private static class OutputFileMap {
            private Map<String, Entry> entries = new HashMap<String, Entry>();
    
            public Builder root() {
                return newEntry("");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

      llvm::DenseMap<func::FuncOp, llvm::DenseSet<func::FuncOp>> caller_callee_map;
      // Creates work queue for determining reachability below.
      std::queue<func::FuncOp> function_worklist;
    
      for (auto func : module.getOps<func::FuncOp>()) {
        for (auto user : symbol_map.getUsers(func)) {
          // Populates work queue with func ops called from TPUPartionedCall.
          if (llvm::isa<TF::TPUPartitionedCallOp>(user)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	// current desired state of the world.
    	GetVolumesToMount() []VolumeToMount
    
    	// GetPods generates and returns a map of pods in which map is indexed
    	// with pod's unique name. This map can be used to determine which pod is currently
    	// in desired state of world.
    	GetPods() map[types.UniquePodName]bool
    
    	// VolumeExistsWithSpecName returns true if the given volume specified with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

      auto func_arg_types = llvm::to_vector<4>(func_type.getInputs());
      llvm::SmallDenseMap<llvm::StringRef, int> var_arg_index_by_name;
      for (auto var_handle_op :
           llvm::make_early_inc_range(block.getOps<TF::VarHandleOp>())) {
        if (add_validation && failed(ValidateVarHandle(var_handle_op)))
          return failure();
        // In the case of variables that are not initialized at graph creation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

                    linkTask.getTargetPlatform().set(binary.getTargetPlatform());
                    linkTask.getLinkedFile().set(executableFile);
                    linkTask.getLinkerArgs().set(binary.getLinker().getArgs());
    
                    linkTask.lib(new BinaryLibs(binary) {
                        @Override
                        protected FileCollection getFiles(NativeDependencySet nativeDependencySet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      // Finds the mapping from a replicate argument to an execute operand.
      llvm::SmallDenseMap<int64_t, int64_t, 8> replicate_arg_to_execute_arg;
      for (auto index_and_arg : llvm::enumerate(execute.getArgs())) {
        auto arg = SkipIdentity(index_and_arg.value(), /*allow_other_use=*/false);
        if (!arg.hasOneUse() ||
            !mlir::isa<TF::ResourceType>(getElementTypeOrSelf(arg.getType()))) {
          continue;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

          if (!call_op->getResult(i).use_empty()) return failure();
        }
      }
      return success();
    }
    
    LogicalResult CheckFusableKerasLstm(func::FuncOp lstm_func, ModuleOp module) {
      for (auto func : module.getOps<func::FuncOp>()) {
        if (func == lstm_func) continue;
        auto result = func.walk([&](CallOpInterface op) {
          if (dyn_cast<func::FuncOp>(op.resolveCallable()) == lstm_func) {
            // Keras LSTM have 5 outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                statement.setString(2, displayInfo.getDisplayName());
                statement.setObject(3, toArray(displayInfo.getTasksToRun()));
                statement.setObject(4, toArray(displayInfo.getArgs()));
                statement.setObject(5, toArray(displayInfo.getGradleOpts()));
                statement.setBoolean(6, displayInfo.getDaemon());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

    std::unordered_map<std::string, std::vector<func::FuncOp>>
    PickSubgraphsPass::CollectSubgraphFuncs(ModuleOp module) {
      std::unordered_map<std::string, std::vector<func::FuncOp>> func_impls;
      for (auto func : module.getOps<func::FuncOp>()) {
        auto interface_name = GetInterFaceName(func);
        if (interface_name.has_value()) {
          auto impls_iter = func_impls.find(*interface_name);
          if (impls_iter == func_impls.end())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
Back to top