Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,161 for nack (0.25 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      MLIRContext context(registry);
      llvm::SourceMgr source_mgr;
      mlir::SourceMgrDiagnosticHandler sourceMgrHandler(source_mgr, &context);
    
      if (input_mlir) {
        // TODO(@zichuanwei): hack to enable mlir conversion via this tool, will get
        // back to do it properly in the future
        mlir::DialectRegistry registry;
        RegisterAllTensorFlowDialects(registry);
        registry
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. hack/verify-golangci-lint.sh

       -c <config|"none">: use the specified configuration or none instead of the default hack/golangci.yaml
       [packages]: check specific packages or directories instead of everything
    EOF
      exit 1
    }
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    kube::golang::setup_env
    export GOBIN="${KUBE_OUTPUT_BIN}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. hack/update-kustomize.sh

      exit 1
    fi
    
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kyaml "$LATEST_KYAML"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/cmd/config "$LATEST_CONFIG"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/api "$LATEST_API"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kustomize/v5 "$LATEST_KUSTOMIZE"
    
    ./hack/update-vendor.sh
    ./hack/update-internal-modules.sh
    ./hack/update-go-workspace.sh
    ./hack/lint-dependencies.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        // -----------------------------------------------------------------------------------------------
    
        // TODO These two tests display a lack of symmetry with respect to the input which is a free form string and the
        //      mojo descriptor which comes back. All the free form parsing needs to be done somewhere else, this is
        //      really the function of the CLI, and then the pre-processing of that output still needs to be fed into
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. .gitignore

    /third_party/protoc*
    
    # User cluster configs
    .kubeconfig
    
    .tags*
    
    # Version file for dockerized build
    .dockerized-kube-version-defs
    
    # Web UI
    /www/master/node_modules/
    /www/master/npm-debug.log
    /www/master/shared/config/development.json
    
    # Karma output
    /www/test_out
    
    # precommit temporary directories created by ./hack/verify-generated-docs.sh and ./hack/lib/util.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. hack/verify-mocks.sh

    # is needed or not. We should run `hack/update-mocks.sh` 
    # if Mock files are out of date.
    # Usage: `hack/verify-mocks.sh`.
    
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. hack/verify-internal-modules.sh

    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 853 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/cpp-application-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileDebugCpp -> linkDebug -> assemble -> build [dir=back]
      linkDebug -> assembleDebug [dir=back]
      check -> build [dir=back]
      compileReleaseCpp -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp clean}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. hack/verify-vendor-licenses.sh

    # or not. We should run `hack/update-vendor-licenses.sh` and commit the results,
    # if actually updates them.
    # Usage: `hack/verify-vendor-licenses.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. hack/update-mocks.sh

    # limitations under the License.
    
    # This script generates mock files using mockgen.
    # Usage: `hack/update-mocks.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    echo 'installing mockgen'
    go -C "${KUBE_ROOT}/hack/tools" install go.uber.org/mock/mockgen
    
    function git_grep() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top