Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 429 for covers (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/cover.bash

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # A quick and dirty way to obtain code coverage from rulegen's main func. For
    # example:
    #
    #     ./cover.bash && go tool cover -html=cover.out
    #
    # This script is needed to set up a temporary test file, so that we don't break
    # regular 'go run .' usage to run the generator.
    
    cat >main_test.go <<-EOF
    	//go:build ignore
    
    	package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 664 bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/cover.go

    	args = append(args, cmdline...)
    	return b.Shell(a).runOut(a.Objdir, nil, args)
    }
    
    // BuildActionCoverMetaFile locates and returns the path of the
    // meta-data file written by the "go tool cover" step as part of the
    // build action for the "go test -cover" run action 'runAct'. Note
    // that if the package has no functions the meta-data file will exist
    // but will be empty; in this case the return is an empty string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/coverage/cover.go

    package coverage
    
    // This package contains support routines for coverage "fixup" in the
    // compiler, which happens when compiling a package whose source code
    // has been run through "cmd/cover" to add instrumentation. The two
    // important entry points are FixupVars (called prior to package init
    // generation) and FixupInit (called following package init
    // generation).
    
    import (
    	"cmd/compile/internal/base"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. logo/colors.md

    # Official Colors
    
    The kubernetes logo has an official blue color.  When reproducing the logo, please use the official color, when possible.
    
    ## Pantone
    
    When possible, the Pantone color is preferred for print material.  The official Pantone color is *285C*.
    
    ## RGB
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 16 06:15:43 UTC 2021
    - 331 bytes
    - Viewed (0)
  5. src/internal/pkgbits/codes.go

    //
    // Code types are preferable for enum types, because they allow
    // Decoder to detect desyncs.
    type Code interface {
    	// Marker returns the SyncMarker for the Code's dynamic type.
    	Marker() SyncMarker
    
    	// Value returns the Code's ordinal value.
    	Value() int
    }
    
    // A CodeVal distinguishes among go/constant.Value encodings.
    type CodeVal int
    
    func (c CodeVal) Marker() SyncMarker { return SyncVal }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:15:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. src/testing/newcover.go

    	if mode == "" {
    		return
    	}
    	cover2.mode = mode
    	cover2.tearDown = tearDown
    	cover2.snapshotcov = snapcov
    }
    
    // coverReport2 invokes a callback in _testmain.go that will
    // emit coverage data at the point where test execution is complete,
    // for "go test -cover" runs.
    func coverReport2() {
    	if !goexperiment.CoverageRedesign {
    		panic("unexpected")
    	}
    	if errmsg, err := cover2.tearDown(*coverProfile, *gocoverdir); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. pkg/kubectl/cmd/convert/convert.go

    		# Convert 'pod.yaml' to latest version and print to stdout.
    		kubectl convert -f pod.yaml
    
    		# Convert the live state of the resource specified by 'pod.yaml' to the latest version
    		# and print to stdout in JSON format.
    		kubectl convert -f pod.yaml --local -o json
    
    		# Convert all files under current directory to latest version and create them all.
    		kubectl convert -f . | kubectl create -f -`))
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/cover.go

    Than McIntosh <******@****.***> 1633965979 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/res/values/colors.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  10. test/convert.go

    Rob Pike <******@****.***> 1329617983 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 833 bytes
    - Viewed (0)
Back to top