Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for destPath (0.34 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopySpecWrapper.java

        }
    
        @Override
        public CopySpec into(Object destPath) {
            delegate.into(destPath);
            return this;
        }
    
        @Override
        public CopySpec into(Object destPath, Closure configureClosure) {
            return delegate.into(destPath, configureClosure);
        }
    
        @Override
        public CopySpec into(Object destPath, Action<? super CopySpec> copySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DelegatingCopySpecInternal.java

        }
    
        @Override
        public CopySpec into(Object destPath) {
            return getDelegateCopySpec().into(destPath);
        }
    
        @Override
        public CopySpec into(Object destPath, Closure configureClosure) {
            return getDelegateCopySpec().into(destPath, configureClosure);
        }
    
        @Override
        public CopySpec into(Object destPath, Action<? super CopySpec> copySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/tasks/AbstractCopyTask.java

         */
        @Override
        public AbstractCopyTask into(Object destPath, Closure configureClosure) {
            getMainSpec().into(destPath, configureClosure);
            return this;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public CopySpec into(Object destPath, Action<? super CopySpec> copySpec) {
            getMainSpec().into(destPath, copySpec);
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. cmd/xl-storage_test.go

    	}
    
    	testCases := []struct {
    		srcVol      string
    		destVol     string
    		srcPath     string
    		destPath    string
    		expectedErr error
    	}{
    		// TestXLStorage case - 1.
    		{
    			srcVol:      "src-vol",
    			destVol:     "dest-vol",
    			srcPath:     "file1",
    			destPath:    "file-one",
    			expectedErr: nil,
    		},
    		// TestXLStorage case - 2.
    		{
    			srcVol:      "src-vol",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/DefaultCopySpecCodec.kt

                writeCollection(value.children)
            }
        }
    
        override suspend fun ReadContext.decode(): DefaultCopySpec {
            return decodePreservingIdentity { id ->
                val destPath = readNullableString()
                val sourceFiles = read() as FileCollection
                val patterns = read() as PatternSet
                val duplicatesStrategy = readEnum<DuplicatesStrategy>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

            this.destDir = destDir;
            return this;
        }
    
        @Override
        public CopySpec into(Object destPath, Closure configureClosure) {
            return into(destPath, new ClosureBackedAction<>(configureClosure));
        }
    
        @Override
        public CopySpec into(Object destPath, Action<? super CopySpec> copySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

         * Specifies the destination directory for a copy. The destination is evaluated as per {@link
         * org.gradle.api.Project#file(Object)}.
         *
         * @param destPath Path to the destination directory for a Copy
         * @return this
         */
        CopyProcessingSpec into(Object destPath);
    
        /**
         * Renames a source file. The closure will be called with a single parameter, the name of the file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/os/file_windows.go

    				// Prepend the volume explicitly, because it may be different from the
    				// volume of the current working directory.
    				destpath = v + oldname
    			}
    		} else {
    			// oldname is relative to newname.
    			destpath = dirname(newname) + `\` + oldname
    		}
    	}
    
    	fi, err := Stat(destpath)
    	isdir := err == nil && fi.IsDir()
    
    	n, err := syscall.UTF16PtrFromString(fixLongPath(newname))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DuplicateHandlingCopyActionExecutorTest.groovy

            1 * delegateAction.processFile({ it.relativePath.pathString == '/root/path/file2.txt' })
            thrown(DuplicateFileCopyingException)
        }
    
    
        void files(String... fileNames) {
            copySpecResolver.destPath >> new RelativePath(false, '/root')
            def fileTree = Mock(FileTree)
            copySpecResolver.getSource() >> fileTree
            fileTree.visit(_ as FileVisitor) >> { FileVisitor visitor ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/internal/trace/reader_test.go

    	}
    	for _, testPath := range matches {
    		testPath := testPath
    		testName, err := filepath.Rel("./testdata", testPath)
    		if err != nil {
    			t.Fatalf("failed to relativize testdata path: %v", err)
    		}
    		t.Run(testName, func(t *testing.T) {
    			tr, exp, err := testtrace.ParseFile(testPath)
    			if err != nil {
    				t.Fatalf("failed to parse test file at %s: %v", testPath, err)
    			}
    			testReader(t, tr, exp)
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top