Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 850 for setUp (0.03 sec)

  1. ci/official/utilities/setup.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # Common setup for all TF scripts.
    #
    # Make as FEW changes to this file as possible. It should not contain utility
    # functions (except for tfrun); use dedicated scripts instead and reference them
    Registered: 2024-11-05 12:39
    - Last Modified: 2024-08-07 23:01
    - 6K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/setup.packages.sh

    # limitations under the License.
    # ==============================================================================
    #
    # setup.packages.sh: Given a list of Ubuntu packages, install them and clean up.
    # Usage: setup.packages.sh <package_list.txt>
    set -e
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    apt-get update
    Registered: 2024-11-05 12:39
    - Last Modified: 2023-09-29 00:26
    - 1.1K bytes
    - Viewed (0)
  3. ci/official/containers/ml_build/setup.packages.sh

    # limitations under the License.
    # ==============================================================================
    #
    # setup.packages.sh: Given a list of Ubuntu packages, install them and clean up.
    # Usage: setup.packages.sh <package_list.txt>
    set -e
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    apt-get update
    Registered: 2024-11-05 12:39
    - Last Modified: 2024-09-24 20:45
    - 1.1K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/setup.python.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # setup.python.sh: Install a specific Python version and packages for it.
    # Usage: setup.python.sh <pyversion> <requirements.txt>
    set -xe
    
    source ~/.bashrc
    VERSION=$1
    REQUIREMENTS=$2
    
    add-apt-repository ppa:deadsnakes/ppa
    Registered: 2024-11-05 12:39
    - Last Modified: 2024-10-01 12:56
    - 2.2K bytes
    - Viewed (0)
  5. ci/official/containers/ml_build/setup.python.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # setup.python.sh: Install a specific Python version and packages for it.
    # Usage: setup.python.sh <pyversion> <requirements.txt>
    set -xe
    
    source ~/.bashrc
    VERSION=$1
    REQUIREMENTS=$2
    
    # Install Python packages for this container's version
    Registered: 2024-11-05 12:39
    - Last Modified: 2024-10-16 23:34
    - 2.2K bytes
    - Viewed (0)
  6. cmd/setup-type.go

    package cmd
    
    // SetupType - enum for setup type.
    type SetupType int
    
    const (
    	// UnknownSetupType - starts with unknown setup type.
    	UnknownSetupType SetupType = iota
    
    	// FSSetupType - FS setup type enum.
    	FSSetupType
    
    	// ErasureSDSetupType - Erasure single drive setup enum.
    	ErasureSDSetupType
    
    	// ErasureSetupType - Erasure setup type enum.
    	ErasureSetupType
    
    Registered: 2024-11-03 19:28
    - Last Modified: 2022-10-25 00:44
    - 1.5K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/setup.sources.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # setup.python.sh: Install a specific Python version and packages for it.
    # Usage: setup.python.sh <pyversion> <requirements.txt>
    
    # Sets up custom apt sources for our TF images.
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    Registered: 2024-11-05 12:39
    - Last Modified: 2024-07-10 18:56
    - 1.7K bytes
    - Viewed (0)
  8. ci/official/containers/ml_build/setup.sources.sh

    Quoc Truong <******@****.***> 1727989455 -0700
    Registered: 2024-11-05 12:39
    - Last Modified: 2024-10-03 21:13
    - 1.6K bytes
    - Viewed (0)
  9. architecture/tests/integration.md

    ## Overview
    
    Integration tests in Istio are essential for ensuring that various components work together as expected. Depending on the component you are testing, you may need to add your tests to different folders within the `tests/integration` directory. This document will guide you through the process of adding integration tests and understanding the setup requirements.
    
    Registered: 2024-11-06 22:53
    - Last Modified: 2024-10-09 00:57
    - 5.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

      fun emptyCache(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        cache.close()
        assertJournalEquals()
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun recoverFromInitializationFailure(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
    Registered: 2024-11-01 11:42
    - Last Modified: 2024-04-15 14:55
    - 75.8K bytes
    - Viewed (0)
Back to top