Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for tpath (2.03 sec)

  1. operator/pkg/name/name.go

    package name
    
    import (
    	"fmt"
    	"strings"
    
    	"istio.io/api/operator/v1alpha1"
    	iop "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/helm"
    	"istio.io/istio/operator/pkg/tpath"
    )
    
    // Kubernetes Kind strings.
    const (
    	CRDStr                            = "CustomResourceDefinition"
    	ClusterRoleStr                    = "ClusterRole"
    	ClusterRoleBindingStr             = "ClusterRoleBinding"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	"k8s.io/apimachinery/pkg/util/intstr"
    
    	"istio.io/api/operator/v1alpha1"
    	valuesv1alpha1 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/tpath"
    	"istio.io/istio/operator/pkg/util"
    )
    
    const (
    	validationMethodName = "Validate"
    )
    
    type deprecatedSettings struct {
    	old string
    	new string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/go/ast/import.go

    	}
    
    	// Sort the import specs by import path.
    	// Remove duplicates, when possible without data loss.
    	// Reassign the import paths to have the same position sequence.
    	// Reassign each comment to the spec on the same line.
    	// Sort the comments by new position.
    	slices.SortFunc(specs, func(a, b Spec) int {
    		ipath := importPath(a)
    		jpath := importPath(b)
    		r := cmp.Compare(ipath, jpath)
    		if r != 0 {
    			return r
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/path/filepath/path.go

    // Join(base, path) will always produce a path contained within base and
    // Clean(path) will always produce an unrooted path with no ".." path elements.
    //
    // IsLocal is a purely lexical operation.
    // In particular, it does not account for the effect of any symbolic links
    // that may exist in the filesystem.
    func IsLocal(path string) bool {
    	return filepathlite.IsLocal(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    func hostObject(ctxt *Link, objname string, path string) {
    	if ctxt.Debugvlog > 1 {
    		ctxt.Logf("hostObject(%s)\n", path)
    	}
    	objlib := sym.Library{
    		Pkg: objname,
    	}
    	f, err := bio.Open(path)
    	if err != nil {
    		Exitf("cannot open host object %q file %s: %v", objname, path, err)
    	}
    	defer f.Close()
    	h := ldobj(ctxt, f, &objlib, 0, path, path)
    	if h.ld == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/fsys/fsys.go

    func cleanGlobPathWindows(path string) (prefixLen int, cleaned string) {
    	vollen := volumeNameLen(path)
    	switch {
    	case path == "":
    		return 0, "."
    	case vollen+1 == len(path) && os.IsPathSeparator(path[len(path)-1]): // /, \, C:\ and C:/
    		// do nothing to the path
    		return vollen + 1, path
    	case vollen == len(path) && len(path) == 2: // C:
    		return vollen, path + "." // convert C: into C:.
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. src/os/dir.go

    func CopyFS(dir string, fsys fs.FS) error {
    	return fs.WalkDir(fsys, ".", func(path string, d fs.DirEntry, err error) error {
    		if err != nil {
    			return err
    		}
    
    		fpath, err := filepathlite.Localize(path)
    		if err != nil {
    			return err
    		}
    		newPath := joinPath(dir, fpath)
    		if d.IsDir() {
    			return MkdirAll(newPath, 0777)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/main.go

    	ctxt.Bso.Flush()
    	bench.Start("archive")
    	ctxt.archive()
    	bench.Report(os.Stdout)
    
    	errorexit()
    }
    
    type Rpath struct {
    	set bool
    	val string
    }
    
    func (r *Rpath) Set(val string) error {
    	r.set = true
    	r.val = val
    	return nil
    }
    
    func (r *Rpath) String() string {
    	return r.val
    }
    
    func startProfile() {
    	if *cpuprofile != "" {
    		f, err := os.Create(*cpuprofile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    		}
    	}
    
    	// Collect changes to explicit requirements in go.mod.
    	for _, req := range oldReqs {
    		if gover.IsToolchain(req.Path) {
    			continue
    		}
    		path := req.Path
    		old := req.Version
    		new := r.buildListVersion[path]
    		if old != new {
    			changes[path] = change{path, old, new}
    		}
    	}
    	for _, req := range newReqs {
    		if gover.IsToolchain(req.Path) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/iimport.go

    		return strings.Compare(a.Path(), b.Path())
    	})
    	localpkg.SetImports(list)
    
    	// package was imported completely and without errors
    	localpkg.MarkComplete()
    	return localpkg, nil
    }
    
    type setConstraintArgs struct {
    	t          *types.TypeParam
    	constraint types.Type
    }
    
    type iimporter struct {
    	exportVersion int64
    	ipath         string
    	version       int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top