Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for destPath (0.44 sec)

  1. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

         *
         * @param destPath destination directory *inside* the archive for the files
         * @return this
         */
        @Override
        public AbstractArchiveTask into(Object destPath) {
            super.into(destPath);
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecResolutionTest.groovy

            then:
            parentContext.destPath == new RelativePath(false, 'parent')
    
            when:
            DefaultCopySpec child = copySpec()
            CopySpecResolver childResolver = child.buildResolverRelativeToParent(parentContext)
    
            then:
            childResolver.destPath == new RelativePath(false, 'parent')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            expect:
            spec.buildRootResolver().destPath == relativeDirectory()
        }
    
        def "into"() {
            when:
            spec.into destDir
    
            then:
            spec.buildRootResolver().destPath == relativeDirectory(*destPath)
    
            where:
            destDir              | destPath
            'spec'               | ['spec']
            '/'                  | [];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/CopySpec.java

        /**
         * {@inheritDoc}
         */
        @Override
        CopySpec into(Object destPath);
    
        /**
         * Creates and configures a child {@code CopySpec} with the given destination path.
         * The destination is evaluated as per {@link org.gradle.api.Project#file(Object)}.
         *
         * @param destPath Path to the destination directory for a Copy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ZipIntegrationTest.groovy

            when:
            succeeds "zip", "--info"
            then:
            executedAndNotSkipped(":zip")
            output.contains "Value of input property 'rootSpec\$1\$1.destPath' has changed for task ':zip'"
            output.contains "Value of input property 'rootSpec\$1\$1\$1.destPath' has changed for task ':zip'"
        }
    
        private def createTestFiles() {
            createDir('dir1', {
                file('file1.txt').text = "dir1/file1.txt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
Back to top