Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 485 for filename (0.32 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/TransformedClassPathTest.groovy

            classPathAsList("1/${LEGACY_INSTRUMENTATION_MARKER.fileName}", "1.jar", "2/${LEGACY_INSTRUMENTATION_MARKER.fileName}", "2.jar")                                                                     | classPath("1.jar", "2.jar") | "2.jar"  | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 11:14:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. operator/pkg/verifier/verifier.go

    	filenames []string, controlPlaneOpts clioptions.ControlPlaneOptions,
    	options ...StatusVerifierOptions,
    ) (*StatusVerifier, error) {
    	verifier := StatusVerifier{
    		logger:           clog.NewDefaultLogger(),
    		successMarker:    "✅",
    		failureMarker:    "❌",
    		istioNamespace:   istioNamespace,
    		manifestsPath:    manifestsPath,
    		filenames:        filenames,
    		controlPlaneOpts: controlPlaneOpts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

    }
    
    void RamFileBlockCache::RemoveFile(const std::string& filename) {
      absl::MutexLock lock(&mu_);
      RemoveFile_Locked(filename);
    }
    
    void RamFileBlockCache::RemoveFile_Locked(const std::string& filename) {
      Key begin = std::make_pair(filename, 0);
      auto it = block_map_.lower_bound(begin);
      while (it != block_map_.end() && it->first.first == filename) {
        auto next = std::next(it);
        RemoveBlock(it);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 16 01:39:09 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  4. pkg/kubelet/config/file_linux_test.go

    				if symlink {
    					file = testCase.writeToFile(linkedDirName, fileName, t)
    					return
    				}
    
    				file = testCase.writeToFile(dirName, fileName, t)
    			}
    
    			go changeFile()
    			// expect an update by MODIFY inotify event
    			expectUpdate(t, ch, testCase)
    
    			if watchDir {
    				go changeFileName(dirName, fileName, fileName+"_ch", t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/internal/objfile/disasm.go

    	filename = filepath.Clean(os.ExpandEnv(filename))
    
    	var cf *CachedFile
    	var e *list.Element
    
    	for e = fc.files.Front(); e != nil; e = e.Next() {
    		cf = e.Value.(*CachedFile)
    		if cf.FileName == filename {
    			break
    		}
    	}
    
    	if e == nil {
    		content, err := os.ReadFile(filename)
    		if err != nil {
    			return nil, err
    		}
    
    		cf = &CachedFile{
    			FileName: filename,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/manager.go

    			LongName:   kubeConfig.longName,
    			FileName:   kubeConfig.fileName,
    			CABaseName: kubeadmconstants.CACertAndKeyBaseName, // all certificates in kubeConfig files are signed by the Kubernetes CA
    			CAName:     kubeadmconstants.CACertAndKeyBaseName,
    			readwriter: kubeConfigReadWriter,
    		}
    	}
    
    	return rm, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. istioctl/pkg/validate/validate.go

    	processedFiles := map[string]bool{}
    	for _, filename := range filenames {
    		var isDir bool
    		if filename != "-" {
    			fi, err := os.Stat(filename)
    			if err != nil {
    				errs = multierror.Append(errs, fmt.Errorf("cannot stat file %q: %v", filename, err))
    				continue
    			}
    			isDir = fi.IsDir()
    		}
    
    		if !isDir {
    			processFile(filename)
    			processedFiles[filename] = true
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/MultipartBodyTest.kt

          |Content-Type: multipart/mixed; boundary=BbC04y
          |
          |--BbC04y
          |Content-Disposition: file; filename="file1.txt"
          |Content-Type: text/plain; charset=utf-8
          |
          |... contents of file1.txt ...
          |--BbC04y
          |Content-Disposition: file; filename="file2.gif"
          |Content-Transfer-Encoding: binary
          |Content-Type: image/gif
          |
          |... contents of file2.gif ...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/PluginHelper.java

        protected Artifact getArtifactFromFileName(final ArtifactType artifactType, final String filename) {
            return getArtifactFromFileName(artifactType, filename, null);
        }
    
        public Artifact getArtifactFromFileName(final ArtifactType artifactType, final String filename, final String url) {
            final String baseName = StringUtils.removeEndIgnoreCase(filename, ".jar");
            final List<String> nameList = new ArrayList<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/cmd/gofmt/gofmt.go

    }
    
    // If info == nil, we are formatting stdin instead of a file.
    // If in == nil, the source is the contents of the file with the given filename.
    func processFile(filename string, info fs.FileInfo, in io.Reader, r *reporter) error {
    	src, err := readFile(filename, info, in)
    	if err != nil {
    		return err
    	}
    
    	fileSet := token.NewFileSet()
    	// If we are formatting stdin, we accept a program fragment in lieu of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top