Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 174 for mcov (0.24 sec)

  1. pkg/util/coverage/coverage.go

    	// or if it's empty we just use a default in /tmp
    	coverageFile = os.Getenv("KUBE_COVERAGE_FILE")
    	if coverageFile == "" {
    		coverageFile = "/tmp/k8s-" + name + ".cov"
    	}
    	fmt.Println("Dumping coverage information to " + coverageFile)
    
    	flushInterval := 5 * time.Second
    	requestedInterval := os.Getenv("KUBE_COVERAGE_FLUSH_INTERVAL")
    	if requestedInterval != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 21:00:21 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*1727*/ uint16(xReadSlashR),
    	/*1728*/ uint16(xArgCR0dashCR7),
    	/*1729*/ uint16(xArgRmf32),
    	/*1730*/ uint16(xMatch),
    	/*1731*/ uint16(xSetOp), uint16(MOV),
    	/*1733*/ uint16(xReadSlashR),
    	/*1734*/ uint16(xArgCR0dashCR7),
    	/*1735*/ uint16(xArgRmf64),
    	/*1736*/ uint16(xMatch),
    	/*1737*/ uint16(xCondIs64), 1740, 1746,
    	/*1740*/ uint16(xSetOp), uint16(MOV),
    	/*1742*/ uint16(xReadSlashR),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/asm5.go

    		rel.Type = objabi.R_CALLIND
    
    	case 8: /* sll $c,[R],R -> mov (R<<$c),R */
    		c.aclass(&p.From)
    
    		o1 = c.oprrr(p, p.As, int(p.Scond))
    		r := int(p.Reg)
    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    		o1 |= (uint32(r) & 15) << 0
    		o1 |= uint32((c.instoffset & 31) << 7)
    		o1 |= (uint32(p.To.Reg) & 15) << 12
    
    	case 9: /* sll R,[R],R -> mov (R<<R),R */
    		o1 = c.oprrr(p, p.As, int(p.Scond))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	{VCMP_EQ_F64, []int{1, 0}, "VCMP", "CMPD"},
    	{VCMP_E_EQ_F32, []int{1, 0}, "VCMP.E", "CMPF"},
    	{VCMP_E_EQ_F64, []int{1, 0}, "VCMP.E", "CMPD"},
    	{VLDR_EQ, []int{1}, "VLDR", "MOV"},
    	{VSTR_EQ, []int{1}, "VSTR", "MOV"},
    	{VMOV_EQ_F32, []int{1, 0}, "VMOV", "MOVF"},
    	{VMOV_EQ_F64, []int{1, 0}, "VMOV", "MOVD"},
    	{VMOV_EQ_32, []int{1, 0}, "VMOV", "MOVW"},
    	{VMOV_EQ, []int{1, 0}, "VMOV", "MOVW"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. test/codegen/shift.go

    	return v >> uint64(33)
    }
    
    func rshConst64Ux64Overflow32(v uint32) uint64 {
    	// riscv64:"MOV\t\\$0,",-"SRL"
    	return uint64(v) >> 32
    }
    
    func rshConst64Ux64Overflow16(v uint16) uint64 {
    	// riscv64:"MOV\t\\$0,",-"SRL"
    	return uint64(v) >> 16
    }
    
    func rshConst64Ux64Overflow8(v uint8) uint64 {
    	// riscv64:"MOV\t\\$0,",-"SRL"
    	return uint64(v) >> 8
    }
    
    func rshConst64x64(v int64) int64 {
    	// ppc64x:"SRAD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"MOV (inverted wide immediate)","Bits":"0|0|0|1|0|0|1|0|1|hw:2|imm16:16|Rd:5","Arch":"32-bit variant","Syntax":"MOV <Wd>, #<imm>","Code":"","Alias":"This instruction is an alias of the MOVN instruction."},
    {"Name":"MOV (inverted wide immediate)","Bits":"1|0|0|1|0|0|1|0|1|hw:2|imm16:16|Rd:5","Arch":"64-bit variant","Syntax":"MOV <Xd>, #<imm>","Code":"","Alias":"This instruction is an alias of the MOVN instruction."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  7. src/cmd/cover/cfg_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 main_test
    
    import (
    	"cmd/internal/cov/covcmd"
    	"encoding/json"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    func writeFile(t *testing.T, path string, contents []byte) {
    	if err := os.WriteFile(path, contents, 0666); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_coverpkg_partial.txt

    # f               yes             no              3               ---
    #
    
    [short] skip
    [!GOEXPERIMENT:coverageredesign] skip
    
    # Test all packages with -coverpkg=./...
    go test -coverprofile=cov.p -coverpkg=./... ./...
    stdout '^ok\s+M/a\s+\S+\s+coverage: 50.0% of statements in ./...'
    stdout '^ok\s+M/b\s+\S+\s+coverage: 60.0% of statements in ./...'
    stdout '^ok\s+M/c\s+\S+\s+coverage: 30.0% of statements in ./...'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:12:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	MOV:               "MOV",
    	MOV_ZZ:            "MOV.ZZ",
    	MOV_S_EQ:          "MOV.S.EQ",
    	MOV_S_NE:          "MOV.S.NE",
    	MOV_S_CS:          "MOV.S.CS",
    	MOV_S_CC:          "MOV.S.CC",
    	MOV_S_MI:          "MOV.S.MI",
    	MOV_S_PL:          "MOV.S.PL",
    	MOV_S_VS:          "MOV.S.VS",
    	MOV_S_VC:          "MOV.S.VC",
    	MOV_S_HI:          "MOV.S.HI",
    	MOV_S_LS:          "MOV.S.LS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  10. src/math/big/prime.go

    // October 1980, pp. 1391-1417, especially page 1401.
    // https://www.ams.org/journals/mcom/1980-35-152/S0025-5718-1980-0583518-6/S0025-5718-1980-0583518-6.pdf
    //
    // Grantham, "Frobenius Pseudoprimes", Mathematics of Computation 70(234),
    // March 2000, pp. 873-891.
    // https://www.ams.org/journals/mcom/2001-70-234/S0025-5718-00-01197-2/S0025-5718-00-01197-2.pdf
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
Back to top