Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 852 for folder1 (0.21 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonSystemPropertiesIntegrationTest.groovy

                task verify {
                    doFirst {
                        println "verified = \${File.createTempFile('pre', 'post')}"
                    }
                }
            """
    
            def tmpPath1 = tempFolder('folder1')
            when:
            executer.withArgument("-Djava.io.tmpdir=${tmpPath1}")
            run("verify")
    
            then:
            daemons.daemons.size() == 1
            output.contains("verified = $tmpPath1")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            PatternMatcher matcher = copyAction.matcher
    
            ['root/folder1/folder2', 'modules/project1'].each {
                assertMatches matcher, it
            }
    
            ['archive/folder/file', 'root/archives/file', 'root/folder/abc',
             'collections/folder/file', 'root/collections/file', 'archives/collections/file',
             'root/folder/cde'].each {
                assertMatches matcher.negate(), it
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. pkg/test/util/file/file.go

    	return "", fmt.Errorf("file not found %v", filePath)
    }
    
    // ReadDir returns the names of all files in the given directory. This is not recursive.
    // The base path is appended; for example, ReadDir("dir") -> ["dir/file1", "dir/folder1"]
    func ReadDir(filePath string, extensions ...string) ([]string, error) {
    	dir, err := os.ReadDir(filePath)
    	if err != nil {
    		return nil, err
    	}
    	res := []string{}
    	for _, d := range dir {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle_test.go

    					Prefix: Prefix{
    						string: "folder1/folder1/exp_dt=2022-",
    						set:    true,
    					},
    				},
    				Expiration: Expiration{
    					Days: 1,
    					set:  true,
    				},
    			},
    		},
    	}
    	tests := []struct {
    		opts ObjectOpts
    		lc   Lifecycle
    		want int
    	}{
    		{
    			opts: ObjectOpts{
    				Name:        "folder1/folder1/exp_dt=2022-08-01/obj-1",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.cc

    namespace mlir::odml {
    
    namespace {
    
    // Helper class for parsing operands to a foldable operation.
    class FoldAdaptor {
     public:
      // Returns std::nullopt if the operation cannot be folded.
      static std::optional<FoldAdaptor> Create(Operation* operation) {
        auto foldable_opr = [](Value val) -> bool {
          return !llvm::isa<BlockArgument>(val) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 06:11:55 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/DefaultMemoryManagerTest.groovy

            and:
            def holder1 = Mock(MemoryHolder)
            def holder2 = Mock(MemoryHolder)
            memoryManager.addMemoryHolder(holder1)
            memoryManager.addMemoryHolder(holder2)
    
            when:
            memoryManager.requestFreeMemory(MemoryAmount.ofGigaBytes(5).bytes)
    
            then:
            1 * holder1.attemptToRelease(_) >> MemoryAmount.ofGigaBytes(2).bytes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 23:56:19 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.h

    Luke Boyer <******@****.***> 1714601324 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 22:33:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/SingleEntryModuleLibrary.java

        /**
         * Creates single entry module library
         *
         * @param library a path to jar or class folder in idea format
         * @param javadoc paths to javadoc jars or javadoc folders
         * @param source paths to source jars or source folders
         * @param scope scope
         */
        public SingleEntryModuleLibrary(FilePath library, Set<FilePath> javadoc, Set<FilePath> source, String scope) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/FolderBasedTest.kt

        @JvmField
        @Rule
        val tempFolder = TestNameTestDirectoryProvider(javaClass)
    
        val root: File
            get() = tempFolder.testDirectory
    
        fun withFolders(folders: FoldersDslExpression) =
            root.withFolders(folders)
    
        fun folder(path: String): File =
            existing(path).apply {
                assert(isDirectory)
            }
    
        fun file(path: String): File =
            existing(path).apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseLinkedResource.java

         * <p>
         * For example, a linked resource to a file system folder /some/path/to/someFolder can have a name 'someFolder'
         *
         * @return name
         */
        String getName();
    
        /**
         * The resource type.
         * <p>
         * If 'location' property is used the values are: "1" for a file, or "2" for a folder.
         * <p>
         * If 'locationUri' property is used then the values are:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top