Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 413 for TMP (0.15 sec)

  1. src/main/assemblies/files/generate-thumbnail

      check_command unoconv
      tmp_pdf_file=/tmp/thumbnail.$$.pdf
      unoconv -e PageRange=1-1 -o ${tmp_pdf_file} -f pdf "${target_file}"
      if [[ ! -f ${tmp_pdf_file} ]] ; then
        echo "unoconv does not work."
        exit 1
      fi
      tmp_png_prefix=/tmp/thumbnail.png.$$
      pdftoppm -png -singlefile ${tmp_pdf_file} ${tmp_png_prefix}
      tmp_png_file="${tmp_png_prefix}.png"
      rm -f ${tmp_pdf_file}
      if [[ ! -f ${tmp_png_file} ]] ; then
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jun 12 13:13:28 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  2. docs/bucket/replication/setup_2site_existing_replication.sh

    fi
    
    minio server --address 127.0.0.1:9001 "http://127.0.0.1:9001/tmp/multisitea/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9002/tmp/multisitea/data/disterasure/xl{5...8}" >/tmp/sitea_1.log 2>&1 &
    minio server --address 127.0.0.1:9002 "http://127.0.0.1:9001/tmp/multisitea/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9002/tmp/multisitea/data/disterasure/xl{5...8}" >/tmp/sitea_2.log 2>&1 &
    
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Mar 04 18:05:56 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  3. docs/distributed/distributed-from-config-file.sh

         - 'http://localhost:9004/tmp/xl/node9004/mnt/disk1/'
         - 'http://localhost:9004/tmp/xl/node9004/mnt/disk2/'
         - 'http://localhost:9004/tmp/xl/node9004/mnt/disk3/'
         - 'http://localhost:9004/tmp/xl/node9004/mnt/disk4/'
    EOF
    done
    
    minio server --config /tmp/minio.configfile.1 >/tmp/minio1_1.log 2>&1 &
    site1_pid=$!
    minio server --config /tmp/minio.configfile.2 >/tmp/minio2_1.log 2>&1 &
    site2_pid=$!
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/math/LessThanBenchmark.java

      }
    
      @Benchmark
      int ternaryLtLongAddOutsideTernary(int reps) {
        int tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & SAMPLE_MASK;
          long x = xLongs[j];
          long y = yLongs[j];
          int z = constant[j];
          tmp += z + ((x < y) ? 1 : 0);
        }
        return tmp;
      }
    
      @Benchmark
      int ternaryLtLongAddInsideTernary(int reps) {
        int tmp = 0;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

            tmp[0] = (byte)(v ? 1 : 0);
            write( tmp, 0, 1 );
        }
        public final void writeByte( int v ) throws SmbException {
            tmp[0] = (byte)v;
            write( tmp, 0, 1 );
        }
        public final void writeShort( int v ) throws SmbException {
            Encdec.enc_uint16be( (short)v, tmp, 0 );
            write( tmp, 0, 2 );
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbRandomAccessFile.java

            write(this.tmp, 0, 2);
        }
    
    
        @Override
        public final void writeChar ( int v ) throws SmbException {
            Encdec.enc_uint16be((short) v, this.tmp, 0);
            write(this.tmp, 0, 2);
        }
    
    
        @Override
        public final void writeInt ( int v ) throws SmbException {
            Encdec.enc_uint32be(v, this.tmp, 0);
            write(this.tmp, 0, 4);
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  7. guava-tests/benchmark/com/google/common/math/ApacheBenchmark.java

        return tmp;
      }
    
      @Benchmark
      long longGCD(int reps) {
        long tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
          tmp += impl.gcdLong(nonnegLong[j][0], nonnegLong[j][1]);
        }
        return tmp;
      }
    
      @Benchmark
      long binomialCoefficient(int reps) {
        long tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 6.9K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java

          tmp += UnsignedLongs.parseUnsignedLong(binaryStrings[j], 2);
        }
        return tmp;
      }
    
      @Benchmark
      long parseDecode10(int reps) {
        long tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
          tmp += UnsignedLongs.decode(decimalStrings[j]);
        }
        return tmp;
      }
    
      @Benchmark
      long parseDecode16(int reps) {
        long tmp = 0;
        for (int i = 0; i < reps; i++) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 4.3K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/math/LongMathBenchmark.java

      int gCD(int reps) {
        int tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
          tmp += LongMath.mod(nonnegative[j], positive[j]);
        }
        return tmp;
      }
    
      @Benchmark
      int factorial(int reps) {
        int tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
          tmp += LongMath.factorial(factorialArguments[j]);
        }
        return tmp;
      }
    
      @Benchmark
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 3.5K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/math/ApacheBenchmark.java

        return tmp;
      }
    
      @Benchmark
      long longGCD(int reps) {
        long tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
          tmp += impl.gcdLong(nonnegLong[j][0], nonnegLong[j][1]);
        }
        return tmp;
      }
    
      @Benchmark
      long binomialCoefficient(int reps) {
        long tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & ARRAY_MASK;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 6.9K bytes
    - Viewed (0)
Back to top