Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for Traverser (0.15 sec)

  1. guava/src/com/google/common/collect/CompactHashSet.java

     * add(x)} operations <i>do not</i> create objects for the garbage collector to deal with, and for
     * every element added, the garbage collector will have to traverse {@code 1.5} references on
     * average, in the marking phase, not {@code 5.0} as in {@code java.util.HashSet}.
     *
     * <p>If there are no removals, then {@link #iterator iteration} order is the same as insertion
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      // However, we still want to track this op as it may have side effects visible
      // to ops outside the function.
      if (!side_effects_by_resource_id.empty()) control_predecessors_[op];
    
      // Traverse all resource IDs and their associated side effects.
      bool had_unknown_resource_read = false;
      for (const auto& [resource_id, side_effects] : side_effects_by_resource_id) {
        const bool read_only = side_effects.IsReadOnly();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    // parent which was correlatable. The parent is stored so that we can check at
    // the point an error is thrown whether it should be ratcheted using simple
    // logic
    // Key and Index should be used as normally to traverse to the next node.
    type ratchetingOptions struct {
    	// Current correlation object. If nil, then this node is from an uncorrelatable
    	// part of the schema
    	currentCorrelation *common.CorrelatedObject
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactHashMap.java

          int oldNext = CompactHashing.tableGet(oldTable, oldTableIndex);
          // Each element of `oldTable` is the head of a (possibly empty) linked list of elements in
          // `entries`. The `oldNext` loop is going to traverse that linked list.
          // We need to rewrite the `next` link of each of the elements so that it is in the appropriate
          // linked list starting from `newTable`. In general, each element from the old linked list
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // This handles the forward referencing template parameters found in
    // cast operators.
    func (st *state) setTemplate(a AST, tmpl *Template) {
    	seen := make(map[AST]bool)
    	a.Traverse(func(a AST) bool {
    		switch a := a.(type) {
    		case *TemplateParam:
    			if a.Template != nil {
    				if tmpl != nil {
    					st.fail("duplicate template parameters")
    				}
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashMap.java

          int oldNext = CompactHashing.tableGet(oldTable, oldTableIndex);
          // Each element of `oldTable` is the head of a (possibly empty) linked list of elements in
          // `entries`. The `oldNext` loop is going to traverse that linked list.
          // We need to rewrite the `next` link of each of the elements so that it is in the appropriate
          // linked list starting from `newTable`. In general, each element from the old linked list
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  7. src/encoding/json/encode.go

    	"fmt"
    	"math"
    	"reflect"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    	_ "unsafe" // for linkname
    )
    
    // Marshal returns the JSON encoding of v.
    //
    // Marshal traverses the value v recursively.
    // If an encountered value implements [Marshaler]
    // and is not a nil pointer, Marshal calls [Marshaler.MarshalJSON]
    // to produce JSON. If no [Marshaler.MarshalJSON] method is present but the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    		if _, f := unnamespacedRawAlias[referencedService]; !f {
    			// Common case: alias pointing to a concrete service
    			resolvedAliases[alias] = referencedService
    			continue
    		}
    		// Otherwise, we need to traverse the alias "graph".
    		// In an obscure edge case, a user could make a loop, so we will need to handle that.
    		seen := sets.New(alias.Hostname, referencedService)
    		for {
    			n, f := unnamespacedRawAlias[referencedService]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    typically when the value is assigned to a variable, or is used otherwise.
    The updateExprType method is used to record this final type and update
    the recorded types: the type-checked expression tree is again traversed down,
    and the new type is propagated as needed. Untyped constant expression values
    that become fully typed must now be representable by the full type (constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    		"-A", string(kubePostroutingChain),
    		"-m", "mark", "!", "--mark", fmt.Sprintf("%s/%s", proxier.masqueradeMark, proxier.masqueradeMark),
    		"-j", "RETURN",
    	)
    	// Clear the mark to avoid re-masquerading if the packet re-traverses the network stack.
    	proxier.natRules.Write(
    		"-A", string(kubePostroutingChain),
    		"-j", "MARK", "--xor-mark", proxier.masqueradeMark,
    	)
    	masqRule := []string{
    		"-A", string(kubePostroutingChain),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top