Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for mkdtemp (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/hash_table_asset_v1.py

    # CHECK-NEXT: "tf.InitializeTableFromTextFileV2"([[R0]], [[ARG0]])
    
    
    def write_vocabulary_file(vocabulary):
      """Write temporary vocab file for module construction."""
      tmpdir = tempfile.mkdtemp()
      vocabulary_file = os.path.join(tmpdir, 'tokens.txt')
      with tf.io.gfile.GFile(vocabulary_file, 'w') as f:
        for entry in vocabulary:
          f.write(entry + '\n')
      return vocabulary_file
    
    
    def test():
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

      path_map = {}
      expected_input_key_map = {}
      for signature_key, signature_def in signature_def_map.items():
        # Filepath is the second return value of mkstemp.
        _, path_map[signature_key] = tempfile.mkstemp(
            suffix='.tfrecord', prefix=signature_key
        )
        expected_input_key_map[signature_key] = signature_def.inputs.keys()
    
      return repr_dataset.TfRecordRepresentativeDatasetSaver(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. cni/test/install_cni.go

    ) {
    	wd := env.IstioSrc + "/cni/test"
    	testWorkRootDir := getEnv("TEST_WORK_ROOTDIR", "/tmp")
    
    	tempCNIConfDir := mktemp(testWorkRootDir, "cni-conf-", t)
    	defer rmDir(tempCNIConfDir, t)
    	tempCNIBinDir := mktemp(testWorkRootDir, "cni-bin-", t)
    	defer rmDir(tempCNIBinDir, t)
    	tempK8sSvcAcctDir := mktemp(testWorkRootDir, "kube-svcacct-", t)
    	defer rmDir(tempK8sSvcAcctDir, t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent_test.go

    			t.Errorf("%#v.ServiceNode() => Got %s, want %s", node.in, out, node.out)
    		}
    	}
    }
    
    func TestAgent(t *testing.T) {
    	test.SetForTest(t, &version.Info.Version, "version")
    
    	wd := t.TempDir()
    	mktemp := t.TempDir
    	// Normally we call leak checker first. Here we call it after TempDir to avoid the (extremely
    	// rare) race condition of a certificate being written at the same time the cleanup occurs, which
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_sql_databases/test_testing_databases_py310.py

    
    @needs_py310
    # TODO: pv2 add version with Pydantic v2
    @needs_pydanticv1
    def test_testing_dbs_py39(tmp_path_factory: pytest.TempPathFactory):
        tmp_path = tmp_path_factory.mktemp("data")
        cwd = os.getcwd()
        os.chdir(tmp_path)
        test_db = Path("./test.db")
        if test_db.is_file():  # pragma: nocover
            test_db.unlink()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 825 bytes
    - Viewed (0)
  6. src/os/tempfile.go

    // The directory is created with mode 0o700 (before umask).
    // If dir is the empty string, MkdirTemp uses the default directory for temporary files, as returned by TempDir.
    // Multiple programs or goroutines calling MkdirTemp simultaneously will not choose the same directory.
    // It is the caller's responsibility to remove the directory when it is no longer needed.
    func MkdirTemp(dir, pattern string) (string, error) {
    	if dir == "" {
    		dir = TempDir()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_sql_databases/test_testing_databases_py39.py

    from ...utils import needs_py39, needs_pydanticv1
    
    
    @needs_py39
    # TODO: pv2 add version with Pydantic v2
    @needs_pydanticv1
    def test_testing_dbs_py39(tmp_path_factory: pytest.TempPathFactory):
        tmp_path = tmp_path_factory.mktemp("data")
        cwd = os.getcwd()
        os.chdir(tmp_path)
        test_db = Path("./test.db")
        if test_db.is_file():  # pragma: nocover
            test_db.unlink()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 822 bytes
    - Viewed (0)
  8. tests/test_tutorial/test_sql_databases/test_testing_databases.py

    import pytest
    
    from ...utils import needs_pydanticv1
    
    
    # TODO: pv2 add version with Pydantic v2
    @needs_pydanticv1
    def test_testing_dbs(tmp_path_factory: pytest.TempPathFactory):
        tmp_path = tmp_path_factory.mktemp("data")
        cwd = os.getcwd()
        os.chdir(tmp_path)
        test_db = Path("./test.db")
        if test_db.is_file():  # pragma: nocover
            test_db.unlink()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 788 bytes
    - Viewed (0)
  9. hack/update-mocks.sh

    # pick a tempfile path for writing to
    tmp=$(mktemp)
    kube::util::trap_add "rm -f ${tmp:?}" EXIT
    
    git_grep -l -z "${GENERATED_MOCK_FILE_REGEX}" | xargs -0 rm -f
    
    echo 'executing go generate command on below files'
    
    git_grep -l -z "//go:generate mockgen" | while read -r -d $'\0' file; do
      echo "- ${file}"
      temp_file_name="$(kube::realpath "$(mktemp -t "$(basename "$0").XXXXXX")")"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. cluster/images/etcd/Makefile

    export DOCKER_CLI_EXPERIMENTAL := enabled
    # golang version should match the golang version of the official build from https://github.com/etcd-io/etcd/releases.
    GOLANG_VERSION := 1.21.10
    GOARM?=7
    TEMP_DIR:=$(shell mktemp -d)
    
    DOCKERFILE.linux = Dockerfile
    DOCKERFILE.windows = Dockerfile.windows
    DOCKERFILE := ${DOCKERFILE.${OS}}
    
    ifeq ($(ARCH),amd64)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base:bookworm-v1.0.3
    endif
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top