Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for rootKey (0.21 sec)

  1. tensorflow/c/env.h

    TF_CAPI_EXPORT extern void TF_DeleteDir(const char* dirname, TF_Status* status);
    
    // Deletes the specified directory and all subdirectories and files underneath
    // it. This is accomplished by traversing the directory tree rooted at dirname
    // and deleting entries as they are encountered.
    //
    // If dirname itself is not readable or does not exist, *undeleted_dir_count is
    // set to 1, *undeleted_file_count is set to 0 and an appropriate status (e.g.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  2. src/net/http/routing_tree.go

    	n := root.addChild(p.host)
    	// Second level of tree is method.
    	n = n.addChild(p.method)
    	// Remaining levels are path.
    	n.addSegments(p.segments, p, h)
    }
    
    // addSegments adds the given segments to the tree rooted at n.
    // If there are no segments, then n is a leaf node that holds
    // the given pattern and handler.
    func (n *routingNode) addSegments(segs []segment, p *pattern, h Handler) {
    	if len(segs) == 0 {
    		n.set(p, h)
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/crypto/x509/cert_pool.go

    		if !other.haveSum[h] {
    			return false
    		}
    	}
    	return true
    }
    
    // AddCertWithConstraint adds a certificate to the pool with the additional
    // constraint. When Certificate.Verify builds a chain which is rooted by cert,
    // it will additionally pass the whole chain to constraint to determine its
    // validity. If constraint returns a non-nil error, the chain will be discarded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. src/runtime/sema.go

    			root.treap = nil
    		}
    		tailtime = s.acquiretime
    	}
    	s.parent = nil
    	s.elem = nil
    	s.next = nil
    	s.prev = nil
    	s.ticket = 0
    	return s, now, tailtime
    }
    
    // rotateLeft rotates the tree rooted at node x.
    // turning (x a (y b c)) into (y (x a b) c).
    func (root *semaRoot) rotateLeft(x *sudog) {
    	// p -> (x a (y b c))
    	p := x.parent
    	y := x.next
    	b := y.prev
    
    	y.prev = x
    	x.parent = y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    		if node, ok := path[i].(*ast.IfStmt); ok && node.Else == stmt {
    			stmt = node
    			continue
    		}
    		break
    	}
    	return stmt.(ast.Stmt)
    }
    
    // WalkASTWithParent walks the AST rooted at n. The semantics are
    // similar to ast.Inspect except it does not call f(nil).
    func WalkASTWithParent(n ast.Node, f func(n ast.Node, parent ast.Node) bool) {
    	var ancestors []ast.Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/cmd/dist/util.go

    	}
    }
    
    // xremove removes the file p.
    func xremove(p string) {
    	if vflag > 2 {
    		errprintf("rm %s\n", p)
    	}
    	os.Remove(p)
    }
    
    // xremoveall removes the file or directory tree rooted at p.
    func xremoveall(p string) {
    	if vflag > 2 {
    		errprintf("rm -r %s\n", p)
    	}
    	os.RemoveAll(p)
    }
    
    // xreaddir replaces dst with a list of the names of the files and subdirectories in dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. src/net/http/fs.go

    		if err != nil {
    			return originalErr
    		}
    		if !fi.IsDir() {
    			return fs.ErrNotExist
    		}
    	}
    	return originalErr
    }
    
    // Open implements [FileSystem] using [os.Open], opening files for reading rooted
    // and relative to the directory d.
    func (d Dir) Open(name string) (File, error) {
    	path := path.Clean("/" + name)[1:]
    	if path == "" {
    		path = "."
    	}
    	path, err := filepath.Localize(path)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. src/embed/embed.go

    // their names, patterns can be written as Go double-quoted or back-quoted
    // string literals.
    //
    // If a pattern names a directory, all files in the subtree rooted at that directory are
    // embedded (recursively), except that files with names beginning with ‘.’ or ‘_’
    // are excluded. So the variable in the above example is almost equivalent to:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    func inlineText(ins []md.Inline) string {
    	var buf bytes.Buffer
    	for _, in := range ins {
    		in.PrintText(&buf)
    	}
    	return buf.String()
    }
    
    // Merge combines the markdown documents (files ending in ".md") in the tree rooted
    // at fs into a single document.
    // The blocks of the documents are concatenated in lexicographic order by filename.
    // Heading with no content are removed.
    // The link keys must be unique, and are combined into a single map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/search/search.go

    func IsRelativePath(pattern string) bool {
    	return strings.HasPrefix(pattern, "./") || strings.HasPrefix(pattern, "../") || pattern == "." || pattern == ".."
    }
    
    // InDir checks whether path is in the file tree rooted at dir.
    // If so, InDir returns an equivalent path relative to dir.
    // If not, InDir returns an empty string.
    // InDir makes some effort to succeed even in the presence of symbolic links.
    func InDir(path, dir string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top