發表文章

目前顯示的是 4月 2, 2019的文章

Michel Fau

圖片
Michel Fau Michel Fau at the 41st César Awards in 2016 Born 1964 (age 54–55) Agen, France Occupation Actor, comedian, theatre director Years active 1984–present Michel Fau (born 1964) is a French comedian, actor and theatre director. Contents 1 Personal life 2 Filmography 3 Theater 4 External links Personal life Michel Fau in 2016 At 18, he left his hometown for training at French National Academy of Dramatic Arts from 1986 to 1989. He trained with Michel Bouquet, Gerard Desarthe and Pierre Vial. He has appeared on stage regularly in works directed by Olivier Py and he also worked with Olivier Desbordes, Jean Sébastien Rajon, Pierre Guillois, Jean-Luc Lagarce, Jean-Michel Rabeux, Jean-Claude Penchenat, Laurent Gutmann, Stéphane Braunschweig, Jacques Weber, Sandrine Kiberlain, Léa Drucker, Gaspard Ulliel, Julie Depardieu, Charlotte de Turckheim, Chantal Ladesou, Catherine Frot, Samir Guesmi, ... In cinema, he worked with dir

Install OPENCV on Windows and Cmake

圖片
0 When I want to configure with CMAKE, I get : > aruco > bgsegm (...) > viz xfeatures2d CMake Error at cmake/OpenCVModule.cmake:354 (message): Duplicated modules NAMES has been found Call Stack (most recent call first): cmake/OpenCVModule.cmake:372 (_assert_uniqueness) modules/CMakeLists.txt:7 (ocv_glob_modules) In fact, my goal is to be able to compile the file opencv_createsamples.cpp on Visual Studio in order to launch the exe file and work with it. But I read on the internet that I need to compile OPENCV with Cmake before doing that. But I've got this error. windows opencv cmake share | improve this question asked N

André Wilms

圖片
This biography of a living person includes a list of references, related reading or external links, but its sources remain unclear because it lacks inline citations . Contentious material about living persons that is unsourced or poorly sourced must be removed immediately , especially if potentially libelous or harmful. Please help to improve this article by introducing more precise citations. ( July 2017 ) (Learn how and when to remove this template message) André Wilms André Wilms in 2011 Born ( 1947-04-29 ) 29 April 1947 (age 71) Strasbourg, France Occupation Actor Years active 1970–present André Wilms (born 29 April 1947) is a French film and television actor who has also appeared in German and Finnish films. Wilms was the winner of the Best Supporting European Actor award at the 1992 European Film Awards for his work in Aki Kaurismäki's La Vie de Bohème . Selected filmography Le tartuffe (1984) Field of Honor (1987) Life Is a L

How to mock an interface default method Java8/Mockito2

圖片
1 I cannot mock a method defined as default in an interface. Can anyone help me here? The interface has default method providing a logger. import org.slf4j.Logger; import org.slf4j.LoggerFactory; public interface Loggable { default Logger logger() { return LoggerFactory.getLogger(this.getClass()); } } It is used this way: public class AppShowOff implements Loggable{ public void doMagic() { logger().debug("It works"); System.out.println("Works"); } } now I would like to write a test proving that debug method has been called. import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import org.