Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,945 for Configs (0.24 sec)

  1. .teamcity/src/main/kotlin/util/UtilProject.kt

    package util
    
    import common.Arch
    import common.Os
    import jetbrains.buildServer.configs.kotlin.Project
    
    object UtilProject : Project({
        id("Util")
        name = "Util"
    
        buildType(RerunFlakyTest(Os.LINUX))
        buildType(RerunFlakyTest(Os.WINDOWS))
        buildType(RerunFlakyTest(Os.MACOS, Arch.AMD64))
        buildType(RerunFlakyTest(Os.MACOS, Arch.AARCH64))
        buildType(WarmupEc2Agent)
    
        buildType(PublishKotlinDslPlugin)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 521 bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    // and rootNamespaces configs, caller should be responsible for controlling configs passed
    // in.
    func findMatchedConfigs(podsLabels klabels.Set, configs []*config.Config) []*config.Config {
    	var cfgs []*config.Config
    
    	for _, cfg := range configs {
    		cfg := cfg
    		labels := cfg.Spec.(Workloader).GetSelector().GetMatchLabels()
    		selector := klabels.SelectorFromSet(labels)
    		if selector.Matches(podsLabels) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

    package promotion
    
    import common.BuildToolBuildJvm
    import common.Os
    import common.VersionedSettingsBranch
    import common.cleanupRule
    import common.javaHome
    import jetbrains.buildServer.configs.kotlin.Project
    
    class PromotionProject(branch: VersionedSettingsBranch) : Project({
        id("Promotion")
        name = "Promotion"
    
        cleanupRule(historyDays = 14, artifactsDays = 7)
    
        buildType(SanityCheck)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 04:36:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/typed_xds_cache.go

    		hit()
    		return cv.value
    	}
    	miss()
    	return nil
    }
    
    func (l *lruCache[K]) Clear(configs sets.Set[ConfigKey]) {
    	l.mu.Lock()
    	defer l.mu.Unlock()
    	l.token = CacheToken(time.Now().UnixNano())
    	l.evictedOnClear = true
    	defer func() {
    		l.evictedOnClear = false
    	}()
    	for ckey := range configs {
    		hc := ckey.HashCode()
    		referenced := l.configIndex[hc]
    		delete(l.configIndex, hc)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/plan.go

    		Configs that have a "yes" mark in the "MANUAL UPGRADE REQUIRED" column require manual config upgrade or
    		resetting to kubeadm defaults before a successful upgrade can be performed. The version to manually
    		upgrade to is denoted in the "PREFERRED VERSION" column.
    	`))
    
    	tabw := tabwriter.NewWriter(w, 10, 4, 3, ' ', 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. .teamcity/src/test/kotlin/PromotionProjectTests.kt

     */
    
    import common.VersionedSettingsBranch
    import common.pluginPortalUrlOverride
    import common.toCapitalized
    import jetbrains.buildServer.configs.kotlin.AbsoluteId
    import jetbrains.buildServer.configs.kotlin.BuildStep
    import jetbrains.buildServer.configs.kotlin.DslContext
    import jetbrains.buildServer.configs.kotlin.buildSteps.GradleBuildStep
    import org.junit.jupiter.api.Assertions.assertEquals
    import org.junit.jupiter.api.Assertions.assertTrue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/cds.go

    	if len(req.ConfigsUpdated) == 0 {
    		return true
    	}
    
    	checkGateway := false
    	for config := range req.ConfigsUpdated {
    		if proxy.Type == model.Router {
    			if features.FilterGatewayClusterConfig {
    				if _, f := pushCdsGatewayConfig[config.Kind]; f {
    					return true
    				}
    			}
    			if config.Kind == kind.Gateway {
    				// Do the check outside of the loop since its slow; just trigger we need it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

            WtpClasspathAttributeDependencyVisitor visitor = new WtpClasspathAttributeDependencyVisitor(classpath);
            new IdeDependencySet(classpath.getProject().getDependencies(), ((ProjectInternal) classpath.getProject()).getServices().get(JavaModuleDetector.class),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. pkg/test/framework/components/cluster/clusters.go

    func (c Clusters) Exclude(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return true
    	}, exclude(excluded...))
    }
    
    // Configs returns the subset that are config clusters.
    func (c Clusters) Configs(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return cc.IsConfig()
    	}, exclude(excluded...))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/crypto/tls/bogo_shim_test.go

    	echConfigListB64           = flag.String("ech-config-list", "", "")
    	expectECHAccepted          = flag.Bool("expect-ech-accept", false, "")
    	expectHRR                  = flag.Bool("expect-hrr", false, "")
    	expectedECHRetryConfigs    = flag.String("expect-ech-retry-configs", "", "")
    	expectNoECHRetryConfigs    = flag.Bool("expect-no-ech-retry-configs", false, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top