Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 242 for covers (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    .Configuration inheritance provided by the Java plugin
    image::dependency-management-configuration-inheritance.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  2. pkg/controller/resourceclaim/controller.go

    	templateName := podClaim.Source.ResourceClaimTemplateName
    	if templateName == nil {
    		// Nothing to do.
    		return nil
    	}
    
    	// Before we create a new ResourceClaim, check if there is an orphaned one.
    	// This covers the case that the controller has created it, but then fails
    	// before it can update the pod status.
    	claim, err := ec.findPodResourceClaim(pod, podClaim)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. src/cmd/cover/cover.go

    const usageMessage = "" +
    	`Usage of 'go tool cover':
    Given a coverage profile produced by 'go test':
    	go test -coverprofile=c.out
    
    Open a web browser displaying annotated source code:
    	go tool cover -html=c.out
    
    Write out an HTML file instead of launching a web browser:
    	go tool cover -html=c.out -o coverage.html
    
    Display coverage percentages to stdout for each function:
    	go tool cover -func=c.out
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    // applied wrt the revised oldest request in the queue.
    type queueSet struct {
    	clock                    eventclock.Interface
    	estimatedServiceDuration time.Duration
    
    	reqsGaugePair metrics.RatioedGaugePair // .RequestsExecuting covers regular phase only
    
    	execSeatsGauge metrics.RatioedGauge // for all phases of execution
    
    	seatDemandIntegrator metrics.Gauge
    
    	promiseFactory promiseFactory
    
    	lock sync.Mutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testshared/shared_test.go

    	// each module has its own distinct set of dependency versions.)
    	// We would like to eliminate it (see https://go.dev/issue/47788),
    	// but first need to figure out a replacement that covers the small subset
    	// of use-cases where -buildmode=shared still works today.
    	// For now, run the tests in GOPATH mode only.
    	os.Setenv("GO111MODULE", "off")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	var objSyms []*objSymbol
    	for _, m := range prof.Mapping {
    		// Skip the mapping if its file does not have samples or is not matched to
    		// the regexp (unless the regexp is an address and the mapping's range covers
    		// the address)
    		if !fileHasSamplesAndMatched[m.File] {
    			if address == nil || !(m.Start <= *address && *address <= m.Limit) {
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

    import org.gradle.internal.serialize.codecs.core.FileValueSnapshotCodec
    import org.gradle.internal.serialize.codecs.core.FixedValueReplacingProviderCodec
    import org.gradle.internal.serialize.codecs.core.FlowProvidersCodec
    import org.gradle.internal.serialize.codecs.core.IntegerValueSnapshotCodec
    import org.gradle.internal.serialize.codecs.core.IntersectionPatternSetCodec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. src/runtime/signal_unix.go

    		// Unfortunately, that's complicated to do in general (mostly for x86
    		// and s930x, but other archs have non-standard instruction lengths also).
    		// Opt to print 16 bytes, which covers most instructions.
    		const maxN = 16
    		n := uintptr(maxN)
    		// We have to be careful, though. If we're near the end of
    		// a page and the following page isn't mapped, we could
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    Gradle provides built-in shorthand notations for these widely-used repositories.
    
    .Declaring a repository with the help of shorthand notations
    image::dependency-management-shortcut-repositories.png[]
    
    Under the covers Gradle resolves dependencies from the respective URL of the public repository defined by the shorthand notation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    +
    It's up to you to decide whether this step is worth the effort and potential disruption, which in turn depends on your specific build and team.
    
    The rest of the chapter covers some common scenarios you will likely deal with during the migration, such as dependency management and working with Ant tasks.
    
    [[migant:imported_builds]]
    == Working with an imported build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top