Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for qsub (0.05 sec)

  1. cmd/prune-junit-xml/prunexml.go

    )
    
    func main() {
    	maxTextSize := flag.Int("max-text-size", 1, "maximum size of attribute or text (in MB)")
    	pruneTests := flag.Bool("prune-tests", true,
    		"prune's xml files to display only top level tests and failed sub-tests")
    	flag.Parse()
    	for _, path := range flag.Args() {
    		fmt.Printf("processing junit xml file : %s\n", path)
    		xmlReader, err := os.Open(path)
    		if err != nil {
    			panic(err)
    		}
    		defer xmlReader.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/benchmark/bench.go

    	if m == nil {
    		return
    	}
    
    	m.closeMark()
    
    	gcString := ""
    	if m.gc == GC {
    		gcString = "_GC"
    	}
    
    	var totTime time.Duration
    	for _, curMark := range m.marks {
    		dur := curMark.endT.Sub(curMark.startT)
    		totTime += dur
    		fmt.Fprintf(w, "%s 1 %d ns/op", makeBenchString(curMark.name+gcString), dur.Nanoseconds())
    		fmt.Fprintf(w, "\t%d B/op", curMark.endM.TotalAlloc-curMark.startM.TotalAlloc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. internal/http/response-recorder.go

    		lrw.WriteHeader(http.StatusOK)
    	}
    	n, err := lrw.ResponseWriter.Write(p)
    	lrw.bytesWritten += n
    	if lrw.TimeToFirstByte == 0 {
    		lrw.TimeToFirstByte = time.Now().UTC().Sub(lrw.StartTime)
    	}
    	gzipped := lrw.Header().Get("Content-Encoding") == "gzip"
    	if !gzipped && ((lrw.LogErrBody && lrw.StatusCode >= http.StatusBadRequest) || lrw.LogAllBody) {
    		// Always logging error responses.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 00:13:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. cmd/consolelogger.go

    	console  *console.Target
    	nodeName string
    	logBuf   *ring.Ring
    }
    
    // NewConsoleLogger - creates new HTTPConsoleLoggerSys with all nodes subscribed to
    // the console logging pub sub system
    func NewConsoleLogger(ctx context.Context, w io.Writer) *HTTPConsoleLoggerSys {
    	return &HTTPConsoleLoggerSys{
    		pubsub:  pubsub.New[log.Info, madmin.LogMask](8),
    		console: console.New(w),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/crypto/x509/internal/macos/corefoundation.go

    		return ""
    	}
    	b := CFDataToSlice(data)
    	CFRelease(data)
    	return string(b)
    }
    
    // TimeToCFDateRef converts a time.Time into an apple CFDateRef.
    func TimeToCFDateRef(t time.Time) CFRef {
    	secs := t.Sub(time.Date(2001, 1, 1, 0, 0, 0, 0, time.UTC)).Seconds()
    	ref := CFDateCreate(secs)
    	return ref
    }
    
    type CFString CFRef
    
    const kCFAllocatorDefault = 0
    const kCFStringEncodingUTF8 = 0x08000100
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. cmd/metrics-v3-cache.go

    			ioStats:       map[string]driveIOStatMetrics{},
    		}
    
    		currentStats := getCurrentDriveIOStats()
    		now := time.Now().UTC()
    
    		prevDriveIOStatsMu.Lock()
    		if prevDriveIOStats != nil {
    			duration := now.Sub(prevDriveIOStatsRefreshedAt)
    			if duration.Seconds() > 1 {
    				for d, cs := range currentStats {
    					if ps, found := prevDriveIOStats[d]; found {
    						v.ioStats[d] = getDriveIOStatMetrics(getDiffStats(ps, cs), duration)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/a.out.go

    	ANEGV
    	ANOOP // hardware nop
    	ANOR
    	AOR
    	AREM
    	AREMU
    	ARFE
    	AROTR
    	AROTRV
    	ASC
    	ASCV
    	ASEB
    	ASEH
    	ASGT
    	ASGTU
    	ASLL
    	ASQRTD
    	ASQRTF
    	ASRA
    	ASRL
    	ASUB
    	ASUBD
    	ASUBF
    	ASUBU
    	ASUBW
    	ASYNC
    	ASYSCALL
    	ATEQ
    	ATLBP
    	ATLBR
    	ATLBWI
    	ATLBWR
    	ATNE
    	AWORD
    	AWSBH
    	AXOR
    
    	/* 64-bit */
    	AMOVV
    	AMOVVL
    	AMOVVR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. tools/docker-builder/crane.go

    //
    // Building in this way ends up being roughly 10x faster than docker. Future work to enable
    // sha256-simd (https://github.com/google/go-containerregistry/issues/1330) makes this even faster -
    // pushing all images drops to sub-second times, with the registry being the bottleneck (which could
    // also use sha256-simd possibly).
    func RunCrane(ctx context.Context, a Args) error {
    	ctx, span := tracing.Start(ctx, "RunCrane")
    	defer span.End()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/util/ipvs_linux.go

    	if svc.Flags&FlagHashed == 0 {
    		return nil, fmt.Errorf("Flags of successfully created IPVS service should enable the flag (%x) since every service is hashed into the service table", FlagHashed)
    	}
    	// Sub Flags to 0x2
    	// 011 -> 001, 010 -> 000
    	vs.Flags = ServiceFlags(svc.Flags &^ uint32(FlagHashed))
    
    	if vs.Address == nil {
    		if svc.AddressFamily == unix.AF_INET {
    			vs.Address = net.IPv4zero
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top