Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 359 for dotpath (0.12 sec)

  1. platforms/documentation/docs/src/snippets/ant/properties/kotlin/build.xml

    <property name="antProp" value="a property defined in an Ant build"/>
    <!-- end::getproperty[] -->
    
    <!-- tag::setreference[] -->
    <path refid="classpath"/>
    <!-- end::setreference[] -->
    
    <!-- tag::getreference[] -->
    <path id="antPath" location="libs"/>
    <!-- end::getreference[] -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 421 bytes
    - Viewed (0)
  2. src/runtime/syscall_windows_test.go

    	oldRegs := runtime.SetIntArgRegs(abi.IntArgRegs)
    	defer runtime.SetIntArgRegs(oldRegs)
    
    	for _, dll := range cbDLLs {
    		t.Run(dll.name, func(t *testing.T) {
    			dllPath := dll.build(t, tmp)
    			dll := syscall.MustLoadDLL(dllPath)
    			defer dll.Release()
    			for _, cbf := range getCallbackTestFuncs() {
    				t.Run(cbf.cName(false), func(t *testing.T) {
    					stdcall := syscall.NewCallback(cbf.goFunc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. cmd/xl-storage.go

    	return listVols(ctx, s.drivePath)
    }
    
    // List all the volumes from drivePath.
    func listVols(ctx context.Context, dirPath string) ([]VolInfo, error) {
    	if err := checkPathLength(dirPath); err != nil {
    		return nil, err
    	}
    	entries, err := readDir(dirPath)
    	if err != nil {
    		if errors.Is(err, errFileAccessDenied) {
    			return nil, errDiskAccessDenied
    		} else if errors.Is(err, errFileNotFound) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  6. src/internal/filepathlite/path_windows.go

    	for i := prefixLen; i < len(path); i++ {
    		if IsPathSeparator(path[i]) {
    			count++
    			if count == 2 {
    				return i
    			}
    		}
    	}
    	return len(path)
    }
    
    // cutPath slices path around the first path separator.
    func cutPath(path string) (before, after string, found bool) {
    	for i := range path {
    		if IsPathSeparator(path[i]) {
    			return path[:i], path[i+1:], true
    		}
    	}
    	return path, "", false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. 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)
  8. src/internal/testenv/testenv.go

    // dstPath containing entries for the file mappings in packageFiles, as well
    // as for the packages transitively imported by the package(s) in pkgs.
    //
    // pkgs may include any package pattern that is valid to pass to 'go list',
    // so it may also be a list of Go source files all in the same directory.
    func WriteImportcfg(t testing.TB, dstPath string, packageFiles map[string]string, pkgs ...string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

            .listFiles()
            ?.associateWith { dir ->
                val dirPath = dir.toPath()
                Files.walk(dirPath).use { paths ->
                    paths.filter { !it.toFile().isDirectory }
                        .limit(4)
                        .map { dirPath.relativize(it).toString() }
                        .collect(Collectors.toList())
                }
            }?.filter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskInputsDeprecationSupport.java

        }
    
        @Override
        public TaskInputFilePropertyBuilder file(Object path) {
            throw failWithUnsupportedMethod("file(Object)");
        }
    
        @Override
        public TaskInputFilePropertyBuilder dir(Object dirPath) {
            throw failWithUnsupportedMethod("dir(Object)");
        }
    
        @Override
        public Map<String, Object> getProperties() {
            throw failWithUnsupportedMethod("getProperties()");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 17 11:16:36 UTC 2018
    - 2.6K bytes
    - Viewed (0)
Back to top