Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 496 for output_file (0.26 sec)

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

        echo "pdftoppm does not work."
        exit 1
      fi
      convert -thumbnail ${image_size} ${tmp_png_file} "${output_file}"
      rm -f ${tmp_png_prefix}*png
    elif [[ x"${cmd_type}" = "ximage" ]] ; then
      check_command convert
      target_file=$(echo "$url" | sed -e "s#^file:/*#/#g")
      convert -thumbnail ${image_size} "${target_file}" "${output_file}"
    elif [[ x"${cmd_type}" = "x" ]] ; then
      echo "No filetype."
      exit 1
    else
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jun 12 13:13:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. cluster/gce/windows/smoke-test.sh

      linux_webserver_pod_ip="$(get_linux_webserver_pod_ip)"
    
      if ! $kubectl exec "$linux_command_pod" -- curl -s -m 20 \
          "http://$linux_webserver_pod_ip" &> $output_file; then
        cleanup_deployments
        echo "Failing output: $(cat $output_file)"
        echo "FAILED: ${FUNCNAME[0]}"
        exit 1
      fi
    }
    
    # TODO(pjh): this test flakily fails on brand-new clusters, not sure why.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java

            cmd = "test.sh $INPUT_FILE $OUTPUT_FILE";
            params.clear();
            list = extractor.parseCommand(cmd, params);
            assertEquals(3, list.size());
            assertEquals("test.sh", list.get(0));
            assertEquals("$INPUT_FILE", list.get(1));
            assertEquals("$OUTPUT_FILE", list.get(2));
    
            cmd = " test.sh $INPUT_FILE $OUTPUT_FILE ";
            params.clear();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. hack/update-codegen.sh

                kube::log::status "DBG:     $dir"
            done
        fi
    
        git_find -z ':(glob)**'/"${output_file}" | xargs -0 rm -f
    
        deepcopy-gen \
            -v "${KUBE_VERBOSE}" \
            --go-header-file "${BOILERPLATE_FILENAME}" \
            --output-file "${output_file}" \
            --bounding-dirs "k8s.io/kubernetes,k8s.io/api" \
            "${tag_pkgs[@]}" \
            "$@"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/gen_quantized_function_library.py

    # TODO(b/263048929): Create a test for gen_quantized_function_library.
    
    _OUTPUT_FILE = flags.DEFINE_string('output_file', None, 'output file location')
    _SRCS = flags.DEFINE_string('src', None, 'source file locations')
    _NAMESPACE = flags.DEFINE_string('namespace', 'mlir::quant',
                                     'namespace in the generated file')
    
    flags.mark_flags_as_required(['output_file', 'src'])
    
    
    def _substitute_for_loop_template(module: str) -> str:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 20 01:38:06 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/squash_testlogs.py

    # limitations under the License.
    # ==============================================================================
    """Merge all JUnit test.xml files in one directory into one.
    
    Usage: squash_testlogs.py START_DIRECTORY OUTPUT_FILE
    
    Example: squash_testlogs.py /tf/pkg/testlogs /tf/pkg/merged.xml
    
    Recursively find all the JUnit test.xml files in one directory, and merge any
    of them that contain failures into one file. The TensorFlow DevInfra team
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      local output_file_missing=0
      local output_file
      for output_file in \
        "${AGGREGATOR_CERT_DIR}/pki/private/ca.key" \
        "${AGGREGATOR_CERT_DIR}/pki/ca.crt" \
        "${AGGREGATOR_CERT_DIR}/pki/issued/proxy-client.crt" \
        "${AGGREGATOR_CERT_DIR}/pki/private/proxy-client.key"
      do
        if [[ ! -s "${output_file}" ]]; then
          echo "Expected file ${output_file} not created" >&2
          output_file_missing=1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

        private void executeCommand(final File inputFile, final File outputFile) {
    
            if (StringUtil.isBlank(command)) {
                throw new CrawlerSystemException("command is empty.");
            }
    
            final Map<String, String> params = new HashMap<>();
            params.put("$INPUT_FILE", inputFile.getAbsolutePath());
            params.put("$OUTPUT_FILE", outputFile.getAbsolutePath());
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/BUILD

            "passes/quantized_function_library_xla_weight_only.mlir",
        ],
        outs = [
            "passes/quantized_function_library.h",
        ],
        cmd = "$(location gen_quantized_function_library) --output_file $(RULEDIR)/passes/quantized_function_library.h --src '$(SRCS)'",
        compatible_with = get_compatible_with_portable(),
        tools = ["gen_quantized_function_library"],
    )
    
    cc_library(
        name = "manipulate_model_attr",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

            [null, 'outputFile']                          | ['outputFile', null]           | true
            ['outputFile1', null]                         | ['outputFile1', 'outputFile2'] | false
            ['outputFile1', 'outputFile2', 'outputFile3'] | ['outputFile1', 'outputFile2'] | false
            ['outputFile1', 'outputFile2']                | ['outputFile2', 'outputFile3'] | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top