Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 194 for DT (0.06 sec)

  1. platforms/documentation/docs/src/docs/css/base.css

    }
    
    .segmentedlist th {
        padding: 0.3em 0.8em;
        color: #505050;
    }
    
    .segmentedlist td {
        padding: 0.3em 0.8em;
    }
    
    .segmentedlist dt,
    .variablelist dt {
        font-weight: bold;
    }
    
    .variablelist dt a {
        font-weight: normal;
    }
    
    .itemizedlist li p,
    .example pre,
    .figure pre {
        margin-top: 0;
        margin-bottom: 0.625rem;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. src/encoding/gob/codec_test.go

    	A int
    }
    
    type DT struct {
    	//	X OnTheFly
    	A     int
    	B     string
    	C     float64
    	I     any
    	J     any
    	I_nil any
    	M     map[string]int
    	T     [3]int
    	S     []string
    }
    
    func newDT() DT {
    	var dt DT
    	dt.A = 17
    	dt.B = "hello"
    	dt.C = 3.14159
    	dt.I = 271828
    	dt.J = OnTheFly{3}
    	dt.I_nil = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  3. test/typeparam/absdiff2.go

    // a and b, where the absolute value is determined by the Abs method.
    func absDifference[T Numeric, U numericAbs[T]](a, b U) T {
    	d := a.Value() - b.Value()
    	dt := U{Value_: d}
    	return dt.Abs()
    }
    
    // orderedNumeric matches numeric types that support the < operator.
    type orderedNumeric interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. test/typeparam/absdiffimp2.dir/a.go

    // a and b, where the absolute value is determined by the Abs method.
    func absDifference[T Numeric, U numericAbs[T]](a, b U) T {
    	d := a.Value() - b.Value()
    	dt := U{Value_: d}
    	return dt.Abs()
    }
    
    // orderedNumeric matches numeric types that support the < operator.
    type orderedNumeric interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. src/runtime/vdso_linux.go

    	var hash, gnuhash *[vdsoHashSize]uint32
    	info.symstrings = nil
    	info.symtab = nil
    	info.versym = nil
    	info.verdef = nil
    	for i := 0; dyn[i].d_tag != _DT_NULL; i++ {
    		dt := &dyn[i]
    		p := info.loadOffset + uintptr(dt.d_val)
    		switch dt.d_tag {
    		case _DT_STRTAB:
    			info.symstrings = (*[vdsoSymStringsSize]byte)(unsafe.Pointer(p))
    		case _DT_SYMTAB:
    			info.symtab = (*[vdsoSymTabSize]elfSym)(unsafe.Pointer(p))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java

            blockElements.add("table");
            blockElements.add("thead");
            blockElements.add("tbody");
            blockElements.add("tr");
            blockElements.add("dl");
            blockElements.add("dt");
            blockElements.add("dd");
    
            blockContent.add("ul");
            blockContent.add("ol");
            blockContent.add("table");
            blockContent.add("thead");
            blockContent.add("tbody");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  7. pkg/queue/delay_test.go

    	}
    }
    
    func TestPriorityQueueShrinking(t *testing.T) {
    	c := 48
    	pq := make(pq, 0, c)
    	pqp := &pq
    
    	t0 := time.Now()
    	for i := 0; i < c; i++ {
    		dt := &delayTask{runAt: t0.Add(time.Duration(i) * time.Hour)}
    		heap.Push(pqp, dt)
    	}
    
    	if len(pq) != c {
    		t.Fatalf("the length of pq should be %d, but end up %d", c, len(pq))
    	}
    
    	if cap(pq) != c {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/internal/trace/summary.go

    func (s GoroutineExecStats) clone() (r GoroutineExecStats) {
    	r = s
    	r.BlockTimeByReason = make(map[string]time.Duration)
    	for reason, dt := range s.BlockTimeByReason {
    		r.BlockTimeByReason[reason] = dt
    	}
    	r.RangeTime = make(map[string]time.Duration)
    	for name, dt := range s.RangeTime {
    		r.RangeTime[name] = dt
    	}
    	return r
    }
    
    // snapshotStat returns the snapshot of the goroutine execution statistics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/test_utils.cc

          /* cluster_flr= */ nullptr));
    }
    
    std::vector<DataType> DataTypeSetToVector(DataTypeSet set) {
      std::vector<DataType> result;
      result.reserve(set.size());
      for (DataType dt : set) {
        result.push_back(dt);
      }
      return result;
    }
    
    std::vector<std::vector<int64_t>> InterestingShapes() {
      std::vector<std::vector<int64_t>> interesting_shapes;
      interesting_shapes.push_back({});             // Scalar
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:13:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. tensorflow/c/tf_datatype.h

    // to the given TF_DataType enum value. Returns 0 for variable length types
    // (eg. TF_STRING) or on failure.
    TF_CAPI_EXPORT extern size_t TF_DataTypeSize(TF_DataType dt);
    
    #ifdef __cplusplus
    } /* end extern "C" */
    #endif
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:13:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top