Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cat1 (0.12 sec)

  1. prow/release-commit.sh

    # This will create a version like 1.4-alpha.sha
    NEXT_VERSION=$(cat "${ROOT}/VERSION")
    TAG=$(git rev-parse HEAD)
    VERSION="${NEXT_VERSION}-alpha.${TAG}"
    
    # In CI we want to store the outputs to artifacts, which will preserve the build
    # If not specified, we can just create a temporary directory
    WORK_DIR="$(mktemp -d)/build"
    mkdir -p "${WORK_DIR}"
    
    MANIFEST=$(cat <<EOF
    version: ${VERSION}
    docker: ${DOCKER_HUB}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

    static llvm::cl::list<std::string> cl_pass_list(
        "graph-passes", llvm::cl::value_desc("list"),
        llvm::cl::desc("comma separated list of GraphOptimizationPass to run."),
        llvm::cl::CommaSeparated, llvm::cl::cat(clOptionsCategory));
    
    class GraphOptByNamePass : public GraphOptPass {
     public:
      explicit GraphOptByNamePass() : GraphOptByNamePass(cl_pass_list) {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * Allow having empty paths in *path operations* used with `include_router` and a `prefix`.
        * This allows having a router for `/cats` and all its *path operations*, while having one of them for `/cats`.
        * Now it doesn't have to be only `/cats/` (with a trailing slash).
        * To use it, declare the path in the *path operation* as the empty string (`""`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top