Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 161 for representing (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor_test.cc

    }
    
    bool IsSplat(mlir::ElementsAttr attr) {
      return mlir::cast<mlir::DenseElementsAttr>(attr).isSplat();
    }
    
    TEST(ConvertTensorProtoTest, SplatTensor) {
      // We construct a sparse TensorProto representing 2^35 float elements, all of
      // them 42. Our conversion routine should not materialize these elements when
      // creating the Attribute. If it tries to, we'll crash OOM here.
      TensorProto tensor;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/language.go

    }
    
    // IsPrivateUse reports whether this language code is reserved for private use.
    func (b Base) IsPrivateUse() bool {
    	return b.langID.IsPrivateUse()
    }
    
    // Script is a 4-letter ISO 15924 code for representing scripts.
    // It is idiomatically represented in title case.
    type Script struct {
    	scriptID language.Script
    }
    
    // ParseScript parses a 4-letter ISO 15924 code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

         *
         * @param stateChain The transform chain from the search state to apply to the root transformed variant.
         * @param root The root variant to apply the chain to.
         *
         * @return A variant chain representing the final transformed variant.
         */
        private VariantDefinition createVariantChain(final ChainNode stateChain, DefaultVariantDefinition root) {
            ChainNode node = stateChain;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec_test.cc

    TEST_F(GetStableHloOpQuantSpecTest,
           EmptyCoeffOpQuantDimForPerTensorQuantizedConvolution) {
      // A `TF::XlaCallModuleOp` with `_quantization_method = "static_range_ptq
      // {}"`, representing a per-tensor static-range PTQ quantization.
      constexpr absl::string_view
          kXlaCallModuleOpWithPerTensorQuantizedConvolution = R"mlir(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    // labelsToString returns a string representation of a
    // map representing labels.
    func labelsToString(labels map[string][]string) string {
    	ls := []string{}
    	for k, v := range labels {
    		ls = append(ls, fmt.Sprintf("%s:%v", k, v))
    	}
    	sort.Strings(ls)
    	return strings.Join(ls, " ")
    }
    
    // numLabelsToString returns a string representation of a map
    // representing numeric labels.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/go/token/position.go

    // The difference between a Pos value and the corresponding file base
    // corresponds to the byte offset of that position (represented by the Pos value)
    // from the beginning of the file. Thus, the file base offset is the Pos value
    // representing the first byte in the file.
    //
    // To create the Pos value for a specific source offset (measured in bytes),
    // first add the respective file to the current file set using [FileSet.AddFile]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    As a consequence, up-to-date checking and caching won't work.
    
    To fix this problem, you need to annotate the property with the appropriate annotation, for example `@InputDirectory` for a property representing an input directory, or `@OutputDirectory` for a property representing an output directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
      if (::testing::internal::AlwaysTrue()) { \
         GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
      } else \
        ::testing::Message()
    
    // A class representing the parsed contents of the
    // --gtest_internal_run_death_test flag, as it existed when
    // RUN_ALL_TESTS was called.
    class InternalRunDeathTestFlag {
     public:
      InternalRunDeathTestFlag(const std::string& a_file,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. cmd/bucket-replication-utils.go

    	for _, k := range d.targetsMap {
    		if k.Replicate {
    			fmt.Fprintf(b, "%s=%s;", k.Arn, replication.Pending.String())
    		}
    	}
    	return b.String()
    }
    
    // ResyncDecision is a struct representing a map with target's individual resync decisions
    type ResyncDecision struct {
    	targets map[string]ResyncTargetDecision
    }
    
    // Empty returns true if no targets with resync decision present
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. internal/s3select/sql/parser.go

    	// Remove enclosing quotes
    	n := len(values[0])
    	r := values[0][1 : n-1]
    
    	// Translate doubled quotes
    	*qi = QuotedIdentifier(strings.ReplaceAll(r, `""`, `"`))
    	return nil
    }
    
    // Types representing AST of SQL statement. Only SELECT is supported.
    
    // Select is the top level AST node type
    type Select struct {
    	Expression *SelectExpression `parser:"\"SELECT\" @@"`
    	From       *TableExpression  `parser:"\"FROM\" @@"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top