Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for countervar (0.17 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. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

         * This method will look for a method with same name
         * and signature declared in a public superclass or implemented interface of this
         * method's declaring class. This counterpart method is publicly callable.
         *
         * @param method a method whose publicly callable counterpart is requested.
         * @return the publicly callable counterpart method. Note that if the parameter
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics.go

    )
    
    // ValidatingAdmissionPolicyMetrics aggregates Prometheus metrics related to validation admission control.
    type ValidatingAdmissionPolicyMetrics struct {
    	policyCheck      *metrics.CounterVec
    	policyDefinition *metrics.CounterVec
    	policyLatency    *metrics.HistogramVec
    }
    
    func newValidationAdmissionMetrics() *ValidatingAdmissionPolicyMetrics {
    	check := metrics.NewCounterVec(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/ProjectComponentSelectorInternal.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.local.model;
    
    import org.gradle.api.artifacts.component.ProjectComponentSelector;
    import org.gradle.util.Path;
    
    /**
     * Internal counterpart to {@link ProjectComponentSelector}
     */
    public interface ProjectComponentSelectorInternal extends ProjectComponentSelector {
    
        /**
         * Returns a unique path for the target project within the current build tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/LenientConfigurationInternal.java

    import org.gradle.api.artifacts.LenientConfiguration;
    import org.gradle.api.internal.artifacts.ResolverResults;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ArtifactSelectionSpec;
    
    /**
     * Internal counterpart of {@link LenientConfiguration}.
     */
    public interface LenientConfigurationInternal extends LenientConfiguration, ResolverResults.LegacyResolverResults.LegacyVisitedArtifactSet {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top