Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for _nodes (0.14 sec)

  1. pkg/kubelet/kubelet_pods.go

    				if utilnet.IPFamilyOfString(s.HostIP) != utilnet.IPFamilyOf(hostIPs[0]) {
    					kl.recorder.Eventf(pod, v1.EventTypeWarning, "HostIPsIPFamilyMismatch",
    						"Kubelet detected an IPv%s node IP (%s), but the cloud provider selected an IPv%s node IP (%s); pass an explicit `--node-ip` to kubelet to fix this.",
    						utilnet.IPFamilyOfString(s.HostIP), s.HostIP, utilnet.IPFamilyOf(hostIPs[0]), hostIPs[0].String())
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        Region* region, int64_t max_iterations) {
      bool changed = true;
    
      // TODO(aminim): we could have a more efficient traversal by guiding the
      // traversal with a worklist and reconsider only the nodes for which an
      // operand type was inferred. This would need to be careful if working on a
      // region that would not be isolated.
      for (int iteration = 0; iteration < max_iterations && changed; ++iteration) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/side_effect_analysis_util.h"
    
    namespace mlir {
    namespace TF {
    
    namespace {
    // Returns the equivalent Value skipping through identity nodes.
    Value LookThroughIdentity(Value result) {
      while (isa_and_nonnull<IdentityOp, IdentityNOp>(result.getDefiningOp())) {
        auto op_result = result.cast<OpResult>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	precRel
    	precEqual
    	precAnd
    	precXor
    	precOr
    	precLogicalAnd
    	precLogicalOr
    	precCond
    	precAssign
    	precComma
    	precDefault
    )
    
    // hasPrec matches the AST nodes that have a prec method that returns
    // the node's precedence.
    type hasPrec interface {
    	prec() precedence
    }
    
    // Name is an unqualified name.
    type Name struct {
    	Name string
    }
    
    func (n *Name) print(ps *printState) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "BSRL", argLength: 1, reg: gp11, asm: "BSRL", typ: "UInt32", clobberFlags: true}, // # of high-order zeroes in 32-bit arg
    
    		// CMOV instructions: 64, 32 and 16-bit sizes.
    		// if arg2 encodes a true result, return arg1, else arg0
    		{name: "CMOVQEQ", argLength: 3, reg: gp21, asm: "CMOVQEQ", resultInArg0: true},
    		{name: "CMOVQNE", argLength: 3, reg: gp21, asm: "CMOVQNE", resultInArg0: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			warnings: []string{
    				`root.atomicArray[0].bar: Invalid value: "string": gotta be baz`,
    			},
    		},
    		{
    			name: "we can't ratchet a normal CEL expression from an uncorrelatable part of the schema whose parent nodes has changed",
    			schema: mustSchema(`
    				type: array
    				x-kubernetes-list-type: atomic
    				items:
    					type: object
    					properties:
    						bar:
    							type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // dependencies is returned as a vector of its edges, with node indices into
      // *block.
      std::vector<std::pair<int, int>> ExtractControlEdges(mlir::Block* block);
    
      // Builds Metadata with the given `name` and buffer `content`.
      BufferOffset<tflite::Metadata> BuildMetadata(StringRef name,
                                                   StringRef content);
    
      // Encodes the `tfl.metadata` dictionary attribute of the module to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // are perfectly forwarded to the yield.
      if (getOperation()->getAttrs().empty() && WrapsSinglePerfectlyForwardedOp()) {
        Operation& controlled_op = GetBody().front();
        // The "controls" syntax only encodes a single location.
        YieldOp yield_op = GetYield();
        // In order to correctly round-trip, we can only use this syntax when all
        // the locations are identical.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top