Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for countervar (2.64 sec)

  1. src/cmd/cover/cover.go

    		}
    	}
    
    	// Generate the registration hook sequence for the function. This
    	// sequence looks like
    	//
    	//   counterVar[0] = <num_units>
    	//   counterVar[1] = pkgId
    	//   counterVar[2] = fnId
    	//
    	cv := f.fn.counterVar
    	regHook := hookWrite(cv, 0, strconv.Itoa(len(f.fn.units))) + " ; " +
    		hookWrite(cv, 1, mkPackageIdExpression()) + " ; " +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/coverage/cover.go

    			ckTypSanity(nm, "pkgidvar")
    			nm.SetCoverageAuxVar(true)
    			s := nm.Linksym()
    			s.Type = objabi.SCOVERAGE_AUXVAR
    			continue
    		}
    		if strings.HasPrefix(s.Name, counterPrefix) {
    			ckTypSanity(nm, "countervar")
    			nm.SetCoverageAuxVar(true)
    			s := nm.Linksym()
    			s.Type = objabi.SCOVERAGE_COUNTER
    		}
    	}
    	cm := coverage.ParseCounterMode(counterMode)
    	if cm == coverage.CtrModeInvalid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    	tests := []struct {
    		name                      string
    		requestURI                string
    		requestInfo               *apirequest.RequestInfo
    		counts                    map[string]int64
    		countErr                  error
    		watchCount                int
    		maxSeats                  uint64
    		initialSeatsExpected      uint64
    		finalSeatsExpected        uint64
    		additionalLatencyExpected time.Duration
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiIdeModeTestServiceRegistrar.kt

     * the list of [serviceRegistrars][org.jetbrains.kotlin.analysis.test.framework.test.configurators.AnalysisApiTestConfigurator.serviceRegistrars].
     *
     * See `StandaloneSessionServiceRegistrar` for the Standalone counterpart to this service registrar.
     */
    object AnalysisApiIdeModeTestServiceRegistrar : AnalysisApiTestServiceRegistrar() {
        override fun registerProjectServices(project: MockProject, testServices: TestServices) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    type http2Framer struct {
    	r         io.Reader
    	lastFrame http2Frame
    	errDetail error
    
    	// countError is a non-nil func that's called on a frame parse
    	// error with some unique error path token. It's initialized
    	// from Transport.CountError or Server.CountError.
    	countError func(errToken string)
    
    	// lastHeaderStream is non-zero if the last frame was an
    	// unfinished HEADERS/CONTINUATION.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

        /**
         * Contains copies of metadata instances in {@link #originalComponents}, except
         * with the component identifier replaced with the foreign counterpart.
         */
        private final CalculatedValueCache<ProjectComponentIdentifier, LocalComponentGraphResolveState> foreignIdentifiedComponents;
    
        @Inject
        public DefaultBuildTreeLocalComponentProvider(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    type Counter struct {
    	name string
    	file *file
    
    	next  atomic.Pointer[Counter]
    	state counterState
    	ptr   counterPtr
    }
    
    func (c *Counter) Name() string {
    	return c.name
    }
    
    type counterPtr struct {
    	m     *mappedFile
    	count *atomic.Uint64
    }
    
    type counterState struct {
    	bits atomic.Uint64
    }
    
    func (s *counterState) load() counterStateBits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputsInternal.java

    import org.gradle.api.internal.artifacts.configurations.ResolutionResultProvider;
    import org.gradle.api.internal.file.FileCollectionInternal;
    import org.gradle.api.provider.Provider;
    
    /**
     * Internal counterpart of {@link ResolutionOutputs} that exposes the results as
     * their internal types, as well as the raw results before conversion to user-facing types.
     */
    public interface ResolutionOutputsInternal extends ResolutionOutputs {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. cmd/erasure-metadata-utils.go

    	"errors"
    	"hash/crc32"
    
    	"github.com/minio/pkg/v3/sync/errgroup"
    )
    
    // counterMap type adds GetValueWithQuorum method to a map[T]int used to count occurrences of values of type T.
    type counterMap[T comparable] map[T]int
    
    // GetValueWithQuorum returns the first key which occurs >= quorum number of times.
    func (c counterMap[T]) GetValueWithQuorum(quorum int) (T, bool) {
    	var zero T
    	for x, count := range c {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/schemaFromGradleExtensions.kt

     * * Function extractors which introduce configuring functions for the extensions
     *
     * If object conversion is enabled ([ifConversionSupported]):
     * * Runtime custom accessors as the runtime counterpart for the configuring functions, telling the runtime how to access the extensions.
     */
    internal
    fun EvaluationSchemaBuilder.thirdPartyExtensions(schemaTypeToExtend: KClass<*>, extensionContainer: ExtensionAware) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top