Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 567 for Kids (1.08 sec)

  1. src/encoding/json/testdata/code.json.gz

    code.json {"tree":{"name":"/","kids":[{"name":"go","kids":[{"name":"src","kids":[{"name":"pkg","kids":[{"name":"exp","kids":[{"name":"ssh","kids":[{"name":"Makefile","kids":[],"cl_weight":0.1,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444},{"name":"channel.go","kids":[],"cl_weight":0.1,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444},{"name":"common.go","kids":[],"cl_weight":0.1,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444}...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

            } else {
                entry = vertex;
            }
    
            MetadataTreeNode[] kids = node.getChildren();
            if (kids == null || kids.length < 1) {
                return;
            }
    
            for (int i = 0; i < kids.length; i++) {
                MetadataTreeNode n = kids[i];
                processTreeNodes(vertex, n, depth + 1, i);
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 05 18:41:13 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/dwtest/dwtest.go

    type Examiner struct {
    	dies        []*dwarf.Entry
    	idxByOffset map[dwarf.Offset]int
    	kids        map[int][]int
    	parent      map[int]int
    	byname      map[string][]int
    }
    
    // Populate the Examiner using the DIEs read from rdr.
    func (ex *Examiner) Populate(rdr *dwarf.Reader) error {
    	ex.idxByOffset = make(map[dwarf.Offset]int)
    	ex.kids = make(map[int][]int)
    	ex.parent = make(map[int]int)
    	ex.byname = make(map[string][]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. internal/config/identity/openid/jwks_test.go

    		t.Fatalf("Expected 3 keys, got %d", len(jk.Keys))
    	}
    
    	var kids []string
    	for ii, jks := range jk.Keys {
    		_, err := jks.DecodePublicKey()
    		if err != nil {
    			t.Fatalf("Failed to decode key %d: %v", ii, err)
    		}
    		kids = append(kids, jks.Kid)
    	}
    	if len(kids) != 3 {
    		t.Fatalf("Failed to find the expected number of kids: 3, got %d", len(kids))
    	}
    }
    
    // A.1 - Example public keys
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

                } else {
                    final List<PDNameTreeNode<PDComplexFileSpecification>> kids = efTree.getKids();
                    if (kids == null) {
                        return;
                    }
                    for (final PDNameTreeNode<PDComplexFileSpecification> node : kids) {
                        processEmbeddedDocNames(node.getNames(), writer);
                    }
                }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/cmd/internal/dwarf/dwarf.go

    func inlChildren(slot int, calls *InlCalls) []int {
    	var kids []int
    	if slot != -1 {
    		for _, k := range calls.Calls[slot].Children {
    			if !isEmptyInlinedCall(k, calls) {
    				kids = append(kids, k)
    			}
    		}
    	} else {
    		for k := 0; k < len(calls.Calls); k += 1 {
    			if calls.Calls[k].Root && !isEmptyInlinedCall(k, calls) {
    				kids = append(kids, k)
    			}
    		}
    	}
    	return kids
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  7. src/encoding/json/bench_test.go

    	"sync"
    	"testing"
    )
    
    type codeResponse struct {
    	Tree     *codeNode `json:"tree"`
    	Username string    `json:"username"`
    }
    
    type codeNode struct {
    	Name     string      `json:"name"`
    	Kids     []*codeNode `json:"kids"`
    	CLWeight float64     `json:"cl_weight"`
    	Touches  int         `json:"touches"`
    	MinT     int64       `json:"min_t"`
    	MaxT     int64       `json:"max_t"`
    	MeanT    int64       `json:"mean_t"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	// then re-insert after sorting so we can reuse tmp for future sort calls.
    	*tmp = (*tmp)[:0]
    	for n.kids != nil {
    		*tmp = append(*tmp, n.kids)
    		n.kids.setParent(nil)
    	}
    	sort.Sort(http2sortPriorityNodeSiblings(*tmp))
    	for i := len(*tmp) - 1; i >= 0; i-- {
    		(*tmp)[i].setParent(n) // setParent inserts at the head of n.kids
    	}
    	for k := n.kids; k != nil; k = k.next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/dwarfgen/dwinl.go

    	c, m := rangesContainsAll(parentRanges, calleeRanges)
    	if !c {
    		base.Fatalf("** malformed inlined routine range in %s: caller %s callee %s II=%d %s\n", funcName, caller, callee, idx, m)
    	}
    
    	// Now visit kids
    	for _, k := range ic.Children {
    		checkInlCall(funcName, inlCalls, funcSize, k, idx)
    	}
    }
    
    // unifyCallRanges ensures that the ranges for a given inline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        this(capacity, fair);
        if (capacity < c.size()) throw new IllegalArgumentException();
    
        for (E e : c) add(e);
      }
    
      @SuppressWarnings("unchecked") // please don't try this home, kids
      private static <E> E[] newEArray(int capacity) {
        return (E[]) new Object[capacity];
      }
    
      /**
       * Inserts the specified element at the tail of this queue if it is possible to do so immediately
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
Back to top