Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for rootKey (0.2 sec)

  1. src/internal/trace/traceviewer/emitter.go

    // pointers to the given data are being retained beyond the call to Stack.
    func (e *Emitter) Stack(stk []*trace.Frame) int {
    	return e.buildBranch(e.frameTree, stk)
    }
    
    // buildBranch builds one branch in the prefix tree rooted at ctx.frameTree.
    func (e *Emitter) buildBranch(parent frameNode, stk []*trace.Frame) int {
    	if len(stk) == 0 {
    		return parent.id
    	}
    	last := len(stk) - 1
    	frame := stk[last]
    	stk = stk[:last]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/memcombine.go

    			if v.Op != OpOr16 && v.Op != OpOr32 && v.Op != OpOr64 {
    				continue
    			}
    			if mark.contains(v.ID) {
    				// marked - means it is not the root of an OR tree
    				continue
    			}
    			// Add the OR tree rooted at v to the order.
    			// We use BFS here, but any walk that puts roots before leaves would work.
    			i := len(order)
    			order = append(order, v)
    			for ; i < len(order); i++ {
    				x := order[i]
    				for j := 0; j < 2; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. architecture/networking/pilot.md

    #### Multicluster
    
    Various controllers read from multiple clusters.
    
    This is rooted in the Multicluster Secret controller, which reads `kubeconfig` files (stored as `Secrets`), and creating Kubernetes clients for each. The controller allows registering handlers which can process Add/Update/Delete of clusters.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    			if strings.Contains(ns, "@") {
    				return nil, errorf("replacement module must match format 'path version', not 'path@version'")
    			}
    			return nil, errorf("replacement module without version must be directory path (rooted or starting with . or ..)")
    		}
    		if filepath.Separator == '/' && strings.Contains(ns, `\`) {
    			return nil, errorf("replacement directory appears to be Windows path (on a non-windows system)")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. src/runtime/metrics/doc.go

    # Metric key format
    
    As mentioned earlier, metric keys are strings. Their format is simple and well-defined,
    designed to be both human and machine readable. It is split into two components,
    separated by a colon: a rooted path and a unit. The choice to include the unit in
    the key is motivated by compatibility: if a metric's unit changes, its semantics likely
    did also, and a new key should be introduced.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux_test.go

    		// Since this test does need root to work, we need to skip it.
    		t.Skip("skipping root only test on a non-root builder")
    	}
    
    	if runtime.GOOS == "android" {
    		t.Skip("skipping on rooted android, see issue 27364")
    	}
    
    	// Copy the test binary to a location that a non-root user can read/execute
    	// after we drop privileges
    	tempDir, err := os.MkdirTemp("", "TestSyscallNoError")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    				DNSNames:     []string{"localhost"},
    				ExtKeyUsage:  tc.rootEKUs,
    			}
    			rootDER, err := CreateCertificate(rand.Reader, tmpl, tmpl, k.Public(), k)
    			if err != nil {
    				t.Fatalf("failed to create certificate: %s", err)
    			}
    			root, err := ParseCertificate(rootDER)
    			if err != nil {
    				t.Fatalf("failed to parse certificate: %s", err)
    			}
    			roots := NewCertPool()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/subr.go

    	// types: structs parent the types they embed, and types parent their
    	// fields or methods. Our goal here is to find the shortest path to
    	// a field or method named s in the subtree rooted at t. To accomplish
    	// that, we iteratively perform depth-first searches of increasing depth
    	// until we either find the named field/method or exhaust the tree.
    	for d := 0; ; d++ {
    		if d > len(dotlist) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys.go

    		if err := walk(filename, fi, walkFn); err != nil {
    			if !fi.IsDir() || err != filepath.SkipDir {
    				return err
    			}
    		}
    	}
    	return nil
    }
    
    // Walk walks the file tree rooted at root, calling walkFn for each file or
    // directory in the tree, including root.
    func Walk(root string, walkFn filepath.WalkFunc) error {
    	Trace("Walk", root)
    	info, err := Lstat(root)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/filesystem_interface.h

                         TF_Status* status);
    
      /// Deletes the directory specified by `path` and all its contents.
      ///
      /// This is accomplished by traversing directory tree rooted at `path` and
      /// deleting entries as they are encountered, from leaves to root. Each plugin
      /// is free to choose a different approach which obtains similar results.
      ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
Back to top