Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for as_string (0.19 sec)

  1. docs/bucket/notifications/README.md

    > port         (port)               MySQL server port (used only if `dsn_string` is empty)
    > username     (string)             database username (used only if `dsn_string` is empty)
    > password     (string)             database password (used only if `dsn_string` is empty)
    > database     (string)             database name (used only if `dsn_string` is empty)
    > ```
    >
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		if trunc := t0.Truncate(d); trunc != t1 {
    			t.Errorf("Time.Truncate(%s, %s) = %s, want %s\n"+
    				"%v trunc %v =\n%v want\n%v",
    				t0.Format(RFC3339Nano), d, trunc, t1.Format(RFC3339Nano),
    				absString(t0), int64(d), absString(trunc), absString(t1))
    			return false
    		}
    
    		// To round, add d back if remainder r > d/2 or r == exactly d/2.
    		// The commented out code would round half to even instead of up,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    		if(/msie/.test(u) && parseInt(v, 10) == 7) {
    			is_ie7 = true;
    			css_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';
    		}
    		// correct ff2 lack of display:inline-block
    		if(!/compatible/.test(u) && /mozilla/.test(u) && parseFloat(v, 10) < 1.9) {
    			is_ff2 = true;
    			css_string += '' +
    				'.jstree ins { display:-moz-inline-box; } ' +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    		j := 0
    		for x := l.aux; x != nil; x = x.next {
    			j++
    		}
    		s.AddUint16(ctxt.Arch, uint16(j))                        // aux count
    		s.AddUint32(ctxt.Arch, uint32(dynstr.Addstring(l.file))) // file string offset
    		s.AddUint32(ctxt.Arch, 16)                               // offset from header to first aux
    		if l.next != nil {
    			s.AddUint32(ctxt.Arch, 16+uint32(j)*16) // offset from this header to next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    }
    
    func (c dwctxt) AddBytes(s dwarf.Sym, b []byte) {
    	ds := loader.Sym(s.(dwSym))
    	dsu := c.ldr.MakeSymbolUpdater(ds)
    	dsu.AddBytes(b)
    }
    
    func (c dwctxt) AddString(s dwarf.Sym, v string) {
    	ds := loader.Sym(s.(dwSym))
    	dsu := c.ldr.MakeSymbolUpdater(ds)
    	dsu.Addstring(v)
    }
    
    func (c dwctxt) AddAddress(s dwarf.Sym, data interface{}, value int64) {
    	ds := loader.Sym(s.(dwSym))
    	dsu := c.ldr.MakeSymbolUpdater(ds)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      EXPECT_EQ(TF_INT16, static_cast<TF_DataType>(tensorflow::DT_INT16));
      EXPECT_EQ(TF_INT8, static_cast<TF_DataType>(tensorflow::DT_INT8));
      EXPECT_EQ(TF_STRING, static_cast<TF_DataType>(tensorflow::DT_STRING));
      EXPECT_EQ(TF_COMPLEX64, static_cast<TF_DataType>(tensorflow::DT_COMPLEX64));
      EXPECT_EQ(TF_COMPLEX, TF_COMPLEX64);
      EXPECT_EQ(TF_INT64, static_cast<TF_DataType>(tensorflow::DT_INT64));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    		}
    		// A boolean type can only convert to another boolean type.
    		if allBoolean(x.typ) != allBoolean(y.typ) {
    			return false
    		}
    		// A string type can only convert to another string type.
    		if allString(x.typ) != allString(y.typ) {
    			return false
    		}
    		// Untyped nil can only convert to a type that has a nil.
    		if x.isNil() {
    			return hasNil(y.typ)
    		}
    		if y.isNil() {
    			return hasNil(x.typ)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

        Node* a = ops::SourceOp(
            "Const", builder.opts()
                         .WithName("A")
                         .WithAttr("dtype", DT_STRING)
                         .WithAttr("value", Tensor(DT_STRING, TensorShape())));
        Node* b = ops::UnaryOp("EncodeBase64", a, builder.opts().WithName("B"));
        ops::BinaryOp("StringSplit", a, b, builder.opts().WithName("C"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    		}
    		// A boolean type can only convert to another boolean type.
    		if allBoolean(x.typ) != allBoolean(y.typ) {
    			return false
    		}
    		// A string type can only convert to another string type.
    		if allString(x.typ) != allString(y.typ) {
    			return false
    		}
    		// Untyped nil can only convert to a type that has a nil.
    		if x.isNil() {
    			return hasNil(y.typ)
    		}
    		if y.isNil() {
    			return hasNil(x.typ)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          continue;
        }
    
        if (node->type_string() == "Const") {
          // Skip Const op with type DT_STRING, since XLA autoclustering doesn't
          // support it.
          const AttrValue* attr = node->attrs().Find("dtype");
          if (attr != nullptr && attr->type() == DT_STRING) {
            continue;
          }
        }
    
        if (!allowlist.empty() && !allowlist.contains(node->def().op())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top