Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,905 for pathsOf (0.27 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

            Set<Path> sourceFolders = pathsOf(existing(getSourceDirs()));
            Set<Path> generatedSourceFolders = pathsOf(existing(getGeneratedSourceDirs()));
            Set<Path> testSourceFolders = pathsOf(existing(getTestSources().getFiles()));
            Set<Path> resourceFolders = pathsOf(existing(getResourceDirs()));
            Set<Path> testResourceFolders = pathsOf(existing(getTestResources().getFiles()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/ConsumerOperationParametersTest.groovy

            when:
            def launchable1 = Mock(TaskListingLaunchable)
            def paths1 = new TreeSet<>()
            paths1.add(':a')
            _ * launchable1.taskNames >> paths1
            def launchable2 = Mock(TaskListingLaunchable)
            def paths2 = new TreeSet<>()
            paths2.add(':b')
            paths2.add(':lib:b')
            _ * launchable2.taskNames >> paths2
            builder.launchables = [adapt(launchable1), adapt(launchable2)]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	if pkg == "runtime" {
    		xmkdirall(pathf("%s/pkg/include", goroot))
    		// For use by assembly and C files.
    		copyfile(pathf("%s/pkg/include/textflag.h", goroot),
    			pathf("%s/src/runtime/textflag.h", goroot), 0)
    		copyfile(pathf("%s/pkg/include/funcdata.h", goroot),
    			pathf("%s/src/runtime/funcdata.h", goroot), 0)
    		copyfile(pathf("%s/pkg/include/asm_ppc64x.h", goroot),
    			pathf("%s/src/runtime/asm_ppc64x.h", goroot), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/helpers_test.go

    	if pathStr := path.String(); len(pathStr) > 0 && skipRecurseList.Has(pathStr) {
    		return sets.New[string](pathStr)
    	}
    
    	paths := sets.New[string]()
    	switch tp.Kind() {
    	case reflect.Pointer:
    		paths.Insert(sets.List(allPrimitiveFieldPaths(t, skipRecurseList, tp.Elem(), path))...)
    	case reflect.Struct:
    		for i := 0; i < tp.NumField(); i++ {
    			field := tp.Field(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. internal/lock/lock_windows.go

    	// simplicity it avoids the conversion entirely for relative
    	// paths or paths containing .. elements. For now,
    	// \\server\share paths are not converted to
    	// \\?\UNC\server\share paths because the rules for doing so
    	// are less well-specified.
    	if len(path) >= 2 && path[:2] == `\\` {
    		// Don't canonicalize UNC paths.
    		return path
    	}
    	if !filepath.IsAbs(path) {
    		// Relative path
    		return path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/query.go

    	// unlike the modules in pkgMods, this module does not inherently exclude
    	// any other module in pkgMods.
    	mod module.Version
    
    	err error
    }
    
    // errSet returns a pathSet containing the given error.
    func errSet(err error) pathSet { return pathSet{err: err} }
    
    // newQuery returns a new query parsed from the raw argument,
    // which must be either path or path@version.
    func newQuery(raw string) (*query, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. src/cmd/dist/buildtool.go

    		home := os.Getenv("HOME")
    		goroot_bootstrap = pathf("%s/go1.4", home)
    		for _, d := range tryDirs {
    			if p := pathf("%s/%s", home, d); isdir(p) {
    				goroot_bootstrap = p
    			}
    		}
    	}
    	xprintf("Building Go toolchain1 using %s.\n", goroot_bootstrap)
    
    	mkbuildcfg(pathf("%s/src/internal/buildcfg/zbootstrap.go", goroot))
    	mkobjabi(pathf("%s/src/cmd/internal/objabi/zbootstrap.go", goroot))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    func (r *resolver) tryWildcard(ctx context.Context, q *query, m module.Version) pathSet {
    	mMatches := q.matchesPath(m.Path)
    	packages, err := r.matchInModule(ctx, q.pattern, m)
    	if err != nil {
    		return errSet(err)
    	}
    	if len(packages) > 0 {
    		return pathSet{pkgMods: []module.Version{m}}
    	}
    	if mMatches {
    		return pathSet{mod: m}
    	}
    	return pathSet{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

        public void setFrom(Object... paths) {
            assertMutable();
            setExplicitCollector(paths.length > 0
                ? newExplicitValue(paths)
                : EMPTY_COLLECTOR);
        }
    
        private ValueCollector newConventionValue(Iterable<?> paths) {
            return newValue(getBaseValue(false), paths);
        }
    
        private ValueCollector newConventionValue(Object[] paths) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		}
    		var result map[string]interface{}
    		json.Unmarshal(body, &result)
    		paths, ok := result["paths"].([]interface{})
    		if !ok {
    			t.Errorf("paths not found")
    		}
    		pathset := sets.NewString()
    		for _, p := range paths {
    			pathset.Insert(p.(string))
    		}
    		expectedset := sets.NewString(expectedPaths...)
    		for p := range pathset.Difference(expectedset) {
    			t.Errorf("Got %v path, which we did not expect", p)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top