Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for countervar (3.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/ProjectComponentIdentifierInternal.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts;
    
    import org.gradle.api.artifacts.component.ProjectComponentIdentifier;
    import org.gradle.util.Path;
    
    /**
     * Internal counterpart to {@link ProjectComponentIdentifier}
     */
    public interface ProjectComponentIdentifierInternal extends ProjectComponentIdentifier {
        /**
         * Returns a unique path for the target project within the current build tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 18:25:54 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantDetailsInternal.java

    import org.gradle.api.Action;
    import org.gradle.api.artifacts.Configuration;
    import org.gradle.api.component.ConfigurationVariantDetails;
    import org.gradle.api.provider.Property;
    
    /**
     * Internal counterpart to {@link org.gradle.api.component.ConfigurationVariantDetails}.
     */
    public interface ConfigurationVariantDetailsInternal extends ConfigurationVariantDetails {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/component/SoftwareComponentContainerInternal.java

    package org.gradle.api.internal.component;
    
    import org.gradle.api.component.SoftwareComponent;
    import org.gradle.api.component.SoftwareComponentContainer;
    import org.gradle.api.provider.Property;
    
    /**
     * Internal counterpart of {@link SoftwareComponentContainer}.
     */
    public interface SoftwareComponentContainerInternal extends SoftwareComponentContainer {
        /**
         * Get the main component of a project.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 15:02:08 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. 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)
Back to top