Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for childrenOf (0.2 sec)

  1. cmd/data-usage-cache_gen.go

    		field, err = dc.ReadMapKeyPtr()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "ch":
    			err = z.Children.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "Children")
    				return
    			}
    		case "sz":
    			z.Size, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "Size")
    				return
    			}
    		case "os":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    `, t.Apps.External.All.Config().DefaultHostHeader),
    		children: []TrafficCall{},
    	}
    	expects := []struct {
    		port int
    		alpn string
    	}{
    		{8888, "http/1.1"},
    		{8882, "h2"},
    	}
    	for _, c := range t.Apps.A {
    		for _, e := range expects {
    			c := c
    			e := e
    
    			tc.children = append(tc.children, TrafficCall{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

                <p>You can control how child POMs inherit configuration from parent POMs by adding {@code combine.children}
                or {@code combine.self} attributes to the children of the configuration element:</p>
                <ul>
                <li>{@code combine.children}: available values are {@code merge} (default) and {@code append},</li>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector_test.go

    		// * should not be deleted (this is indistinguishable from referencing an unknown kind/version)
    		// * should repeatedly poll attemptToDelete
    		// * should not block deletion of legitimate children of missing deployment
    		{
    			name: "child -> non-existent owner with inaccessible API version (inaccessible parent apiVersion first)",
    			steps: []step{
    				// setup
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    java.util.Map, java.util.LinkedList); static void <clinit>(); } org/codehaus/plexus/util/dag/Vertex.class package org.codehaus.plexus.util.dag; public synchronized class Vertex implements Cloneable, java.io.Serializable { private String label; java.util.List children; java.util.List parents; public void Vertex(String); public String getLabel(); public void addEdgeTo(Vertex); public void removeEdgeTo(Vertex); public void addEdgeFrom(Vertex); public void removeEdgeFrom(Vertex); public java.util.List getChildren();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    type AST interface {
    	// Internal method to convert to demangled string.
    	print(*printState)
    
    	// Traverse each element of an AST.  If the function returns
    	// false, traversal of children of that element is skipped.
    	Traverse(func(AST) bool)
    
    	// Copy an AST with possible transformations.
    	// If the skip function returns true, no copy is required.
    	// If the copy function returns nil, no copy is required.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return %0 : tensor<?xi32>
      }
    }
    
    // -----
    
    // Tests case of `tf_device.cluster_func` on TPU with replication, model
    // parallelism and parallel_execute with 2 parallel_execute children after the
    // cluster.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          object_names_[node_id].push_back(absl::StrJoin(path_segments_, "."));
          break;
        }
        default:
          break;
      }
    
      for (const auto& child_ref : object.children()) {
        bool on_stack = !on_stack_nodes_.insert(child_ref.node_id()).second;
        if (on_stack) {
          // This is a backedge. Don't traverse it.
          continue;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top