Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 717 for filename (0.31 sec)

  1. src/cmd/cover/pkgname_test.go

    func TestPackageName(t *testing.T) {
    	var tests = []struct {
    		fileName, pkgName string
    	}{
    		{"", ""},
    		{"///", ""},
    		{"fmt", ""}, // No Go file, improper form.
    		{"fmt/foo.go", "fmt"},
    		{"encoding/binary/foo.go", "binary"},
    		{"encoding/binary/////foo.go", "binary"},
    	}
    	var tf templateFile
    	for _, test := range tests {
    		tf.Name = test.fileName
    		td := templateData{
    			Files: []*templateFile{&tf},
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 30 03:58:01 UTC 2020
    - 733 bytes
    - Viewed (0)
  2. hack/verify-staging-meta-files.sh

      repo=$(basename "${full_repo_path}")
      for filename in "${expected_filenames[@]}"; do
        if echo " ${exceptions[*]} " | grep -F " ${repo}/${filename} " >/dev/null; then
          continue
        elif [ ! -f "${KUBE_ROOT}/staging/src/k8s.io/${repo}/${filename}" ]; then
          echo "staging/src/k8s.io/${repo}/${filename} does not exist and must be created"
          RESULT=1
        fi
      done
    done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 21 10:10:46 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/fscc/FileRenameInformation2.java

        private boolean replaceIfExists;
        private String fileName;
    
    
        /**
         * 
         */
        public FileRenameInformation2 () {}
    
    
        /**
         * 
         * @param name
         * @param replaceIfExists
         */
        public FileRenameInformation2 ( String name, boolean replaceIfExists ) {
            this.fileName = name;
            this.replaceIfExists = replaceIfExists;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args.cc

    }
    
    // Strips the "assets/" directory prefix, if `filename` begins with it. The
    // SavedModel loader attaches the prefix for you during loading.
    StringRef MaybeStripAssetDirectoryPrefix(const StringRef filename) {
      if (filename.find("assets/") == 0) {
        return filename.drop_front(7);
      } else {
        return filename;
      }
    }
    
    AssetFileDef CreateAssetFileDef(const StringRef filename,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    type Profile struct {
    	FileName string
    	Mode     string
    	Blocks   []ProfileBlock
    }
    
    // ProfileBlock represents a single block of profiling data.
    type ProfileBlock struct {
    	StartLine, StartCol int
    	EndLine, EndCol     int
    	NumStmt, Count      int
    }
    
    type byFileName []*Profile
    
    func (p byFileName) Len() int           { return len(p) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                e.filename = readString( buffer, bufferIndex + 94, e.fileNameLength );
    
                /* lastNameOffset ends up pointing to either to
                 * the exact location of the filename(e.g. Win98)
                 * or to the start of the entry containing the
                 * filename(e.g. NT). Ahhrg! In either case the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/dfs/DfsReferralRequestBuffer.java

        private final int maxReferralLevel;
        private final String path;
    
    
        /**
         * @param filename
         * @param maxReferralLevel
         */
        public DfsReferralRequestBuffer ( String filename, int maxReferralLevel ) {
            this.path = filename;
            this.maxReferralLevel = maxReferralLevel;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Encodable#size()
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComSetInformation.java

        private long lastWriteTime;
    
    
        /**
         * 
         * @param config
         * @param filename
         * @param attrs
         * @param mtime
         */
        public SmbComSetInformation ( Configuration config, String filename, int attrs, long mtime ) {
            super(config, SMB_COM_SET_INFORMATION, filename);
            this.fileAttributes = attrs;
            this.lastWriteTime = mtime;
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/ArchiveTestFixture.groovy

            def expectedCounts = ArrayListMultimap.create()
            for (String fileName : relativePaths) {
                expectedCounts.put(fileName, fileName)
            }
            for (String fileName : relativePaths) {
                assertEquals(expectedCounts.get(fileName).size(), filesByRelativePath.get(fileName).size())
            }
            this
        }
    
        def hasDescendantsInOrder(String... relativePaths) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/robustio/robustio_other.go

    //go:build !windows && !darwin
    
    package robustio
    
    import (
    	"os"
    )
    
    func rename(oldpath, newpath string) error {
    	return os.Rename(oldpath, newpath)
    }
    
    func readFile(filename string) ([]byte, error) {
    	return os.ReadFile(filename)
    }
    
    func removeAll(path string) error {
    	return os.RemoveAll(path)
    }
    
    func isEphemeralError(err error) bool {
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 516 bytes
    - Viewed (0)
Back to top