Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 619 for rooted (0.12 sec)

  1. src/cmd/go/testdata/script/mod_get_main.txt

    stderr '^go: \.\. \('$WORK'[/\\]gopath\) is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    ! go get $WORK
    stderr '^go: '$WORK' is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    ! go get ../...
    stderr '^go: \.\./\.\.\. \('$WORK'[/\\]gopath([/\\]...)?\) is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    ! go get $WORK/...
    stderr '^go: '$WORK'[/\\]\.\.\. is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/filepathlite/path.go

    					out.w--
    				}
    			case !rooted:
    				// cannot backtrack, but not rooted, so append .. element.
    				if out.w > 0 {
    					out.append(Separator)
    				}
    				out.append('.')
    				out.append('.')
    				dotdot = out.w
    			}
    		default:
    			// real path element.
    			// add slash if needed
    			if rooted && out.w != 1 || !rooted && out.w != 0 {
    				out.append(Separator)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/path/path.go

    					out.w--
    				}
    			case !rooted:
    				// cannot backtrack, but not rooted, so append .. element.
    				if out.w > 0 {
    					out.append('/')
    				}
    				out.append('.')
    				out.append('.')
    				dotdot = out.w
    			}
    		default:
    			// real path element.
    			// add slash if needed
    			if rooted && out.w != 1 || !rooted && out.w != 0 {
    				out.append('/')
    			}
    			// copy element
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.h

    // Find the first op with any of the specified types on each path rooted at the
    // `root` node in a tree. Additional checks can be applied via `predicate`. The
    // results are stored in `ops`.
    template <typename T, typename... Types>
    LogicalResult GetFirstOpsOfType(
        func::FuncOp root, SymbolTable &symtab,
        const std::function<bool(SymbolUserOpInterface)> &predicate,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 16 06:18:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testplugin/testdata/issue18676/main.go

    //     (concrete type / interface type).  This itab goes in hash bucket 0x111.
    //  2. The plugin adds that same itab again.  That makes a cycle in the itab
    //     chain rooted at hash bucket 0x111.
    //  3. The main binary then asks for the itab for *dynamodbstreamsevt.Event /
    //     json.Unmarshaler.  This itab happens to also live in bucket 0x111.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/io/fs/sub.go

    import (
    	"errors"
    	"path"
    )
    
    // A SubFS is a file system with a Sub method.
    type SubFS interface {
    	FS
    
    	// Sub returns an FS corresponding to the subtree rooted at dir.
    	Sub(dir string) (FS, error)
    }
    
    // Sub returns an [FS] corresponding to the subtree rooted at fsys's dir.
    //
    // If dir is ".", Sub returns fsys unchanged.
    // Otherwise, if fs implements [SubFS], Sub returns fsys.Sub(dir).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/net/dnsconfig.go

    var getHostname = os.Hostname // variable for testing
    
    type dnsConfig struct {
    	servers       []string      // server addresses (in host:port form) to use
    	search        []string      // rooted suffixes to append to local name
    	ndots         int           // number of dots in name to trigger absolute lookup
    	timeout       time.Duration // wait before giving up on a query, including retries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/init.go

    	UsageLine: "go mod init [module-path]",
    	Short:     "initialize new module in current directory",
    	Long: `
    Init initializes and writes a new go.mod file in the current directory, in
    effect creating a new module rooted at the current directory. The go.mod file
    must not already exist.
    
    Init accepts one optional argument, the module path for the new module. If the
    module path argument is omitted, init will attempt to infer the module path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 15:51:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/path/filepath/path.go

    // uses slash separated paths.
    func WalkDir(root string, fn fs.WalkDirFunc) error {
    	info, err := os.Lstat(root)
    	if err != nil {
    		err = fn(root, nil, err)
    	} else {
    		err = walkDir(root, fs.FileInfoToDirEntry(info), fn)
    	}
    	if err == SkipDir || err == SkipAll {
    		return nil
    	}
    	return err
    }
    
    // Walk walks the file tree rooted at root, calling fn for each file or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. test/fixedbugs/bug248.dir/bug3.go

    var p0i p0.I = t0(0) // ok
    var p1i p1.I = t1(0) // ok
    
    func main() {
    	// check that reflect paths are correct,
    	// meaning that reflect data for v0, v1 didn't get confused.
    
    	// path is full (rooted) path name.  check suffix for gc, prefix for gccgo
    	if s := reflect.TypeOf(v0).PkgPath(); !strings.HasSuffix(s, "/bug0") && !strings.HasPrefix(s, "bug0") {
    		println("bad v0 path", len(s), s)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 26 15:20:42 UTC 2018
    - 1.9K bytes
    - Viewed (0)
Back to top