Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for fileName (0.2 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

        if (!status.ok())
          GTEST_SKIP() << "NewWritableFile() not supported: " << status;
      }
    
      for (const auto& filename : other_filenames) {
        std::unique_ptr<WritableFile> file;
        Status status = env_->NewWritableFile(filename, &file);
        if (!status.ok())
          GTEST_SKIP() << "NewWritableFile() not supported: " << status;
      }
    
      std::vector<std::string> results;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         * identical to the list returned by the parameterless <code>list()</code>
         * method minus filenames filtered by the specified filter.
         *
         * @param filter
         *            a filename filter to exclude filenames from the results
         * @return <code>String[]</code> array of matching files and directories,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. cmd/xl-storage_test.go

    	if err := storage.WriteAll(context.Background(), volName, fileName, data); err != nil {
    		t.Fatal(err)
    	}
    	if err := storage.storage.bitrotVerify(context.Background(), pathJoin(path, volName, fileName), size, algo, hashBytes, 0); err != nil {
    		t.Fatal(err)
    	}
    
    	// 2) Whole-file bitrot check on corrupted file
    	if err := storage.AppendFile(context.Background(), volName, fileName, []byte("a")); err != nil {
    		t.Fatal(err)
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    		return
    	}
    
    	formValues.Set("Bucket", bucket)
    	if fileName != "" && strings.Contains(formValues.Get("Key"), "${filename}") {
    		// S3 feature to replace ${filename} found in Key form field
    		// by the filename attribute passed in multipart
    		formValues.Set("Key", strings.ReplaceAll(formValues.Get("Key"), "${filename}", fileName))
    	}
    	object := trimLeadingSlash(formValues.Get("Key"))
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 16:27:27 GMT 2024
    - 61.6K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    )
    
    func getJobReportPath(job BatchJobRequest) string {
    	var fileName string
    	switch {
    	case job.Replicate != nil:
    		fileName = batchReplName
    	case job.KeyRotate != nil:
    		fileName = batchKeyRotationName
    	case job.Expire != nil:
    		fileName = batchExpireName
    	}
    	return pathJoin(batchJobReportsPrefix, job.ID, fileName)
    }
    
    func getJobPath(job BatchJobRequest) string {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  6. configure.py

        renamed_filepath = os.path.join(_TF_WORKSPACE_ROOT, filepath)
        symlink_force(existing_filepath, renamed_filepath)
      for filepath in IOS_FILES:
        filename = os.path.basename(filepath)
        new_filepath = os.path.join(_TF_WORKSPACE_ROOT, filename)
        symlink_force(filepath, new_filepath)
    
    
    def validate_cuda_config(environ_cp):
      """Run find_cuda_config.py and return cuda_toolkit_path, or None."""
    
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern void TF_RegisterLogListener(
        void (*listener)(const char*));
    
    // Register a FileSystem plugin from filename `plugin_filename`.
    //
    // On success, place OK in status.
    // On failure, place an error status in status.
    TF_CAPI_EXPORT extern void TF_RegisterFilesystemPlugin(
        const char* plugin_filename, TF_Status* status);
    
    // Apis that are corresponding to python c api. --------------------
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  8. src/archive/zip/reader_test.go

    	if err == nil {
    		t.Errorf("archive/zip.NewReader: expected error when negative size is passed")
    	}
    }
    
    func messWith(fileName string, corrupter func(b []byte)) (r io.ReaderAt, size int64) {
    	data, err := os.ReadFile(filepath.Join("testdata", fileName))
    	if err != nil {
    		panic("Error reading " + fileName + ": " + err.Error())
    	}
    	corrupter(data)
    	return bytes.NewReader(data), int64(len(data))
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

    <!-- NEW RELEASE NOTES ENTRY -->
    
    
    # v1.3.10
    
    [Documentation](http://kubernetes.github.io) & [Examples](http://releases.k8s.io/release-1.3/examples)
    
    ## Downloads for v1.3.10
    
    
    filename | sha256 hash
    -------- | -----------
    [kubernetes.tar.gz](https://storage.googleapis.com/kubernetes-release/release/v1.3.10/kubernetes.tar.gz) | `0f61517fbab1feafbe1024da0b88bfe16e61fed7e612285d70e3ecb53ce518cf`
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    	// of bucket metadata
    	zipWriter := zip.NewWriter(w)
    	defer zipWriter.Close()
    	rawDataFn := func(r io.Reader, filename string, sz int) error {
    		header, zerr := zip.FileInfoHeader(dummyFileInfo{
    			name:    filename,
    			size:    int64(sz),
    			mode:    0o600,
    			modTime: time.Now(),
    			isDir:   false,
    			sys:     nil,
    		})
    		if zerr != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 77.5K bytes
    - Viewed (0)
Back to top