Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 194 for DT (0.02 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

         * This makes it possible to uniquely identify the snapshot.
         * <dl>
         *     <dt>Directories</dt>
         *     <dd>The combined hash of the children, calculated by appending the name and the hash of each child to a hasher.</dd>
         *     <dt>Regular Files</dt>
         *     <dd>The hash of the content of the file.</dd>
         *     <dt>Missing files</dt>
         *     <dd>A special signature denoting a missing file.</dd>
         * </dl>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/base/timings.go

    					group.label = l
    					group.tot += dt
    					group.size++
    				} else {
    					// start a new group
    					if group.size > 1 {
    						lines.add(prefix+group.label+"subtotal", 1, group.tot, tot, nil)
    					}
    					group.label = label
    					group.tot = dt
    					group.size = 1
    				}
    
    				// write phase
    				lines.add(prefix+label, 1, dt, tot, events)
    			}
    
    			pt = qt
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. tests/test_datetime_custom_encoder.py

    @needs_pydanticv1
    def test_pydanticv1():
        class ModelWithDatetimeField(BaseModel):
            dt_field: datetime
    
            class Config:
                json_encoders = {
                    datetime: lambda dt: dt.replace(
                        microsecond=0, tzinfo=timezone.utc
                    ).isoformat()
                }
    
        app = FastAPI()
        model = ModelWithDatetimeField(dt_field=datetime(2019, 1, 1, 8))
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    	steppingPeriod := time.Millisecond
    	tro.Set(1)
    	// `dt` is the admitted cumulative difference in fake time
    	// since the start of the test.  "admitted" means this is
    	// never allowed to decrease, which matches the designed
    	// toleration for negative monotonic clock changes.
    	var dt time.Duration
    	// `t1` is the current fake time
    	t1 := t0.Add(dt)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/trace/testdata/testprog/main.go

    	cpuHog(20 * time.Millisecond)
    }
    
    func cpuHog(dt time.Duration) {
    	start := time.Now()
    	for i := 0; ; i++ {
    		if i%1000 == 0 && time.Since(start) > dt {
    			return
    		}
    	}
    }
    
    func allocHog(dt time.Duration) {
    	start := time.Now()
    	var s [][]byte
    	for i := 0; ; i++ {
    		if i%1000 == 0 {
    			if time.Since(start) > dt {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    			w.start <- !t.failed || t.keepGoing
    		}
    		w := worklist[ended]
    		dt := w.dt
    		if t.lastHeading != dt.heading {
    			t.lastHeading = dt.heading
    			t.out(dt.heading)
    		}
    		if dt != last {
    			// Assumes all the entries for a single dt are in one worklist.
    			last = w.dt
    			if vflag > 0 {
    				fmt.Printf("# go tool dist test -run=^%s$\n", dt.name)
    			}
    		}
    		if vflag > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/internal/trace/summary_test.go

    	for _, summary := range summaries {
    		basicGoroutineSummaryChecks(t, summary)
    		hasSchedWaitTime = hasSchedWaitTime || summary.SchedWaitTime > 0
    		if dt, ok := summary.BlockTimeByReason["sync"]; ok && dt > 0 {
    			hasSyncBlockTime = true
    		}
    		if dt, ok := summary.RangeTime["GC mark assist"]; ok && dt > 0 {
    			hasGCMarkAssistTime = true
    		}
    	}
    	if !hasSchedWaitTime {
    		t.Error("missing sched wait time")
    	}
    	if !hasSyncBlockTime {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/DefaultTimerTest.groovy

            1 * timeSource.nanoTime() >> TimeUnit.MILLISECONDS.toNanos(timestamp)
        }
    
        private void setTime(int hours, int minutes, int seconds, int millis) {
            long dt = (hours * 3600 * 1000) + (minutes * 60 * 1000) + (seconds * 1000) + millis
            setTime(dt)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/c/tf_datatype.cc

    #include "tensorflow/c/tf_datatype.h"
    
    #include "tensorflow/core/framework/types.h"
    
    size_t TF_DataTypeSize(TF_DataType dt) {
      return static_cast<size_t>(
          tensorflow::DataTypeSize(static_cast<tensorflow::DataType>(dt)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 19:14:59 UTC 2019
    - 900 bytes
    - Viewed (0)
  10. javadoc-stylesheet.css

    }
    .contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
        font-size:1.1em;
        font-weight:bold;
        margin:10px 0 0 0;
        color:#4E4E4E;
    }
    .contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
        margin:10px 0 10px 20px;
    }
    .serializedFormContainer dl.nameValue dt {
        margin-left:1px;
        font-size:1.1em;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
Back to top