Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for parseName (0.31 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

      if (auto device = op->getAttrOfType<StringAttr>("device")) {
        if (!device.getValue().empty() && !device.getValue().str().empty()) {
          tensorflow::DeviceNameUtils::ParsedName name;
          if (tensorflow::DeviceNameUtils::ParseFullName(device.str(), &name)) {
            if (name.type == "TPU_REPLICATED_CORE") {
              // TODO(hanxiongwang): Add check for out of bound of name.id
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                            .filter(s -> !validateDateTimeString(source.get(s))).collect(Collectors.toList()));
        }
    
        default boolean validateDateTimeString(final Object obj) {
            if (FessFunctions.parseDate(obj.toString()) != null) {
                return true;
            }
            return false;
        }
    
        String getIndexAdminIntegerFields();
    
        default Set<String> getIndexAdminIntegerFieldSet() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

      auto status =
          tensorflow::DeserializeMlirModule(string, context, &mlir_module);
      if (!status.ok()) {
        return status;
      }
      return mlir_module;
    }
    
    using Device = DeviceNameUtils::ParsedName;
    
    bool DeviceNamesToParsedNames(llvm::ArrayRef<std::string> device_names,
                                  llvm::SmallVectorImpl<Device>* parsed_devices) {
      parsed_devices->reserve(device_names.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    c.test(a)},errorMessage:"",errorMessageKey:"badCustomVal"}),a.formUtils.addValidator({name:"date",validatorFunction:function(b,c,d){var e=c.valAttr("format")||d.dateFormat||"yyyy-mm-dd",f="false"===c.valAttr("require-leading-zero");return a.formUtils.parseDate(b,e,f)!==!1},errorMessage:"",errorMessageKey:"badDate"}),a.formUtils.addValidator({name:"checkbox_group",validatorFunction:function(b,c,d,e,f){var g=!0,h=c.attr("name"),i=a('input[type=checkbox][name^="'+h+'"]',f),j=i.filter(":checked").length,k...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal_test.go

    	{Value: &Universe{Visible: 9.3e13}, ExpectXML: `<universe>9.3e+13</universe>`},
    	{Value: &Particle{HasMass: true}, ExpectXML: `<particle>true</particle>`},
    	{Value: &Departure{When: ParseTime("2013-01-09T00:15:00-09:00")}, ExpectXML: `<departure>2013-01-09T00:15:00-09:00</departure>`},
    	{Value: atomValue, ExpectXML: atomXML},
    	{Value: &Generic[int]{1}, ExpectXML: `<Generic><X>1</X></Generic>`},
    	{
    		Value: &Ship{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  6. src/net/http/server.go

    // headers. It is like [time.RFC1123] but hard-codes GMT as the time
    // zone. The time being formatted must be in UTC for Format to
    // generate the correct format.
    //
    // For parsing this time format, see [ParseTime].
    const TimeFormat = "Mon, 02 Jan 2006 15:04:05 GMT"
    
    // appendTime is a non-allocating version of []byte(t.UTC().Format(TimeFormat))
    func appendTime(b []byte, t time.Time) []byte {
    	const days = "SunMonTueWedThuFriSat"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // NodeDef can contain partial TF device names. In such cases, canonicalize
      // it. Note that in current TF, placer will place full device name to each
      // node.
      DeviceNameUtils::ParsedName parsed_name;
      if (!DeviceNameUtils::ParseFullName(node_def.device(), &parsed_name)) {
        return errors::InvalidArgument(
            "Op ", op_name, " has invalid device name: ", node_def.device());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg text/template/parse, type TemplateNode struct, embedded Pos
    pkg text/template/parse, type TextNode struct, embedded Pos
    pkg text/template/parse, type Tree struct, ParseName string
    pkg text/template/parse, type VariableNode struct, embedded Pos
    pkg time, const ANSIC = "Mon Jan _2 15:04:05 2006"
    pkg time, const April = 4
    pkg time, const August = 8
    pkg time, const December = 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	}
    }
    
    func TestAppendTime(t *testing.T) {
    	var b [len(TimeFormat)]byte
    	t1 := time.Date(2013, 9, 21, 15, 41, 0, 0, time.FixedZone("CEST", 2*60*60))
    	res := ExportAppendTime(b[:0], t1)
    	t2, err := ParseTime(string(res))
    	if err != nil {
    		t.Fatalf("Error parsing time: %s", err)
    	}
    	if !t1.Equal(t2) {
    		t.Fatalf("Times differ; expected: %v, got %v (%s)", t1, t2, string(res))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top