Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for isbn13 (0.21 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/formats.go

    	"isbn",         // an ISBN10 or ISBN13 number string like "0321751043" or "978-0321751041"
    	"isbn10",       // an ISBN10 number string like "0321751043"
    	"isbn13",       // an ISBN13 number string like "978-0321751041"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 09:26:38 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  2. samples/bookinfo/src/details/details.rb

        isbn10 = get_isbn(book, 'ISBN_10')
        isbn13 = get_isbn(book, 'ISBN_13')
    
        return {
            'id' => id,
            'author': book['authors'][0],
            'year': book['publishedDate'],
            'type' => type,
            'pages' => book['pageCount'],
            'publisher' => book['publisher'],
            'language' => language,
            'ISBN-10' => isbn10,
            'ISBN-13' => isbn13
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/testdata/tsan13.go

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/cast_bf16_ops_to_f32.cc

          return failure();
        }
        for (Value input : op->getOperands()) {
          if (getElementTypeOrSelf(input).isBF16()) {
            return success();
          }
        }
        for (Value value : op->getResults()) {
          if (getElementTypeOrSelf(value).isBF16()) {
            return success();
          }
        }
        return failure();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testsanitizers/tsan_test.go

    		{src: "tsan7.go", needsRuntime: true},
    		{src: "tsan8.go"},
    		{src: "tsan9.go"},
    		{src: "tsan10.go", needsRuntime: true},
    		{src: "tsan11.go", needsRuntime: true},
    		{src: "tsan12.go", needsRuntime: true},
    		{src: "tsan13.go", needsRuntime: true},
    		{src: "tsan14.go", needsRuntime: true},
    		{src: "tsan15.go", needsRuntime: true},
    	}
    	for _, tc := range cases {
    		tc := tc
    		name := strings.TrimSuffix(tc.src, ".go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 21:14:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. samples/bookinfo/swagger.yaml

            description: "Language of the book"
          author:
            type: "string"
            description: "Author of the book"
          ISBN-10:
            type: "string"
            description: "ISBN-10 of the book"
          ISBN-13:
            type: "string"
            description: "ISBN-13 of the book"
          year:
            type: "integer"
            format: "int32"
            description: "Year the book was first published in"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 6.2K bytes
    - Viewed (0)
  7. src/compress/flate/example_test.go

    <book>
    	<meta name="title" content="The Go Programming Language"/>
    	<meta name="authors" content="Alan Donovan and Brian Kernighan"/>
    	<meta name="published" content="2015-10-26"/>
    	<meta name="isbn" content="978-0134190440"/>
    	<data>...</data>
    </book>
    `
    
    	var b bytes.Buffer
    
    	// Compress the data using the specially crafted dictionary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 12 18:42:35 UTC 2016
    - 6.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/constant_utils.cc

        auto floatAttr = mlir::FloatAttr::get(floatType, static_cast<float>(value));
        std::vector<Attribute> floatValues({floatAttr});
        return DenseElementsAttr::get(shaped_type, floatValues);
      } else if (element_type.isBF16()) {
        auto floatType = mlir::FloatType::getBF16(element_type.getContext());
        auto floatAttr = mlir::FloatAttr::get(floatType, static_cast<float>(value));
        std::vector<Attribute> floatValues({floatAttr});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/validators.h

    inline bool TFTypeIsBFloat16Tensor(Value value) {
      auto tensorType = mlir::dyn_cast<TensorType>(value.getType());
      if (!tensorType) return false;
      return tensorType.getElementType().isBF16();
    }
    
    // Returns true iff the given value is a f16 tensor.
    inline bool TFTypeIsHalfTensor(Value value) {
      auto tensorType = mlir::dyn_cast<TensorType>(value.getType());
      if (!tensorType) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_op_quant_spec.cc

      auto type = mlir::dyn_cast<ShapedType>(val.getType());
      if (!type) return false;
      // Supported original tensor data types.
      if (type.getElementType().isF32() || type.getElementType().isBF16())
        return true;
      return false;
    }
    
    std::optional<tensorflow::quantization::QuantizationComponentSpec>
    GetWeightComponentSpec(
        const tensorflow::quantization::QuantizationOptions& quantization_options) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top