This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<t t-name="product.report_simple_label_dymo"> | |
<div class="o_label_sheet o_label_dymo" t-att-style="padding_page"> | |
<div class="o_label_full" t-att-style="table_style"> | |
<div class="text-start o_label_small_barcode" style="background: transparent !important;"> | |
<t t-if="barcode"> | |
<!-- `quiet=0` to remove the left and right margins on the barcode --> | |
<div t-out="barcode" style="padding:0" t-options="{'widget': 'barcode', 'quiet': 0, 'symbology': 'auto', 'img_style': barcode_size}"/> | |
<div class="o_label_name" style="height:1.7em;background-color: transparent;"> | |
<span t-out="barcode"/> | |
<em>Le petit Napo Gembloux</em> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.lang.reflect.Field; | |
import java.lang.reflect.InvocationTargetException; | |
import java.lang.reflect.Method; | |
class Scratch { | |
public static final long ITERATIONS = 1_000_000_000L; | |
private volatile int i = 5; | |
public int getI() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package be.isabel.pdg.bankbank.webservice; | |
import org.junit.Test; | |
import java.math.BigDecimal; | |
import java.math.RoundingMode; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class ThreadTest { |