Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for covers (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

    [sidebar]
    _Training level_: **Intermediate** +
    _Reading time_: **35 minutes**
    
    The introduction covers:
    
    <<gradle_directories.adoc#gradle_directories,Part 1.>> Gradle Directories +
    <<intro_multi_project_builds.adoc#intro_multi_project_builds,Part 2.>> Multi-Project Builds +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    If you need to install Gradle before the tutorial, you can do so in the <<installation.adoc#installation,installation section>>.
    
    [sidebar]
    _Training level_: **Beginner** +
    _Training time_: **55 minutes**
    
    The tutorial covers:
    
    <<part1_gradle_init#part1_begin,Part 1.>> Initializing the Project +
    <<part2_gradle_tasks#part2_begin,Part 2.>> Running Tasks +
    <<part3_gradle_dep_man#part3_begin,Part 3.>> Understanding Dependencies +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

         * build task, such as a resource compiler or annotation processor, the resolve extension should provide a scope here that covers those
         * externally generated sources. This will prevent collisions between the definitions provided by [getKtFiles] and those provided by the
         * (potentially stale) externally generated sources.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

     * allowed kinds are:
     *   * integer types,
     *   * string type,
     *   * enum types,
     *   * other annotation types, and
     *   * array of aforementioned types
     *
     *  [KaConstantAnnotationValue]  covers first two kinds;
     *  [KaEnumEntryAnnotationValue] corresponds to enum types;
     *  [KaAnnotationApplicationValue] represents annotation types (with annotation fq name and arguments); and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	}
    	if obj.Timeouts == nil {
    		obj.Timeouts = &Timeouts{}
    	}
    	SetDefaults_Timeouts(obj.Timeouts)
    }
    
    // SetDefaults_EnvVar assigns default values for EnvVar.
    // +k8s:defaulter-gen=covers
    func SetDefaults_EnvVar(obj *EnvVar) {
    	if obj.ValueFrom != nil {
    		if obj.ValueFrom.FieldRef != nil {
    			if obj.ValueFrom.FieldRef.APIVersion == "" {
    				obj.ValueFrom.FieldRef.APIVersion = "v1"
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    	if err != nil {
    		t.Fatalf("couldn't write new embedded certificate: %v", err)
    	}
    
    	// Make sure that CA key is not present during Read() as it is not needed.
    	// This covers testing when the CA is external and not present on the host.
    	_, caKeyPath := pkiutil.PathsForCertAndKey(dirPKI, caName)
    	os.Remove(caKeyPath)
    
    	// Reads back the new certificate embedded in a kubeconfig writer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    */
    
    package schema
    
    import (
    	"fmt"
    
    	"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    	apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    )
    
    // NewStructural converts an OpenAPI v3 schema into a structural schema. A pre-validated JSONSchemaProps will
    // not fail on NewStructural. This means that we require that:
    //
    // - items is not an array of schemas
    // - the following fields are not set:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/proginfo.go

    // version of the form "v1.2.3". Go versions may also include spaces and
    // special characters.
    func ProgramInfo(info *debug.BuildInfo) (goVers, progPath, progVers string) {
    	goVers = info.GoVersion
    	if strings.Contains(goVers, "devel") || strings.Contains(goVers, "-") {
    		goVers = "devel"
    	}
    
    	progPath = info.Path
    	if progPath == "" {
    		progPath = strings.TrimSuffix(filepath.Base(os.Args[0]), ".exe")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:09:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/runtime/coverage/coverage.go

    // "-cover", or if a write fails). The counter data written will be a
    // snapshot taken at the point of the invocation.
    func WriteCounters(w io.Writer) error {
    	return cfile.WriteCounters(w)
    }
    
    // ClearCounters clears/resets all coverage counter variables in the
    // currently running program. It returns an error if the program in
    // question was not built with the "-cover" flag. Clearing of coverage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top