Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 207 for ts (0.04 sec)

  1. .idea/kotlinTestDataPluginTestDataPaths.xml

                  <option value="$PROJECT_DIR$/js/js.tests/build/node/{out,out-min,out-per-module,out-per-module-min}/typescript-export/$TEST_DATA_FILE$-JS_TESTS{.d.ts,_v5.js}" />
                  <option value="$PROJECT_DIR$/js/js.translator/testData/typescript-export/$TEST_DATA_FILE$__main.{js,ts}" />
                </array>
              </value>
            </entry>
            <entry key="$PROJECT_DIR$/js/js.translator/testData/webDemoExamples">
              <value>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 15:09:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		}
    		ts[0].Nsec = 0
    		if ts[1].Nsec >= 5e8 {
    			ts[1].Sec++
    		}
    		ts[1].Nsec = 0
    
    		// Not as efficient as it could be because Timespec and
    		// Timeval have different types in the different OSes
    		tv := []Timeval{
    			NsecToTimeval(TimespecToNsec(ts[0])),
    			NsecToTimeval(TimespecToNsec(ts[1])),
    		}
    		return Lutimes(path, tv)
    	}
    	return UtimesNano(path, ts)
    }
    
    // End UtimesNanoAt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/runtime/os_openbsd.go

    //go:nosplit
    func semacreate(mp *m) {
    }
    
    //go:nosplit
    func semasleep(ns int64) int32 {
    	gp := getg()
    
    	// Compute sleep deadline.
    	var tsp *timespec
    	if ns >= 0 {
    		var ts timespec
    		ts.setNsec(ns + nanotime())
    		tsp = &ts
    	}
    
    	for {
    		v := atomic.Load(&gp.m.waitsemacount)
    		if v > 0 {
    			if atomic.Cas(&gp.m.waitsemacount, v, v-1) {
    				return 0 // semaphore acquired
    			}
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/internal/trace/batch.go

    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch gen: %w", err)
    	}
    	m, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch M ID: %w", err)
    	}
    	ts, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch timestamp: %w", err)
    	}
    
    	// Read in the size of the batch to follow.
    	size, err := binary.ReadUvarint(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    		}
    	}
    	return nil
    }
    
    // CommonValueType returns the finest type from a set of compatible
    // types.
    func CommonValueType(ts []*profile.ValueType) (*profile.ValueType, error) {
    	if len(ts) <= 1 {
    		return nil, nil
    	}
    	minType := ts[0]
    	for _, t := range ts[1:] {
    		if !compatibleValueTypes(minType, t) {
    			return nil, fmt.Errorf("incompatible types: %v %v", *minType, *t)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/archive/tar/common.go

    			paxHdrs[paxKey] = v
    		}
    	}
    	verifyTime := func(ts time.Time, size int, name, paxKey string) {
    		if ts.IsZero() {
    			return // Always okay
    		}
    		if !fitsInBase256(size, ts.Unix()) {
    			whyNoGNU = fmt.Sprintf("GNU cannot encode %s=%v", name, ts)
    			format.mustNotBe(FormatGNU)
    		}
    		isMtime := paxKey == paxMtime
    		fitsOctal := fitsInOctal(size, ts.Unix())
    		if (isMtime && !fitsOctal) || !isMtime {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/order.go

    	case seqinc:
    		next.seq = curr.seq + 1
    	}
    	gs[g] = next
    	return nil
    }
    
    type orderEventList []orderEvent
    
    func (l *orderEventList) Less(i, j int) bool {
    	return (*l)[i].ev.Ts < (*l)[j].ev.Ts
    }
    
    func (h *orderEventList) Push(x orderEvent) {
    	*h = append(*h, x)
    	heapUp(h, len(*h)-1)
    }
    
    func (h *orderEventList) Pop() orderEvent {
    	n := len(*h) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/internal/trace/summary.go

    				s.rangesP[rangeP{id: r.Scope.Proc(), name: r.Name}] = ev.Goroutine()
    			}
    		}
    		if g == nil {
    			break
    		}
    		if ev.Kind() == EventRangeActive {
    			if ts := g.lastRangeTime[r.Name]; ts != 0 {
    				g.RangeTime[r.Name] += s.syncTs.Sub(ts)
    			}
    			g.lastRangeTime[r.Name] = s.syncTs
    		} else {
    			g.lastRangeTime[r.Name] = ev.Time()
    		}
    	case EventRangeEnd:
    		r := ev.Range()
    		var g *GoroutineSummary
    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. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

                msg += " (";
                msg += (rev != null ? rev : "");
                if (timestamp != null && !timestamp.isEmpty()) {
                    String ts = formatTimestamp(Long.parseLong(timestamp));
                    msg += (rev != null ? "; " : "") + ts;
                }
                msg += ")";
            }
            return msg;
        }
    
        private static String reduce(String s) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/internal/trace/batchcursor.go

    	// Get spec.
    	spec := &specs[typ]
    	if len(spec.Args) == 0 || !spec.IsTimedEvent {
    		return 0, 0, fmt.Errorf("found event without a timestamp: type=%v", typ)
    	}
    	n := 1
    
    	// Read timestamp diff.
    	ts, nb := binary.Uvarint(b[n:])
    	if nb <= 0 {
    		return 0, 0, fmt.Errorf("found invalid uvarint for timestamp")
    	}
    	n += nb
    
    	// Read the rest of the arguments.
    	for i := 0; i < len(spec.Args)-1; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top