Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 795 for Traverse (0.23 sec)

  1. pkg/workloadapi/workload.proto

      // All incoming requests must go through the waypoint.
      GatewayAddress waypoint = 8;
    
      // If present, East West network gateway this workload can be reached through.
      // Requests from remote networks should traverse this gateway.
      GatewayAddress network_gateway = 19;
    
      // Name of the node the workload runs on
      string node = 9;
    
      // CanonicalName for the workload. Used for telemetry.
      string canonical_name = 10;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

        bool strict_clusters) {
      OpSetVector cluster_predecessor_ops;
      OpSetVector cluster_successor_ops;
    
      // Collect non-cluster ops that have a dependency to the cluster. For this
      // traverse all ops from last to first cluster op and keep track of in-between
      // non-cluster ops that have some outgoing (transitive) dependency to some
      // cluster op (`cluster_predecessor_ops`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stdlib_test.go

    	pkgFiles, err := pkgFilenames(dir, false)
    	if err != nil {
    		w.errh(err)
    		return
    	}
    	if pkgFiles != nil {
    		w.pkgh(dir, pkgFiles)
    	}
    
    	// traverse subdirectories, but don't walk into testdata
    	for _, f := range files {
    		if f.IsDir() && f.Name() != "testdata" {
    			w.walk(filepath.Join(dir, f.Name()))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/go/types/stdlib_test.go

    	pkgFiles, err := pkgFilenames(dir, false)
    	if err != nil {
    		w.errh(err)
    		return
    	}
    	if pkgFiles != nil {
    		w.pkgh(dir, pkgFiles)
    	}
    
    	// traverse subdirectories, but don't walk into testdata
    	for _, f := range files {
    		if f.IsDir() && f.Name() != "testdata" {
    			w.walk(filepath.Join(dir, f.Name()))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema.fbs

    //
    // To encode a conceptual n-dimensional dense tensor with dims (d0, ..., dn-1),
    // potentially with a k-dimensional block (0 <= k <= n) with dims
    // (dn, ..., dn+k-1), the format needs to specify:
    //   1. In what order to traverse these dimensions. For example, to store a 2-D
    //      matrix in row major order, the traversal order would be (d0, d1),
    //      whereas to store it in column major order, the traversal order would be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    		return nil, found, err
    	}
    	return runtime.DeepCopyJSONValue(val), true, nil
    }
    
    // NestedFieldNoCopy returns a reference to a nested field.
    // Returns false if value is not found and an error if unable
    // to traverse obj.
    //
    // Note: fields passed to this function are treated as keys within the passed
    // object; no array/slice syntax is supported.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    provides a control-flow graph for each function in the package (see
    golang.org/x/tools/go/cfg); the "inspect" analyzer returns a value that
    enables other Analyzers to traverse the syntax trees of the package more
    efficiently; and the "buildssa" analyzer constructs an SSA-form
    intermediate representation.
    Each of these Analyzers extends the capabilities of later Analyzers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. operator/README.md

    levels representing a child dependency, use the following command:
    
    ```bash
    istioctl manifest generate -o istio_manifests
    ```
    
    Use depth first search to traverse the created directory hierarchy when applying your YAML files. This is needed for
    correct sequencing of dependencies. Child manifest directories must wait for their parent directory to be fully applied,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. 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)
  10. android/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
    - 24K bytes
    - Viewed (0)
Back to top