Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 795 for Traverse (0.15 sec)

  1. cmd/admin-heal-ops.go

    		}
    		h.mutex.Unlock()
    	case <-h.ctx.Done():
    		h.mutex.Lock()
    		h.endTime = UTCNow()
    		h.currentStatus.Summary = healFinishedStatus
    		h.mutex.Unlock()
    
    		// drain traverse channel so the traversal
    		// go-routine does not leak.
    		go func() {
    			// Eventually the traversal go-routine closes
    			// the channel and returns, so this go-routine
    			// itself will not leak.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // are of the allowed values defined for the Unicode locale extension ('u') in
    // https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.
    // TypeForKey will traverse the inheritance chain to get the correct value.
    //
    // If there are multiple types associated with a key, only the first will be
    // returned. If there is no type associated with a key, it returns the empty
    // string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * Returns an iterator over the elements in this queue in proper sequence. The returned {@code
       * Iterator} is a "weakly consistent" iterator that will never throw {@link
       * ConcurrentModificationException}, and guarantees to traverse elements as they existed upon
       * construction of the iterator, and may (but is not guaranteed to) reflect any modifications
       * subsequent to construction.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. 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)
  5. pkg/volume/util/subpath/subpath_linux.go

    	"k8s.io/mount-utils"
    )
    
    const (
    	// place for subpath mounts
    	// TODO: pass in directory using kubelet_getters instead
    	containerSubPathDirectoryName = "volume-subpaths"
    	// syscall.Openat flags used to traverse directories not following symlinks
    	nofollowFlags = unix.O_RDONLY | unix.O_NOFOLLOW
    	// flags for getting file descriptor without following the symlink
    	openFDFlags = unix.O_NOFOLLOW | unix.O_PATH
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/language.go

    // are of the allowed values defined for the Unicode locale extension ('u') in
    // https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.
    // TypeForKey will traverse the inheritance chain to get the correct value.
    //
    // If there are multiple types associated with a key, only the first will be
    // returned. If there is no type associated with a key, it returns the empty
    // string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate.go

    		}
    	}
    	return yaml.Marshal(iopt)
    }
    
    // setYAMLNodeByMapPath sets the value at the given path to val in treeNode. The path cannot traverse lists and
    // treeNode must be a YAML tree unmarshaled into a plain map data structure.
    func setYAMLNodeByMapPath(treeNode any, path util.Path, val any) {
    	if len(path) == 0 || treeNode == nil {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    										// opt.Check = check.NotOK()
    										opt.Check = tcpValidator
    									}
    
    									// Only marked to use service waypoint. We'll deny since it's not traversed.
    									// Not traversed, since traffic is to-workload IP.
    									if dst.Config().HasServiceAddressedWaypointProxy() && !dst.Config().HasWorkloadAddressedWaypointProxy() {
    										// TODO currently leads to no L7 processing, in the future it might be denied
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top