Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for presubmits (0.15 sec)

  1. .github/workflows/sigbuild-docker-presubmit.yml

    # limitations under the License.
    # ==============================================================================
    
    name: Build SIG Build containers as presubmits
    
    on:
      pull_request:
        types: [labeled, opened, synchronize, reopened]
        paths:
          - '.github/workflows/sigbuild-docker-presubmit.yml'
          - 'tensorflow/tools/tf_sig_build_dockerfiles/**'
          - '!tensorflow/tools/tf_sig_build_dockerfiles/README.md'
    
    permissions:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/examples/mnist/BUILD

            "no_oss",  # Avoid downloading mnist data set in oss.
            "nomultivm",  # Not needed. Save some resources and test time.
            "notap",  # The test is too long to run as part of llvm presubmits (b/173661843).
            "notpu",  # Takes too long (b/192305423)
            "notsan",  # Not needed, and there were issues with timeouts.
            "requires-net:external",
        ],
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 11:50:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. ci/official/utilities/generate_index_html.sh

    # limitations under the License.
    # ==============================================================================
    
    # Generates a handy index.html with a bunch of Kokoro links for GitHub
    # presubmits.
    # Usage: generate_index_html.sh /path/to/output/index.html
    
    cat > "$1" <<EOF
    <html>
    <head>
    <title>$(basename "$KOKORO_JOB_NAME")</title>
    </head>
    <body>
    <h1>TensorFlow Job Logs and Links</h1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 20:26:13 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tests/integration/tests.mk

    # Generate presubmit integration test targets for each component in kubernetes environment
    test.integration.%.kube.presubmit:
    	@make test.integration.$*.kube
    
    # Run all tests
    .PHONY: test.integration.kube
    test.integration.kube: test.integration.kube.presubmit
    	@:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. .github/workflows/pylint-presubmit.yml

    Joyce Brum <******@****.***> 1694536829 +0000
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:40:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. ci/official/wheel_test/README.md

    a Bazel command.
    5. Moves the updated `requirements_lock_<python_version>.txt` file
    to the `../wheel_test/` directory.
    
    
    ### How it Works in the Presubmit Job
    
    `_requirements_lock` files will be generated by the presubmit job. A detailed
    description will be provided once it's integrated into presubmit.
    
    ### test_import_api_packages
    
    This Python test verifies whether the API v2 packages can be imported from the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. pkg/test/prow/util.go

    	// https://github.com/kubernetes/test-infra/blob/master/prow/jobs.md#job-environment-variables
    	jobType    = env.Register("JOB_TYPE", "presubmit", "type of job").Get()
    	jobName    = env.Register("JOB_NAME", "", "name of job").Get()
    	pullNumber = env.Register("PULL_NUMBER", "", "PR of job").Get()
    	repoName   = env.Register("REPO_NAME", "istio", "repo name").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. ci/official/README.md

    -   Nightly jobs (Run nightly on the `nightly` branch)
        -   Uses `wheel.sh`, `libtensorflow.sh`, `code_check_full.sh`
    -   Continuous jobs (Run on every GitHub commit)
        -   Uses `pycpp.sh`
    -   Presubmit jobs (Run on every GitHub PR)
        -   Uses `pycpp.sh`, `code_check_changed_files.sh`
    
    These "env" files match up with an environment matrix that roughly covers:
    
    -   Different Python versions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. common/scripts/tracing.sh

      fi
    }
    
    function _genattrs() {
      # No upstream standard, so copy from https://github.com/jenkinsci/opentelemetry-plugin/blob/master/docs/job-traces.md
      if [[ -n "${PULL_NUMBER:=}" ]]
      then
        # Presubmit
        url="https://prow.istio.io/view/gs/istio-prow/pr-logs/pull/${REPO_OWNER}_${REPO_NAME}/${PULL_NUMBER}/${JOB_NAME}/${BUILD_ID},"
      else
        # Postsubmit or periodic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. prow/integ-suite-kind.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    
    # Usage: ./integ-suite-kind.sh TARGET
    # Example: ./integ-suite-kind.sh test.integration.pilot.kube.presubmit
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    # Exit immediately for non zero status
    set -e
    # Check unset variables
    set -u
    # Print commands
    set -x
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top