Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for argLen (0.15 sec)

  1. src/cmd/go/internal/envcmd/env.go

    		case "CGO_CXXFLAGS", "CGO_CFLAGS", "CGO_FFLAGS", "GGO_LDFLAGS":
    			ev.Changed = ev.Value != work.DefaultCFlags
    		}
    	}
    
    	return ret
    }
    
    // argKey returns the KEY part of the arg KEY=VAL, or else arg itself.
    func argKey(arg string) string {
    	i := strings.Index(arg, "=")
    	if i < 0 {
    		return arg
    	}
    	return arg[:i]
    }
    
    func runEnv(ctx context.Context, cmd *base.Command, args []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen_util.cc

    }
    
    string AvoidCPPKeywords(StringPiece name) {
      if (IsCPPKeyword(name)) {
        return strings::StrCat(name, "_");
      }
      return string(name);
    }
    
    void InferArgAttributes(const OpDef::ArgDef& arg,
                            std::unordered_map<string, string>* inferred_attrs) {
      if (!arg.type_attr().empty()) {
        gtl::InsertIfNotPresent(inferred_attrs, arg.type_attr(), arg.name());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        const auto set_segment_sizes_attr =
            [&](const tensorflow::NameRangeMap& arg_ranges,
                const tensorflow::protobuf::RepeatedPtrField<
                    tensorflow::OpDef::ArgDef>& args,
                llvm::StringRef attr_name) {
              std::vector<int32_t> values;
              values.reserve(args.size());
              for (const auto& arg : args) {
                auto range = arg_ranges.at(arg.name());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. docs/tr/docs/alternatives.md

    Öyle ya da böyle zıt uçlarda olmalarına rağmen birbirlerini tamamlıyorlar.
    
    Requests oldukça basit ve sezgisel bir tasarıma sahip, kullanması da mantıklı varsayılan değerlerle oldukça kolay. Ama aynı zamanda çok güçlü ve gayet özelleştirilebilir.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function_test.cc

        const OpDef& signature = fdef.signature();
        ASSERT_EQ(inputs.size(), signature.input_arg_size());
        for (int i = 0; i < inputs.size(); ++i) {
          const OpDef::ArgDef& arg = signature.input_arg(i);
          const IOSpec& in = inputs[i];
          if (in.second != DT_INVALID) {
            ASSERT_EQ(arg.type(), in.second)
                << "Got unexpected type for input " << i
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  6. src/net/tcpsock_posix.go

    	// This can only happen when we are letting the kernel pick a port (laddr == nil)
    	// and when there is no listener for the destination address.
    	// It's hard to argue this is anything other than a kernel bug. If we
    	// see this happen, rather than expose the buggy effect to users, we
    	// close the fd and try again. If it happens twice more, we relent and
    	// use the result. See also:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/BloomFilterStrategies.java

    @ElementTypesAreNonnullByDefault
    enum BloomFilterStrategies implements BloomFilter.Strategy {
      /**
       * See "Less Hashing, Same Performance: Building a Better Bloom Filter" by Adam Kirsch and Michael
       * Mitzenmacher. The paper argues that this trick doesn't significantly deteriorate the
       * performance of a Bloom filter (yet only needs two 32bit hash functions).
       */
      MURMUR128_MITZ_32() {
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. src/internal/coverage/defs.go

    // values, and/or tags indicating which tests were run to generate the
    // counter data.
    type CounterSegmentHeader struct {
    	FcnEntries uint64
    	StrTabLen  uint32
    	ArgsLen    uint32
    }
    
    // CounterFileFooter appears at the tail end of a counter data file,
    // and stores the number of segments it contains.
    type CounterFileFooter struct {
    	Magic       [4]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

      ASSERT_EQ(incompatible_pairs.size(), 1);
    
      std::pair<int, int> write_read_pair = {write->id(), read->id()};
      EXPECT_EQ(incompatible_pairs[0], write_read_pair);
    }
    
    bool IsResourceArgDef(const OpDef::ArgDef& arg_def) {
      return arg_def.type() == DT_RESOURCE;
    }
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        func.return %0 : tensor<2x5xi32>
      }
    
      // CHECK-LABEL: arg_min
      func.func @arg_min(%arg0: tensor<6xf64>) -> tensor<i32> {
        // CHECK-NOT: ArgMin
        %0 = mhlo.constant dense<0> : tensor<i32>
        %1 = "tf.ArgMin"(%arg0, %0) : (tensor<6xf64>, tensor<i32>) -> tensor<i32>
        func.return %1 : tensor<i32>
      }
    
      // CHECK-LABEL: non_max_suppression_v4
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
Back to top