Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 756 for covers (0.18 sec)

  1. 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)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	for i := range parameters.Filters {
    		parameters.Filters[i].NamedResources.Selector = `attributes.bool["no-such-attribute"]`
    	}
    	return parameters
    }
    
    // result defines the expected outcome of some operation. It covers
    // operation's status and the state of the world (= objects).
    type result struct {
    	status *framework.Status
    	// changes contains a mapping of name to an update function for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage_test.go

    		},
    	}}
    
    	t.Run("singlestack:v4", func(t *testing.T) {
    		helpTestCreateUpdateDeleteWithFamilies(t, testCasesV4, []api.IPFamily{api.IPv4Protocol})
    	})
    
    	// Dual-stack v4,v6 cases: Covers the full matrix of:
    	//    policy={nil, single, prefer, require}
    	//    families={nil, single, dual}
    	//    ips={nil, single, dual}
    	testCasesV4V6 := []cudTestCase{{
    		name: "policy:nil_families:nil_ips:nil",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  4. 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)
  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/regexp/testdata/testregex.c

    						printf("%s returned: ", codes[got].name);
    						error(&preg, cret);
    					}
    				}
    				else
    				{
    					expected = got = 0;
    					for (i = 1; i < elementsof(codes); i++)
    					{
    						if (streq(ans, codes[i].name))
    							expected = i;
    						if (cret==codes[i].code)
    							got = i;
    					}
    					if (!expected)
    					{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top