Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for greatest (0.27 sec)

  1. pkg/config/validation/validation.go

    			}
    		}
    		if duplicateMatches == len(route.Match) {
    			reportUnreachable(routeName(route, rulen), "all matches used by prior rules")
    		}
    	}
    }
    
    // asJSON() creates a JSON serialization of a match, to use for match comparison.  We don't use the JSON itself.
    func asJSON(data any) string {
    	// Remove the name, so we can create a serialization that only includes traffic routing config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // op's type is deduced from `value`; if `value` is of scalar type,
    // wraps it up with a tensor type of empty shape.
    // TODO(jpienaar): This one differs from the autogenerated one as it takes an
    // attribute but always creates an ElementsAttr internally.
    void ConstOp::build(OpBuilder& builder, OperationState& result,
                        Attribute value) {
      ShapedType type;
      if (auto elem_attr = mlir::dyn_cast<ElementsAttr>(value)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        rhs_flattend = rewriter.create<mhlo::DynamicReshapeOp>(
            loc,
            RankedTensorType::get(rhs_flattened_shape, rhs_type.getElementType()),
            rhs_transposed, rhs_flattend_shape_op);
      }
    
      // Creates matmul op of `lhs_flattend` and `rhs_flattend`.
      llvm::SmallVector<int64_t, 4> matmul_shape =
          Concat<int64_t>(lhs_dot_dimensions_info.batch_dimensions().SizesArray(),
                          llvm::ArrayRef<int64_t>{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go

    } // Size: 56 bytes
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *bidiTrie) lookup(s []byte) (v uint8, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return bidiValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 110.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// C++ declaration syntax.
    	inner []AST
    
    	// The printing field is a list of items we are currently
    	// printing.  This avoids endless recursion if a substitution
    	// reference creates a cycle in the graph.
    	printing []AST
    }
    
    // writeByte adds a byte to the string being printed.
    func (ps *printState) writeByte(b byte) {
    	ps.last = b
    	ps.buf.WriteByte(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	// seed the random number generator once.
    	rand.Seed(3)
    	// generate a random number between 13 and 200.
    	randInt := getRandomRange(13, 200, -1)
    	// write into buffer till length of the buffer is greater than the generated random number.
    	for i := 0; i <= randInt; i += 10 {
    		buffer.WriteString(data)
    	}
    	// String content which is used for put object range test.
    	putBytes := buffer.Bytes()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          shape_ty_zero_dim = true;
        } else if (size > 0) {
          shape_ty_size *= size;
        } else {
          return error_handler(
              llvm::formatv("requires 'shape' to have dimensions greater than -1, "
                            "but got {0} at index {1}",
                            size, dim.index()));
        }
        output_ty_shape.push_back(size);
      }
    
      if (!tensor_ty.hasStaticShape()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/tables13.0.0.go

    	"խ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return caseValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 100.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: return %[[NE]]
    }
    
    // CHECK-LABEL: testLogicalNotOfGreater
    func.func @testLogicalNotOfGreater(%arg0: tensor<8x16xf32>, %arg1: tensor<8x16xf32>) -> tensor<8x16xi1> {
      %0 = "tf.Greater"(%arg0, %arg1) : (tensor<8x16xf32>, tensor<8x16xf32>) -> tensor<8x16xi1>
      %1 = "tf.LogicalNot"(%0) {device = "/job:localhost/replica:0/task:0/device:GPU:0"} : (tensor<8x16xi1>) -> tensor<8x16xi1>
      func.return %1: tensor<8x16xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/tables12.0.0.go

    	"խ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return caseValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 99.2K bytes
    - Viewed (0)
Back to top