Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for subdir (0.12 sec)

  1. src/cmd/go/testdata/script/reuse_git.txt

    ! stdout '"Reuse": true'
    stdout '"URL": ".*/git/tagtests"'
    
    # reuse with stale Dir
    cp tagtestsv022.json tagtestsv022baddir.json
    replace '\t\t\"Ref\":' '\t\t\"Subdir\": \"subdir\",\n\t\t\"Ref\":' tagtestsv022baddir.json
    go mod download -reuse=tagtestsv022baddir.json -x -json vcs-test.golang.org/git/tagtests.git@v0.2.2
    ! stdout '"Reuse": true'
    stdout '"URL": ".*/git/tagtests"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/common/path_config.cc

      if (source_tfroot_pos != source_path_components.end()) {
        tf_prefix_dir =
            absl::StrJoin(source_path_components.begin(), source_tfroot_pos, "/");
      } else {
        tf_prefix_dir = source_dir;
      }
    
      // TF subdir, e.g. "c/ops" given output_dir "blah/blah/tensorflow/c/ops"
      std::vector<string> output_path_components =
          tensorflow::str_util::Split(output_dir, "/");
      auto output_tfroot_pos = std::find(output_path_components.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/coderepo.go

    		}
    	} else if !errors.Is(err, fs.ErrNotExist) {
    		return err
    	}
    
    	dl, err := r.code.ReadZip(ctx, rev, subdir, codehost.MaxZipFile)
    	if err != nil {
    		return err
    	}
    	defer dl.Close()
    	subdir = strings.Trim(subdir, "/")
    
    	// Spool to local file.
    	f, err := os.CreateTemp("", "go-codehost-")
    	if err != nil {
    		dl.Close()
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/cache.go

    	// We subtract an additional mtimeInterval
    	// to account for the imprecision of our "last used" mtimes.
    	cutoff := now.Add(-trimLimit - mtimeInterval)
    	for i := 0; i < 256; i++ {
    		subdir := filepath.Join(c.dir, fmt.Sprintf("%02x", i))
    		c.trimSubdir(subdir, cutoff)
    	}
    
    	// Ignore errors from here: if we don't write the complete timestamp, the
    	// cache will appear older than it is, and we'll trim it again next time.
    	var b bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/DefaultOutputFilesRepositoryTest.groovy

            repository.isGeneratedByGradle(file('build/outputs'))
            repository.isGeneratedByGradle(file('build/outputs/directory'))
            repository.isGeneratedByGradle(file('build/outputs/directory/subdir'))
            repository.isGeneratedByGradle(file('build/file'))
            repository.isGeneratedByGradle(file('build/file/other'))
            !repository.isGeneratedByGradle(file('build/other'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                            continue;
                        }
                        subdir = path;
                    }
                    // When the same module is found in main and test output, the latter is patching the former.
                    addPathElement(JavaPathType.patchModule(moduleName), subdir);
                    addToClasspath = false;
                }
                /*
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/path/filepath/path_test.go

    	}
    	defer os.RemoveAll(tmpDir)
    	chdir(t, tmpDir)
    
    	subdir := filepath.Join("a", "b")
    	if err := os.MkdirAll(subdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	if err := os.Symlink(subdir, "c"); err != nil {
    		t.Fatal(err)
    	}
    	if err := os.WriteFile(filepath.Join(subdir, "file"), nil, 0666); err != nil {
    		t.Fatal(err)
    	}
    
    	subdir = filepath.Join("d", "e", "f")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            }
    
            void taskCreatedOutputs() {
                assert outputFile.text == "This is the text"
                assert outputDir.allDescendants().containsAll('subDir/inputFile1.txt', 'subDir/inputFile2.txt')
            }
    
            File getOverlappingOutputFile() {
                file("${getOverlappingOutputDir()}/new-output.txt")
            }
    
            void overlappingOutputsAreStillPresent() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. hack/update-mocks.sh

    function git_grep() {
      git grep --untracked --exclude-standard \
          "$@" \
          ':!:vendor/*'        `# catches vendor/...` \
          ':!:*/vendor/*'      `# catches any subdir/vendor/...` \
          ':!:third_party/*'   `# catches third_party/...` \
          ':!:*/third_party/*' `# catches third_party/...` \
          ':!:*/testdata/*'    `# catches any testdata` \
          ':(glob)**/*.go'
    }
    
    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. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

                 */
                if (Files.isDirectory(file)) {
                    Map<Path, String> names = new HashMap<>();
                    try (Stream<Path> subdirs = Files.list(file)) {
                        subdirs.filter(Files::isDirectory).forEach((subdir) -> {
                            Path mf = subdir.resolve(MODULE_INFO);
                            if (Files.isRegularFile(mf)) {
                                String name = null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top