Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for files (0.17 sec)

  1. tensorflow/BUILD

        get_compat_files(TENSORFLOW_API_INIT_FILES_V1, 1) + get_nested_compat_files([
            1,
            2,
        ])
    )
    
    TENSORFLOW_API_INIT_FILES_V1 = (
        TENSORFLOW_API_INIT_FILES_V1 +
        get_compat_files(TENSORFLOW_API_INIT_FILES, 2) +
        get_compat_files(TENSORFLOW_API_INIT_FILES_V1, 1) + get_nested_compat_files([
            1,
            2,
        ])
    )
    # copybara:comment_end
    
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

                "/a_file");
      EXPECT_EQ(GetRelativePath(fs->TranslateName(GetURIForPath("a_dir/a_file"))),
                "/a_dir/a_file");
      EXPECT_EQ(GetRelativePath(fs->TranslateName(GetURIForPath("./a_file"))),
                "/a_file");
      EXPECT_EQ(GetRelativePath(fs->TranslateName(
                    GetURIForPath("a/convoluted/../path/./to/.//.///a/file"))),
                "/a/path/to/a/file");
    }
    C++
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                    withOpen(th, Smb2CreateRequest.FILE_OPEN, FILE_WRITE_ATTRIBUTES, FILE_SHARE_READ | FILE_SHARE_WRITE, req);
                }
                else if ( th.hasCapability(SmbConstants.CAP_NT_SMBS) ) {
    
                    try ( SmbFileHandleImpl f = openUnshared(
                        O_RDONLY,
                        FILE_WRITE_ATTRIBUTES,
                        FILE_SHARE_READ | FILE_SHARE_WRITE,
                        dir,
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  4. src/archive/zip/reader_test.go

    	}
    	_, err = r.Open("test.txt")
    	if err != nil {
    		t.Errorf("Error reading file: %v", err)
    	}
    	if len(r.File) != 1 {
    		t.Fatalf("No entries in the file list")
    	}
    	if r.File[0].Name != "../test.txt" {
    		t.Errorf("Unexpected entry name: %s", r.File[0].Name)
    	}
    	if _, err := r.File[0].Open(); err != nil {
    		t.Errorf("Error opening file: %v", err)
    	}
    }
    
    func TestOpenReaderInsecurePath(t *testing.T) {
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        key: String,
        index: Int,
      ) = cacheDir / "$key.$index.tmp"
    
      private fun readFile(file: Path): String {
        return filesystem.read(file) {
          readUtf8()
        }
      }
    
      private fun readFileOrNull(file: Path): String? {
        return try {
          filesystem.read(file) {
            readUtf8()
          }
        } catch (_: FileNotFoundException) {
          null
        }
      }
    
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    		return osErrToFileErr(err)
    	}
    
    	// Close the file descriptor.
    	defer file.Close()
    	fi, err := file.Stat()
    	if err != nil {
    		// Unable to stat on the file, return an expected error
    		// for healing code to fix this file.
    		return err
    	}
    	return bitrotVerify(diskHealthReader(ctx, file), fi.Size(), partSize, algo, sum, shardSize)
    }
    
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 82.7K bytes
    - Viewed (0)
  7. cmd/xl-storage_test.go

    		t.Fatalf("Unable to create a file \"as-file\", %s", err)
    	}
    	if err = xlStorage.AppendFile(context.Background(), "exists", "as-file-parent/xl.meta", xlMeta); err != nil {
    		t.Fatalf("Unable to create a file \"as-file-parent\", %s", err)
    	}
    	if err = xlStorage.MakeVol(context.Background(), "exists/as-file/"+fi.DataDir); err != nil {
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  8. configure.py

    ]
    
    # List of files to configure when building Bazel on Apple platforms.
    APPLE_BAZEL_FILES = [
        'tensorflow/lite/ios/BUILD', 'tensorflow/lite/objc/BUILD',
        'tensorflow/lite/swift/BUILD',
        'tensorflow/lite/tools/benchmark/experimental/ios/BUILD'
    ]
    
    # List of files to move when building for iOS.
    IOS_FILES = [
        'tensorflow/lite/objc/TensorFlowLiteObjC.podspec',
    Python
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ops->random_access_file_ops_abi = TF_RANDOM_ACCESS_FILE_OPS_ABI;
      ops->random_access_file_ops_api = TF_RANDOM_ACCESS_FILE_OPS_API;
      ops->random_access_file_ops_size = TF_RANDOM_ACCESS_FILE_OPS_SIZE;
      ops->writable_file_ops_abi = TF_WRITABLE_FILE_OPS_ABI;
      ops->writable_file_ops_api = TF_WRITABLE_FILE_OPS_API;
      ops->writable_file_ops_size = TF_WRITABLE_FILE_OPS_SIZE;
    C
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  10. .teamcity/test-buckets.json

    					"code-quality",
    					"declarative-dsl-provider",
    					"persistent-cache",
    					"ide-plugins",
    					"platform-native",
    					"file-collections",
    					"execution-e2e-tests",
    					"testing-native",
    					"jacoco",
    					"version-control",
    					"file-watching"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"model-core",
    Json
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Mon Apr 01 00:30:22 GMT 2024
    - 49.5K bytes
    - Viewed (0)
Back to top