Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 174 for mcov (0.03 sec)

  1. src/cmd/go/testdata/script/cover_coverpkg_with_init.txt

    # packages); prior to the fix for #58770 Go 1.20 would show 100%
    # coverage. For packages "x" and "f" (which have no tests), check for
    # 0% stmts covered (as opposed to "no test files").
    
    go test -count=1 -coverprofile=cov.dat -coverpkg=./... ./...
    stdout '^\s*\?\s+M/n\s+\[no test files\]'
    stdout '^\s*M/x\s+coverage: 0.0% of statements'
    stdout '^\s*M/f\s+coverage: 0.0% of statements'
    stdout '^ok\s+M/a\s+\S+\s+coverage: 30.0% of statements in ./...'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 12:33:44 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "MOVaddr", argLength: 1, reg: gp11sb, asm: "MOV", aux: "SymOff", rematerializeable: true, symEffect: "Addr"}, // arg0 + auxint + offset encoded in aux
    		// auxint+aux == add auxint and the offset of the symbol in aux (if any) to the effective address
    
    		{name: "MOVDconst", reg: gp01, asm: "MOV", typ: "UInt64", aux: "Int64", rematerializeable: true}, // auxint
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. test/codegen/maps.go

    //     Access Const    //
    // ------------------- //
    
    // Direct use of constants in fast map access calls (Issue #19015).
    
    func AccessInt1(m map[int]int) int {
    	// amd64:"MOV[LQ]\t[$]5"
    	return m[5]
    }
    
    func AccessInt2(m map[int]int) bool {
    	// amd64:"MOV[LQ]\t[$]5"
    	_, ok := m[5]
    	return ok
    }
    
    func AccessString1(m map[string]int) int {
    	// amd64:`.*"abc"`
    	return m["abc"]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. cluster/log-dump/log-dump.sh

              run-in-docker-container "${node_name}" "kube-controller-manager" "cat /tmp/k8s-kube-controller-manager.cov" > "${dir}/kube-controller-manager.cov" || true
            else
              run-in-docker-container "${node_name}" "kube-proxy" "cat /tmp/k8s-kube-proxy.cov" > "${dir}/kube-proxy.cov" || true
            fi
          else
            echo 'Coverage profiles seem to exist, but cannot be retrieved from inside containers.'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    	(MOV(B|H|W|V|F|D)store [off1+int32(off2)] {sym} ptr val mem)
    
    (MOV(B|H|W|V)storezero [off1] {sym} (ADDVconst [off2] ptr) mem) && is32Bit(int64(off1)+off2)
    	&& (ptr.Op != OpSB || !config.ctxt.Flag_dynlink) =>
    	(MOV(B|H|W|V)storezero [off1+int32(off2)] {sym} ptr mem)
    
    (MOV(B|BU|H|HU|W|WU|V|F|D)load [off1] {sym1} (MOVVaddr [off2] {sym2} ptr) mem) && canMergeSym(sym1,sym2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue9400/asm_riscv64.s

    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADD	$(1024*8), X2
    
    	// Ask signaller to setgid
    	MOV	$1, X5
    	FENCE
    	MOVW	X5, ·Baton(SB)
    	FENCE
    
    	// Wait for setgid completion
    loop:
    	FENCE
    	MOVW	·Baton(SB), X5
    	OR	X6, X6, X6	// hint that we're in a spin loop
    	BNE	ZERO, X5, loop
    	FENCE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 659 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_coverprofile_multipkg.txt

    # multiple packages without tests.
    
    [short] skip
    
    # Kick off test.
    go test -p=10 -vet=off -count=1 -coverprofile=cov.p ./...
    
    # Make sure resulting profile is digestible.
    go tool cover -func=cov.p
    
    # No extraneous extra files please.
    ! exists _cover_.out
    
    -- a/a.go --
    package a
    
    func init() {
    	println("package 'a' init: launch the missiles!")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 17:02:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/internal/cov/read_test.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cov_test
    
    import (
    	"cmd/internal/cov"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/decodecounter"
    	"internal/coverage/decodemeta"
    	"internal/coverage/pods"
    	"internal/goexperiment"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/asm_test.go

    }
    
    func genLargeJump(buf *bytes.Buffer) {
    	fmt.Fprintln(buf, "TEXT ·x(SB),0,$0-8")
    	fmt.Fprintln(buf, "MOV  X0, X10")
    	fmt.Fprintln(buf, "JMP end")
    	for i := 0; i < 1<<18; i++ {
    		fmt.Fprintln(buf, "ADD $1, X10, X10")
    	}
    	fmt.Fprintln(buf, "end:")
    	fmt.Fprintln(buf, "ADD $1, X10, X10")
    	fmt.Fprintln(buf, "MOV X10, r+0(FP)")
    	fmt.Fprintln(buf, "RET")
    }
    
    // Issue 20348.
    func TestNoRet(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 01:50:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/asm0.go

    	case 34: /* mov $con,fr ==> or/add $i,t; mov t,fr */
    		a := AADDU
    		if o.a1 == C_ANDCON {
    			a = AOR
    		}
    		v := c.regoff(&p.From)
    		o1 = OP_IRR(c.opirr(a), uint32(v), obj.REG_NONE, REGTMP)
    		o2 = OP_RRR(SP(2, 1)|(4<<21), REGTMP, obj.REG_NONE, p.To.Reg) /* mtc1 */
    
    	case 35: /* mov r,lext/auto/oreg ==> sw o(REGTMP) */
    		r := p.To.Reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
Back to top