Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for destPath (0.18 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. src/internal/trace/summary_test.go

    }
    
    func TestRelatedGoroutinesV2Trace(t *testing.T) {
    	testPath := "testdata/tests/go122-gc-stress.test"
    	trc, _, err := testtrace.ParseFile(testPath)
    	if err != nil {
    		t.Fatalf("malformed test %s: bad trace file: %v", testPath, err)
    	}
    
    	// Create a reader.
    	r, err := trace.NewReader(trc)
    	if err != nil {
    		t.Fatalf("failed to create trace reader for %s: %v", testPath, err)
    	}
    
    	// Collect all the events.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_client_test.go

    	}{
    		{name: "test ok", volID: "vol-test", targetPath: testPath},
    		{name: "missing volID", targetPath: testPath, mustFail: true},
    		{name: "missing target path", volID: "vol-test", mustFail: true},
    		{name: "bad fs", volID: "vol-test", targetPath: testPath, fsType: "badfs", mustFail: true},
    		{name: "grpc error", volID: "vol-test", targetPath: testPath, mustFail: true, err: errors.New("grpc error")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top