Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for countervar (2.32 sec)

  1. 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)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/metrics.go

    	namespace = "apiserver"
    )
    
    // ConversionWebhookMetrics instruments webhook conversion with prometheus metrics.
    type ConversionWebhookMetrics struct {
    	conversionWebhookRequest *metrics.CounterVec
    	conversionWebhookLatency *metrics.HistogramVec
    }
    
    func newConversionWebhookMetrics() *ConversionWebhookMetrics {
    	conversionWebhookRequest := metrics.NewCounterVec(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:34:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. 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)
  4. pkg/apis/apps/v1/defaults.go

    	"k8s.io/utils/ptr"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_Deployment sets additional defaults compared to its counterpart
    // in extensions. These addons are:
    // - MaxUnavailable during rolling update set to 25% (1 in extensions)
    // - MaxSurge value during rolling update set to 25% (1 in extensions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1beta2/defaults.go

    	}
    	if obj.Spec.RevisionHistoryLimit == nil {
    		obj.Spec.RevisionHistoryLimit = new(int32)
    		*obj.Spec.RevisionHistoryLimit = 10
    	}
    }
    
    // SetDefaults_Deployment sets additional defaults compared to its counterpart
    // in extensions. These addons are:
    // - MaxUnavailable during rolling update set to 25% (1 in extensions)
    // - MaxSurge value during rolling update set to 25% (1 in extensions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    // If the file has not been opened yet, lookup returns nil.
    func (f *file) lookup(name string) counterPtr {
    	current := f.current.Load()
    	if current == nil {
    		debugPrintf("lookup %s - no mapped file\n", name)
    		return counterPtr{}
    	}
    	ptr := f.newCounter(name)
    	if ptr == nil {
    		return counterPtr{}
    	}
    	return counterPtr{current, ptr}
    }
    
    // ErrDisabled is the error returned when telemetry is disabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    //
    //	fmt.Printf("%[3]d", 1, 2) // fmt.Printf call has invalid argument index 3
    //
    // The checker also uses a heuristic to report calls to Print-like
    // functions that appear to have been intended for their Printf-like
    // counterpart:
    //
    //	log.Print("%d", 123) // log.Print call has possible formatting directive %d
    //
    // # Inferred printf wrappers
    //
    // Functions that delegate their arguments to fmt.Printf are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1beta1/defaults.go

    				obj.Spec.UpdateStrategy.RollingUpdate.MaxUnavailable = ptr.To(intstr.FromInt32(1))
    			}
    		}
    	}
    }
    
    // SetDefaults_Deployment sets additional defaults compared to its counterpart
    // in extensions. These addons are:
    // - MaxUnavailable during rolling update set to 25% (1 in extensions)
    // - MaxSurge value during rolling update set to 25% (1 in extensions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/complete.go

    */
    
    package schema
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/util/validation/field"
    )
    
    // validateStructuralCompleteness checks that all value validations in s have
    // a structural counterpart so that every value validation applies to a value
    // with a known schema:
    // - validations for specific properties must have that property (or additionalProperties under an option) structurally defined
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top