Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 227 for subdir (0.34 sec)

  1. src/test/java/jcifs/tests/WatchTest.java

            try ( SmbResource subdir = this.base.resolve("test/") ) {
                subdir.mkdir();
                try ( SmbWatchHandle w = this.base.watch(FileNotifyInformation.FILE_NOTIFY_CHANGE_FILE_NAME, true) ) {
                    setupWatch(w);
                    try ( SmbResource cr = new SmbFile(subdir, "created") ) {
                        cr.createNewFile();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryWalkerTest.groovy

            }
            if (currentDepth < maxDepth) {
                for (int i = 0; i < dirCount; i++) {
                    TestFile subDir = parentDir.createDir("dir" + fileIdGenerator.incrementAndGet())
                    generateFilesAndSubDirectories(subDir, fileCount, dirCount, maxDepth, currentDepth + 1, fileIdGenerator)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

            // received file changes for all the files inside.
            def inputSubdirectories = (1..changesLimit).collect { inputDir.createDir("subdir${it}")}
            def inputFiles = inputSubdirectories.collect { inputDir.file("input.txt") }
            when:
            succeeds("theTask")
            inputFiles.each { it.createFile() }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants(
                'transformedAgain/transformed/subdir/one/one.a',
                'transformedAgain/transformed/subdir/two/two.a',
                'subdir/one',
                'subdir/two'
            )
        }
    
        def "include exclude with CopySpec"() {
            given:
            buildScript '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

            def destinationDir = spec.getDestinationDir()
            createNewFile(new File(destinationDir, "file.txt"))
            createNewFile(new File(destinationDir, "subDir/another-file.txt"))
            createNewFile(new File(destinationDir, "subDir/some-dest-file.class"))
            def annotationOutput = createNewDirectory(file("annotationOut"))
            createNewFile(new File(annotationOutput, "some-ann-file.ann"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

          IsOk());
      ASSERT_THAT(env->RecursivelyCreateDir(absl::StrCat(*tmp_dir, "/subdir")),
                  IsOk());
    
      absl::StatusOr<std::vector<std::string>> children = ListDirectory(*tmp_dir);
      EXPECT_THAT(children, IsOk());
      EXPECT_THAT(children.value(), SizeIs(3));
      EXPECT_THAT(children.value(),
                  UnorderedElementsAre("subdir", "tmp_file1", "tmp_file2"));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem_test.cc

      WriteString(file, "test");
      EXPECT_TF_OK(status_);
    
      const std::string subdir = io::JoinPath(base, "SubDir");
      tf_gcs_filesystem::CreateDir(filesystem_, subdir.c_str(), status_);
      EXPECT_TF_OK(status_);
      const std::string subfile = io::JoinPath(subdir, "TestSubFile.csv");
      WriteString(subfile, "test");
      EXPECT_TF_OK(status_);
    
      char** entries;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 12:04:23 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// remains up to date. If so, whatever cached object it was
    	// taken from can be reused.
    	// The subdir gives subdirectory name where the module root is expected to be found,
    	// "" for the root or "sub/dir" for a subdirectory (no trailing slash).
    	CheckReuse(ctx context.Context, old *Origin, subdir string) error
    
    	// Tags lists all tags with the given prefix.
    	Tags(ctx context.Context, prefix string) (*Tags, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/git.go

    	if old == nil {
    		return fmt.Errorf("missing origin")
    	}
    	if old.VCS != "git" || old.URL != r.remoteURL {
    		return fmt.Errorf("origin moved from %v %q to %v %q", old.VCS, old.URL, "git", r.remoteURL)
    	}
    	if old.Subdir != subdir {
    		return fmt.Errorf("origin moved from %v %q %q to %v %q %q", old.VCS, old.URL, old.Subdir, "git", r.remoteURL, subdir)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    		if !strings.HasPrefix(zf.Name, subdir) || strings.HasSuffix(zf.Name, "/") {
    			continue
    		}
    
    		n := strings.TrimPrefix(zf.Name, subdir)
    		if n == "" {
    			continue
    		}
    		n = strings.TrimPrefix(n, "/")
    
    		fs = append(fs, zipFile{
    			name: n,
    			f:    zf,
    		})
    		if n == "LICENSE" {
    			haveLICENSE = true
    		}
    	}
    
    	if !haveLICENSE && subdir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
Back to top