Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for nodePath (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    	if params := list.Type().Parameters(); len(params) > 0 {
    		lt := params[0]
    		nodePath := list.Path()
    		if nodePath != nil {
    			// Provide path if we have it so that a OpenAPIv3 maxLength validation can be looked up, if it exists
    			// for this node.
    			path := make([]string, len(nodePath)+1)
    			copy(path, nodePath)
    			path[len(nodePath)] = "@items"
    			return &itemsNode{path: path, t: lt, expr: nil}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      auto xla_compile = NodeWith(Op("_XlaCompile"), Attr("must_compile", false));
      auto predicated_compilation_key =
          NodeWith(Op("Switch"), Inputs(Out(0, xla_compile), Out(1, xla_compile)));
      auto xla_run =
          NodeWith(Op("_XlaRun"), Inputs(Out(1, predicated_compilation_key)));
      auto tf_call =
          NodeWith(Op("StatefulPartitionedCall"),
                   CtrlDeps(NodeWith(Op("Identity"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      const int64_t one_64 = 1;
    
      auto m_input = Out(NodeWith(Op("Placeholder"), Name("input")));
      auto m_begin_s64 = Out(NodeWith(
          Op("Cast"), Inputs(Out(NodeWith(Op("Placeholder"), Name("begin"))))));
      auto m_input_shape = Out(NodeWith(Op("Shape"), Inputs(m_input)));
      auto m_slice_size_0 = Out(NodeWith(
          Op("Sub"), AssignedDevice(kHostName),
          Inputs(
              Out(NodeWith(Op("Slice"), AssignedDevice(kHostName),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/node.go

    // DryRun returns the dryRun flag.
    func (d *nodeData) DryRun() bool {
    	return d.dryRun
    }
    
    // EtcdUpgrade returns the etcdUpgrade flag.
    func (d *nodeData) EtcdUpgrade() bool {
    	return d.etcdUpgrade
    }
    
    // RenewCerts returns the renewCerts flag.
    func (d *nodeData) RenewCerts() bool {
    	return d.renewCerts
    }
    
    // Cfg returns upgradeConfiguration.
    func (d *nodeData) Cfg() *kubeadmapi.UpgradeConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    		if err != nil {
    			return Hash{}, Hash{}, err
    		}
    		return oh, NodeHash(th, p[len(p)-1]), nil
    	} else {
    		oh, th, err := runTreeProof(p[:len(p)-1], lo+k, hi, n, old)
    		if err != nil {
    			return Hash{}, Hash{}, err
    		}
    		return NodeHash(p[len(p)-1], oh), NodeHash(p[len(p)-1], th), nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/fromLanguageTree/LanguageTreeToDom.kt

    import org.gradle.internal.declarativedsl.dom.UnsupportedSyntax
    import org.gradle.internal.declarativedsl.dom.UnsupportedSyntaxCause
    import org.gradle.internal.declarativedsl.dom.data.NodeData
    import org.gradle.internal.declarativedsl.dom.data.ValueData
    import org.gradle.internal.declarativedsl.language.Assignment
    import org.gradle.internal.declarativedsl.language.Block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/text/template/parse/node.go

    	NodeRange                      // A range action.
    	NodeString                     // A string constant.
    	NodeTemplate                   // A template invocation action.
    	NodeVariable                   // A $ variable.
    	NodeWith                       // A with action.
    	NodeComment                    // A comment.
    	NodeBreak                      // A break action.
    	NodeContinue                   // A continue action.
    )
    
    // Nodes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/node_matchers.cc

        if (src_oidx_) {
          *os << ")";
        }
      }
    
     private:
      ::testing::Matcher<const Node*> src_matcher_;
      int src_oidx_;
    };
    }  // namespace
    
    ::testing::Matcher<const Node*> impl::NodeWith(
        absl::Span<const NodeMatcherProperties> props) {
      NodeMatcher* matcher = new NodeMatcher();
      for (const NodeMatcherProperties& prop : props) {
        if (prop.name()) {
          DCHECK(!matcher->name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    func tileHash(data []byte) Hash {
    	if len(data) == 0 {
    		panic("bad math in tileHash")
    	}
    	if len(data) == HashSize {
    		var h Hash
    		copy(h[:], data)
    		return h
    	}
    	n := len(data) / 2
    	return NodeHash(tileHash(data[:n]), tileHash(data[n:]))
    }
    
    // NewTiles returns the coordinates of the tiles of height h ≥ 1
    // that must be published when publishing from a tree of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/io/multi_test.go

    	})
    	withFooBar(func() {
    		expectRead(5, "foo ", nil)
    	})
    }
    
    func TestMultiReaderAsWriterTo(t *testing.T) {
    	mr := MultiReader(
    		strings.NewReader("foo "),
    		MultiReader( // Tickle the buffer reusing codepath
    			strings.NewReader(""),
    			strings.NewReader("bar"),
    		),
    	)
    	mrAsWriterTo, ok := mr.(WriterTo)
    	if !ok {
    		t.Fatalf("expected cast to WriterTo to succeed")
    	}
    	sink := &strings.Builder{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
Back to top