Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 844 for pathsOf (0.41 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    func Object(pkg *types.Package, p Path) (types.Object, error) {
    	pathstr := string(p)
    	if pathstr == "" {
    		return nil, fmt.Errorf("empty path")
    	}
    
    	var pkgobj, suffix string
    	if dot := strings.IndexByte(pathstr, opType); dot < 0 {
    		pkgobj = pathstr
    	} else {
    		pkgobj = pathstr[:dot]
    		suffix = pathstr[dot:] // suffix starts with "."
    	}
    
    	obj := pkg.Scope().Lookup(pkgobj)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/helpers.go

    // passing the configuration to the application. This method must be kept up to date as new fields are added.
    func KubeletConfigurationPathRefs(kc *KubeletConfiguration) []*string {
    	paths := []*string{}
    	paths = append(paths, &kc.StaticPodPath)
    	paths = append(paths, &kc.Authentication.X509.ClientCAFile)
    	paths = append(paths, &kc.TLSCertFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_trimpath.txt

    env GO111MODULE=on
    mkdir $WORK/a/src/paths $WORK/b/src/paths
    cp paths.go $WORK/a/src/paths
    cp paths.go $WORK/b/src/paths
    cp overlay.json $WORK/a/src/paths
    cp overlay.json $WORK/b/src/paths
    cp go.mod $WORK/a/src/paths/
    cp go.mod $WORK/b/src/paths/
    
    
    # A binary built without -trimpath should contain the module root dir
    # and GOROOT for debugging and stack traces.
    cd $WORK/a/src/paths
    go build -o $WORK/paths-dbg.exe .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top