Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 133 for Child (0.12 sec)

  1. src/runtime/tracestack.go

    		w.varint(frame.funcID)
    		w.varint(frame.fileID)
    		w.varint(frame.line)
    	}
    
    	// Recursively walk all child nodes.
    	for i := range node.children {
    		child := node.children[i].Load()
    		if child == nil {
    			continue
    		}
    		w = dumpStacksRec((*traceMapNode)(child), w, stackBuf)
    	}
    	return w
    }
    
    // makeTraceFrames returns the frames corresponding to pcs. It may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/scope.go

    		i++
    	}
    	sort.Strings(names)
    	return names
    }
    
    // NumChildren returns the number of scopes nested in s.
    func (s *Scope) NumChildren() int { return len(s.children) }
    
    // Child returns the i'th child scope for 0 <= i < NumChildren().
    func (s *Scope) Child(i int) *Scope { return s.children[i] }
    
    // Lookup returns the object in scope s with the given name if such an
    // object exists; otherwise the result is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/go/types/scope.go

    		i++
    	}
    	sort.Strings(names)
    	return names
    }
    
    // NumChildren returns the number of scopes nested in s.
    func (s *Scope) NumChildren() int { return len(s.children) }
    
    // Child returns the i'th child scope for 0 <= i < NumChildren().
    func (s *Scope) Child(i int) *Scope { return s.children[i] }
    
    // Lookup returns the object in scope s with the given name if such an
    // object exists; otherwise the result is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

        }
    
        /**
         * Makes the parent directory of the file, and any non existent parents.
         *
         * @param child The file to create the parent dir for
         * @return The parent dir file
         * @see #mkdirs(java.io.File)
         */
        public static File parentMkdirs(File child) {
            File parent = child.getParentFile();
            mkdirs(parent);
            return parent;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/os/exec/exec_test.go

    		cmd.Process.Kill()
    	}()
    
    	go func() {
    		defer wg.Done()
    		// Send the wrong string, so that the child fails even
    		// if the other goroutine doesn't manage to kill it first.
    		// This test is to check that the race detector does not
    		// falsely report an error, so it doesn't matter how the
    		// child process fails.
    		io.Copy(stdin, strings.NewReader("unexpected string"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

        }
    
        /**
         * Makes the parent directory of the file, and any non existent parents.
         *
         * @param child The file to create the parent dir for
         * @return The parent dir file
         * @see #mkdirs(java.io.File)
         */
        public static File parentMkdirs(File child) {
            File parent = child.getParentFile();
            mkdirs(parent);
            return parent;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/scope.cc

      }
      if (!impl()->single_use_scope()) {
        Scope child = NewSubScope(impl()->op_name_.empty() ? composite_op_name
                                                           : impl()->op_name_);
        const string child_op_sep = impl()->name_.empty() ? "" : kSuffixSeparator;
        const string child_name =
            strings::StrCat(impl()->name_, child_op_sep, child.impl()->name_);
        return {child,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/scope.h

    /// resources that are shared by all the child scopes that inherit from this
    /// scope, directly or transitively. For instance, a new scope creates a new
    /// Graph object to which operations are added when the new scope or its
    /// children are used by an Op constructor. The new scope also has a Status
    /// object which will be used to indicate errors by Op-constructor functions
    /// called on any child scope. The Op-constructor functions have to check the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                            sid.getRid(), jcifs.smb.SID.SID_FLAG_RESOLVE_SIDS);
                    for (final SID child : children) {
                        if (!sidSet.contains(child)) {
                            processAllowedSIDs(file, child, sidSet);
                        }
                    }
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/deadcode.go

    				// If a type is converted to an interface, it is possible to obtain an
    				// interface with a "child" type of it using reflection (e.g. obtain an
    				// interface of T from []chan T). We need to traverse its "child" types
    				// with UsedInIface attribute set.
    				// When visiting the child type (chan T in the example above), it will
    				// have UsedInIface set, so it in turn will mark and (re)visit its children
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top